We are going to regress the return of holding 1M FX forwards against a fairly standard set of macroeconomic and technical indicators. In the past, I’ve done all this using Bloomberg data, but that carries license restrictions. It’s my hope I can use freely available data via Quandl’s interface.

The factors are as follows:

Factor Description
Equity The 40-day change in the local equity index
Spot_40D The 40-day change in spot rates
SwapRate_2Y The 2Y Swap Rate
TwoYear_40D The 40-day change in 2Y Swap rate
YieldCurve The spread between 10Y and 2Y Swaps
FX_Return (endo) The spot rate change plus the carry return

All of these factors should be available on a daily basis, but I wouldn’t expect their impact to be felt quite so quickly. In the past, I’ve fit this model on monthly data with at least 15 years’ history. This time, I’m adding CZK and TRY to my usual set of pairs, and I would expect they lack some of the data I’d need, so I may try weekly periodicity on a shorter time period. We’ll see once we get all the data.

Also, clearly, we should expect a high intercorrelation (i.e. multicollinearity) between several of these factors.

Let’s start with the major traded currencies, plus a few popular targets for the carry trade. We will use: AUD, CAD, CHF, CZK, EUR, GBP, JPY, NOK, NZD, SEK, TRY, USD

This will provide a few exogenous shocks, including the Swiss Franc peg, the Brexit panic, the Turkish coup, the taper tantrum, various iterations of the Euro credit crisis, and, if I can get data going far enough back, the 2008 crash. This model is obviously not going to foresee any of these, although it will produce its own covariance estimates for the currencies, which can be used at the portfolio optimization stage if one were to trade on these signals.

Step one is to explore what data is available, and either make changes to the scope of our assets and our factors, or to see what imputation we can make to handle missing data. It’s encouraged to handle missing data directly in the generative model, but I think we’ll have enough parameters just on the Gaussian process.

Load Libraries

knitr::opts_knit$set(root.dir = normalizePath(".."))
library(tidyverse)
library(Quandl)
library(quantmod)
library(lubridate)
library(ggthemes)
library(GGally) #for scatter plot matrixes

Raw Data

For all currencies, we need 1M funding rates, 2Y and 10Y swaps, equity indexes, and spot rates, all on a daily basis.

Let’s start with the hardest stuff and move up. There’s no point gathering a bunch of information for Turkey, for example, if it turns out I can’t find a reliable 10Y swap rate.

Swap Rates

It’s quickly become clear that I can’t get swap data for free. So, unfortunately, this demo just became difficult for the reader to duplicate, because I don’t have the right to distribute the rate data I’m going to use. I will keep looking for substitutes, but I don’t want to get bogged down in data as my primary purpose is to demonstrate the model.

library(readxl)
rate_pages <- c("10Y Swaps", "2Y Swaps", "Forward Points", "1M Swaps", "Implied 1M Fwd")
RATE_PATH <- "../data/proprietary/rates.xlsx"
rates <- map_dfr(rate_pages, read_xlsx, path=RATE_PATH,
                 col_types=c("date",rep("numeric",12)), .id="type")  %>% #read all worksheets on the xlsx file
         mutate(type=factor(rate_pages[as.numeric(type)])) %>% #replace numeric id with the rate page names
         gather(asset, value, -type, -Date, factor_key=T) %>% #flatten the data
         na.omit()
Expecting numeric in B2 / R2C2: got '#N/A'Expecting numeric in C2 / R2C3: got '#N/A'Expecting numeric in D2 / R2C4: got '#N/A'Expecting numeric in E2 / R2C5: got '#N/A'Expecting numeric in F2 / R2C6: got '#N/A'Expecting numeric in G2 / R2C7: got '#N/A'Expecting numeric in H2 / R2C8: got '#N/A'Expecting numeric in J2 / R2C10: got '#N/A'Expecting numeric in K2 / R2C11: got '#N/A'Expecting numeric in L2 / R2C12: got '#N/A'Expecting numeric in M2 / R2C13: got '#N/A'Expecting numeric in B3 / R3C2: got '#N/A'Expecting numeric in C3 / R3C3: got '#N/A'Expecting numeric in D3 / R3C4: got '#N/A'Expecting numeric in E3 / R3C5: got '#N/A'Expecting numeric in F3 / R3C6: got '#N/A'Expecting numeric in G3 / R3C7: got '#N/A'Expecting numeric in H3 / R3C8: got '#N/A'Expecting numeric in J3 / R3C10: got '#N/A'Expecting numeric in K3 / R3C11: got '#N/A'Expecting numeric in L3 / R3C12: got '#N/A'Expecting numeric in M3 / R3C13: got '#N/A'Expecting numeric in B4 / R4C2: got '#N/A'Expecting numeric in C4 / R4C3: got '#N/A'Expecting numeric in D4 / R4C4: got '#N/A'Expecting numeric in E4 / R4C5: got '#N/A'Expecting numeric in F4 / R4C6: got '#N/A'Expecting numeric in G4 / R4C7: got '#N/A'Expecting numeric in J4 / R4C10: got '#N/A'Expecting numeric in K4 / R4C11: got '#N/A'Expecting numeric in L4 / R4C12: got '#N/A'Expecting numeric in M4 / R4C13: got '#N/A'Expecting numeric in C5 / R5C3: got '#N/A'Expecting numeric in D5 / R5C4: got '#N/A'Expecting numeric in E5 / R5C5: got '#N/A'Expecting numeric in F5 / R5C6: got '#N/A'Expecting numeric in G5 / R5C7: got '#N/A'Expecting numeric in J5 / R5C10: got '#N/A'Expecting numeric in K5 / R5C11: got '#N/A'Expecting numeric in L5 / R5C12: got '#N/A'Expecting numeric in M5 / R5C13: got '#N/A'Expecting numeric in C6 / R6C3: got '#N/A'Expecting numeric in D6 / R6C4: got '#N/A'Expecting numeric in E6 / R6C5: got '#N/A'Expecting numeric in F6 / R6C6: got '#N/A'Expecting numeric in G6 / R6C7: got '#N/A'Expecting numeric in J6 / R6C10: got '#N/A'Expecting numeric in K6 / R6C11: got '#N/A'Expecting numeric in L6 / R6C12: got '#N/A'Expecting numeric in M6 / R6C13: got '#N/A'Expecting numeric in C7 / R7C3: got '#N/A'Expecting numeric in D7 / R7C4: got '#N/A'Expecting numeric in E7 / R7C5: got '#N/A'Expecting numeric in F7 / R7C6: got '#N/A'Expecting numeric in G7 / R7C7: got '#N/A'Expecting numeric in J7 / R7C10: got '#N/A'Expecting numeric in K7 / R7C11: got '#N/A'Expecting numeric in L7 / R7C12: got '#N/A'Expecting numeric in M7 / R7C13: got '#N/A'Expecting numeric in C8 / R8C3: got '#N/A'Expecting numeric in D8 / R8C4: got '#N/A'Expecting numeric in E8 / R8C5: got '#N/A'Expecting numeric in F8 / R8C6: got '#N/A'Expecting numeric in G8 / R8C7: got '#N/A'Expecting numeric in J8 / R8C10: got '#N/A'Expecting numeric in K8 / R8C11: got '#N/A'Expecting numeric in L8 / R8C12: got '#N/A'Expecting numeric in M8 / R8C13: got '#N/A'Expecting numeric in C9 / R9C3: got '#N/A'Expecting numeric in D9 / R9C4: got '#N/A'Expecting numeric in E9 / R9C5: got '#N/A'Expecting numeric in F9 / R9C6: got '#N/A'Expecting numeric in G9 / R9C7: got '#N/A'Expecting numeric in J9 / R9C10: got '#N/A'Expecting numeric in K9 / R9C11: got '#N/A'Expecting numeric in L9 / R9C12: got '#N/A'Expecting numeric in M9 / R9C13: got '#N/A'Expecting numeric in C10 / R10C3: got '#N/A'Expecting numeric in D10 / R10C4: got '#N/A'Expecting numeric in E10 / R10C5: got '#N/A'Expecting numeric in F10 / R10C6: got '#N/A'Expecting numeric in G10 / R10C7: got '#N/A'Expecting numeric in J10 / R10C10: got '#N/A'Expecting numeric in K10 / R10C11: got '#N/A'Expecting numeric in L10 / R10C12: got '#N/A'Expecting numeric in M10 / R10C13: got '#N/A'Expecting numeric in C11 / R11C3: got '#N/A'Expecting numeric in D11 / R11C4: got '#N/A'Expecting numeric in E11 / R11C5: got '#N/A'Expecting numeric in F11 / R11C6: got '#N/A'Expecting numeric in G11 / R11C7: got '#N/A'Expecting numeric in J11 / R11C10: got '#N/A'Expecting numeric in K11 / R11C11: got '#N/A'Expecting numeric in L11 / R11C12: got '#N/A'Expecting numeric in M11 / R11C13: got '#N/A'Expecting numeric in C12 / R12C3: got '#N/A'Expecting numeric in D12 / R12C4: got '#N/A'Expecting numeric in E12 / R12C5: got '#N/A'Expecting numeric in F12 / R12C6: got '#N/A'Expecting numeric in G12 / R12C7: got '#N/A'Expecting numeric in J12 / R12C10: got '#N/A'Expecting numeric in K12 / R12C11: got '#N/A'Expecting numeric in L12 / R12C12: got '#N/A'Expecting numeric in M12 / R12C13: got '#N/A'Expecting numeric in C13 / R13C3: got '#N/A'Expecting numeric in D13 / R13C4: got '#N/A'Expecting numeric in E13 / R13C5: got '#N/A'Expecting numeric in F13 / R13C6: got '#N/A'Expecting numeric in G13 / R13C7: got '#N/A'Expecting numeric in J13 / R13C10: got '#N/A'Expecting numeric in K13 / R13C11: got '#N/A'Expecting numeric in L13 / R13C12: got '#N/A'Expecting numeric in M13 / R13C13: got '#N/A'Expecting numeric in C14 / R14C3: got '#N/A'Expecting numeric in D14 / R14C4: got '#N/A'Expecting numeric in E14 / R14C5: got '#N/A'Expecting numeric in F14 / R14C6: got '#N/A'Expecting numeric in G14 / R14C7: got '#N/A'Expecting numeric in J14 / R14C10: got '#N/A'Expecting numeric in K14 / R14C11: got '#N/A'Expecting numeric in L14 / R14C12: got '#N/A'Expecting numeric in M14 / R14C13: got '#N/A'Expecting numeric in C15 / R15C3: got '#N/A'Expecting numeric in D15 / R15C4: got '#N/A'Expecting numeric in E15 / R15C5: got '#N/A'Expecting numeric in F15 / R15C6: got '#N/A'Expecting numeric in G15 / R15C7: got '#N/A'Expecting numeric in J15 / R15C10: got '#N/A'Expecting numeric in K15 / R15C11: got '#N/A'Expecting numeric in L15 / R15C12: got '#N/A'Expecting numeric in M15 / R15C13: got '#N/A'Expecting numeric in C16 / R16C3: got '#N/A'Expecting numeric in D16 / R16C4: got '#N/A'Expecting numeric in E16 / R16C5: got '#N/A'Expecting numeric in F16 / R16C6: got '#N/A'Expecting numeric in G16 / R16C7: got '#N/A'Expecting numeric in J16 / R16C10: got '#N/A'Expecting numeric in K16 / R16C11: got '#N/A'Expecting numeric in L16 / R16C12: got '#N/A'Expecting numeric in M16 / R16C13: got '#N/A'Expecting numeric in C17 / R17C3: got '#N/A'Expecting numeric in D17 / R17C4: got '#N/A'Expecting numeric in E17 / R17C5: got '#N/A'Expecting numeric in F17 / R17C6: got '#N/A'Expecting numeric in G17 / R17C7: got '#N/A'Expecting numeric in J17 / R17C10: got '#N/A'Expecting numeric in K17 / R17C11: got '#N/A'Expecting numeric in L17 / R17C12: got '#N/A'Expecting numeric in M17 / R17C13: got '#N/A'Expecting numeric in C18 / R18C3: got '#N/A'Expecting numeric in D18 / R18C4: got '#N/A'Expecting numeric in E18 / R18C5: got '#N/A'Expecting numeric in F18 / R18C6: got '#N/A'Expecting numeric in G18 / R18C7: got '#N/A'Expecting numeric in J18 / R18C10: got '#N/A'Expecting numeric in K18 / R18C11: got '#N/A'Expecting numeric in L18 / R18C12: got '#N/A'Expecting numeric in M18 / R18C13: got '#N/A'Expecting numeric in C19 / R19C3: got '#N/A'Expecting numeric in D19 / R19C4: got '#N/A'Expecting numeric in E19 / R19C5: got '#N/A'Expecting numeric in F19 / R19C6: got '#N/A'Expecting numeric in G19 / R19C7: got '#N/A'Expecting numeric in J19 / R19C10: got '#N/A'Expecting numeric in K19 / R19C11: got '#N/A'Expecting numeric in L19 / R19C12: got '#N/A'Expecting numeric in M19 / R19C13: got '#N/A'Expecting numeric in C20 / R20C3: got '#N/A'Expecting numeric in D20 / R20C4: got '#N/A'Expecting numeric in E20 / R20C5: got '#N/A'Expecting numeric in F20 / R20C6: got '#N/A'Expecting numeric in G20 / R20C7: got '#N/A'Expecting numeric in J20 / R20C10: got '#N/A'Expecting numeric in K20 / R20C11: got '#N/A'Expecting numeric in L20 / R20C12: got '#N/A'Expecting numeric in M20 / R20C13: got '#N/A'Expecting numeric in C21 / R21C3: got '#N/A'Expecting numeric in D21 / R21C4: got '#N/A'Expecting numeric in E21 / R21C5: got '#N/A'Expecting numeric in F21 / R21C6: got '#N/A'Expecting numeric in G21 / R21C7: got '#N/A'Expecting numeric in J21 / R21C10: got '#N/A'Expecting numeric in K21 / R21C11: got '#N/A'Expecting numeric in L21 / R21C12: got '#N/A'Expecting numeric in M21 / R21C13: got '#N/A'Expecting numeric in C22 / R22C3: got '#N/A'Expecting numeric in D22 / R22C4: got '#N/A'Expecting numeric in E22 / R22C5: got '#N/A'Expecting numeric in F22 / R22C6: got '#N/A'Expecting numeric in G22 / R22C7: got '#N/A'Expecting numeric in J22 / R22C10: got '#N/A'Expecting numeric in K22 / R22C11: got '#N/A'Expecting numeric in L22 / R22C12: got '#N/A'Expecting numeric in M22 / R22C13: got '#N/A'Expecting numeric in C23 / R23C3: got '#N/A'Expecting numeric in D23 / R23C4: got '#N/A'Expecting numeric in E23 / R23C5: got '#N/A'Expecting numeric in F23 / R23C6: got '#N/A'Expecting numeric in G23 / R23C7: got '#N/A'Expecting numeric in J23 / R23C10: got '#N/A'Expecting numeric in K23 / R23C11: got '#N/A'Expecting numeric in L23 / R23C12: got '#N/A'Expecting numeric in M23 / R23C13: got '#N/A'Expecting numeric in C24 / R24C3: got '#N/A'Expecting numeric in D24 / R24C4: got '#N/A'Expecting numeric in E24 / R24C5: got '#N/A'Expecting numeric in F24 / R24C6: got '#N/A'Expecting numeric in G24 / R24C7: got '#N/A'Expecting numeric in J24 / R24C10: got '#N/A'Expecting numeric in K24 / R24C11: got '#N/A'Expecting numeric in L24 / R24C12: got '#N/A'Expecting numeric in M24 / R24C13: got '#N/A'Expecting numeric in C25 / R25C3: got '#N/A'Expecting numeric in D25 / R25C4: got '#N/A'Expecting numeric in E25 / R25C5: got '#N/A'Expecting numeric in F25 / R25C6: got '#N/A'Expecting numeric in G25 / R25C7: got '#N/A'Expecting numeric in J25 / R25C10: got '#N/A'Expecting numeric in K25 / R25C11: got '#N/A'Expecting numeric in L25 / R25C12: got '#N/A'Expecting numeric in M25 / R25C13: got '#N/A'Expecting numeric in C26 / R26C3: got '#N/A'Expecting numeric in D26 / R26C4: got '#N/A'Expecting numeric in E26 / R26C5: got '#N/A'Expecting numeric in F26 / R26C6: got '#N/A'Expecting numeric in G26 / R26C7: got '#N/A'Expecting numeric in J26 / R26C10: got '#N/A'Expecting numeric in K26 / R26C11: got '#N/A'Expecting numeric in L26 / R26C12: got '#N/A'Expecting numeric in M26 / R26C13: got '#N/A'Expecting numeric in C27 / R27C3: got '#N/A'Expecting numeric in D27 / R27C4: got '#N/A'Expecting numeric in E27 / R27C5: got '#N/A'Expecting numeric in F27 / R27C6: got '#N/A'Expecting numeric in G27 / R27C7: got '#N/A'Expecting numeric in J27 / R27C10: got '#N/A'Expecting numeric in K27 / R27C11: got '#N/A'Expecting numeric in L27 / R27C12: got '#N/A'Expecting numeric in M27 / R27C13: got '#N/A'Expecting numeric in C28 / R28C3: got '#N/A'Expecting numeric in D28 / R28C4: got '#N/A'Expecting numeric in E28 / R28C5: got '#N/A'Expecting numeric in F28 / R28C6: got '#N/A'Expecting numeric in G28 / R28C7: got '#N/A'Expecting numeric in J28 / R28C10: got '#N/A'Expecting numeric in K28 / R28C11: got '#N/A'Expecting numeric in L28 / R28C12: got '#N/A'Expecting numeric in M28 / R28C13: got '#N/A'Expecting numeric in C29 / R29C3: got '#N/A'Expecting numeric in D29 / R29C4: got '#N/A'Expecting numeric in E29 / R29C5: got '#N/A'Expecting numeric in F29 / R29C6: got '#N/A'Expecting numeric in G29 / R29C7: got '#N/A'Expecting numeric in J29 / R29C10: got '#N/A'Expecting numeric in K29 / R29C11: got '#N/A'Expecting numeric in L29 / R29C12: got '#N/A'Expecting numeric in M29 / R29C13: got '#N/A'Expecting numeric in C30 / R30C3: got '#N/A'Expecting numeric in D30 / R30C4: got '#N/A'Expecting numeric in E30 / R30C5: got '#N/A'Expecting numeric in F30 / R30C6: got '#N/A'Expecting numeric in G30 / R30C7: got '#N/A'Expecting numeric in J30 / R30C10: got '#N/A'Expecting numeric in K30 / R30C11: got '#N/A'Expecting numeric in L30 / R30C12: got '#N/A'Expecting numeric in M30 / R30C13: got '#N/A'Expecting numeric in C31 / R31C3: got '#N/A'Expecting numeric in D31 / R31C4: got '#N/A'Expecting numeric in E31 / R31C5: got '#N/A'Expecting numeric in F31 / R31C6: got '#N/A'Expecting numeric in G31 / R31C7: got '#N/A'Expecting numeric in J31 / R31C10: got '#N/A'Expecting numeric in K31 / R31C11: got '#N/A'Expecting numeric in L31 / R31C12: got '#N/A'Expecting numeric in M31 / R31C13: got '#N/A'Expecting numeric in C32 / R32C3: got '#N/A'Expecting numeric in D32 / R32C4: got '#N/A'Expecting numeric in E32 / R32C5: got '#N/A'Expecting numeric in F32 / R32C6: got '#N/A'Expecting numeric in G32 / R32C7: got '#N/A'Expecting numeric in J32 / R32C10: got '#N/A'Expecting numeric in K32 / R32C11: got '#N/A'Expecting numeric in L32 / R32C12: got '#N/A'Expecting numeric in M32 / R32C13: got '#N/A'Expecting numeric in C33 / R33C3: got '#N/A'Expecting numeric in D33 / R33C4: got '#N/A'Expecting numeric in E33 / R33C5: got '#N/A'Expecting numeric in F33 / R33C6: got '#N/A'Expecting numeric in G33 / R33C7: got '#N/A'Expecting numeric in J33 / R33C10: got '#N/A'Expecting numeric in K33 / R33C11: got '#N/A'Expecting numeric in L33 / R33C12: got '#N/A'Expecting numeric in M33 / R33C13: got '#N/A'Expecting numeric in C34 / R34C3: got '#N/A'Expecting numeric in D34 / R34C4: got '#N/A'Expecting numeric in E34 / R34C5: got '#N/A'Expecting numeric in F34 / R34C6: got '#N/A'Expecting numeric in G34 / R34C7: got '#N/A'Expecting numeric in J34 / R34C10: got '#N/A'Expecting numeric in K34 / R34C11: got '#N/A'Expecting numeric in L34 / R34C12: got '#N/A'Expecting numeric in M34 / R34C13: got '#N/A'Expecting numeric in C35 / R35C3: got '#N/A'Expecting numeric in D35 / R35C4: got '#N/A'Expecting numeric in E35 / R35C5: got '#N/A'Expecting numeric in F35 / R35C6: got '#N/A'Expecting numeric in G35 / R35C7: got '#N/A'Expecting numeric in J35 / R35C10: got '#N/A'Expecting numeric in K35 / R35C11: got '#N/A'Expecting numeric in L35 / R35C12: got '#N/A'Expecting numeric in M35 / R35C13: got '#N/A'Expecting numeric in C36 / R36C3: got '#N/A'Expecting numeric in D36 / R36C4: got '#N/A'Expecting numeric in E36 / R36C5: got '#N/A'Expecting numeric in F36 / R36C6: got '#N/A'Expecting numeric in G36 / R36C7: got '#N/A'Expecting numeric in J36 / R36C10: got '#N/A'Expecting numeric in K36 / R36C11: got '#N/A'Expecting numeric in L36 / R36C12: got '#N/A'Expecting numeric in M36 / R36C13: got '#N/A'Expecting numeric in C37 / R37C3: got '#N/A'Expecting numeric in D37 / R37C4: got '#N/A'Expecting numeric in E37 / R37C5: got '#N/A'Expecting numeric in F37 / R37C6: got '#N/A'Expecting numeric in G37 / R37C7: got '#N/A'Expecting numeric in J37 / R37C10: got '#N/A'Expecting numeric in K37 / R37C11: got '#N/A'Expecting numeric in L37 / R37C12: got '#N/A'Expecting numeric in M37 / R37C13: got '#N/A'Expecting numeric in C38 / R38C3: got '#N/A'Expecting numeric in D38 / R38C4: got '#N/A'Expecting numeric in E38 / R38C5: got '#N/A'Expecting numeric in F38 / R38C6: got '#N/A'Expecting numeric in G38 / R38C7: got '#N/A'Expecting numeric in J38 / R38C10: got '#N/A'Expecting numeric in K38 / R38C11: got '#N/A'Expecting numeric in L38 / R38C12: got '#N/A'Expecting numeric in M38 / R38C13: got '#N/A'Expecting numeric in C39 / R39C3: got '#N/A'Expecting numeric in D39 / R39C4: got '#N/A'Expecting numeric in E39 / R39C5: got '#N/A'Expecting numeric in F39 / R39C6: got '#N/A'Expecting numeric in G39 / R39C7: got '#N/A'Expecting numeric in J39 / R39C10: got '#N/A'Expecting numeric in K39 / R39C11: got '#N/A'Expecting numeric in L39 / R39C12: got '#N/A'Expecting numeric in M39 / R39C13: got '#N/A'Expecting numeric in C40 / R40C3: got '#N/A'Expecting numeric in D40 / R40C4: got '#N/A'Expecting numeric in E40 / R40C5: got '#N/A'Expecting numeric in F40 / R40C6: got '#N/A'Expecting numeric in G40 / R40C7: got '#N/A'Expecting numeric in J40 / R40C10: got '#N/A'Expecting numeric in K40 / R40C11: got '#N/A'Expecting numeric in L40 / R40C12: got '#N/A'Expecting numeric in M40 / R40C13: got '#N/A'Expecting numeric in C41 / R41C3: got '#N/A'Expecting numeric in D41 / R41C4: got '#N/A'Expecting numeric in E41 / R41C5: got '#N/A'Expecting numeric in F41 / R41C6: got '#N/A'Expecting numeric in G41 / R41C7: got '#N/A'Expecting numeric in J41 / R41C10: got '#N/A'Expecting numeric in K41 / R41C11: got '#N/A'Expecting numeric in L41 / R41C12: got '#N/A'Expecting numeric in M41 / R41C13: got '#N/A'Expecting numeric in C42 / R42C3: got '#N/A'Expecting numeric in D42 / R42C4: got '#N/A'Expecting numeric in E42 / R42C5: got '#N/A'Expecting numeric in F42 / R42C6: got '#N/A'Expecting numeric in G42 / R42C7: got '#N/A'Expecting numeric in J42 / R42C10: got '#N/A'Expecting numeric in K42 / R42C11: got '#N/A'Expecting numeric in L42 / R42C12: got '#N/A'Expecting numeric in M42 / R42C13: got '#N/A'Expecting numeric in C43 / R43C3: got '#N/A'Expecting numeric in D43 / R43C4: got '#N/A'Expecting numeric in E43 / R43C5: got '#N/A'Expecting numeric in F43 / R43C6: got '#N/A'Expecting numeric in G43 / R43C7: got '#N/A'Expecting numeric in J43 / R43C10: got '#N/A'Expecting numeric in K43 / R43C11: got '#N/A'Expecting numeric in L43 / R43C12: got '#N/A'Expecting numeric in M43 / R43C13: got '#N/A'Expecting numeric in C44 / R44C3: got '#N/A'Expecting numeric in D44 / R44C4: got '#N/A'Expecting numeric in E44 / R44C5: got '#N/A'Expecting numeric in F44 / R44C6: got '#N/A'Expecting numeric in G44 / R44C7: got '#N/A'Expecting numeric in J44 / R44C10: got '#N/A'Expecting numeric in K44 / R44C11: got '#N/A'Expecting numeric in L44 / R44C12: got '#N/A'Expecting numeric in M44 / R44C13: got '#N/A'Expecting numeric in C45 / R45C3: got '#N/A'Expecting numeric in D45 / R45C4: got '#N/A'Expecting numeric in E45 / R45C5: got '#N/A'Expecting numeric in F45 / R45C6: got '#N/A'Expecting numeric in G45 / R45C7: got '#N/A'Expecting numeric in J45 / R45C10: got '#N/A'Expecting numeric in K45 / R45C11: got '#N/A'Expecting numeric in L45 / R45C12: got '#N/A'Expecting numeric in M45 / R45C13: got '#N/A'Expecting numeric in C46 / R46C3: got '#N/A'Expecting numeric in D46 / R46C4: got '#N/A'Expecting numeric in E46 / R46C5: got '#N/A'Expecting numeric in F46 / R46C6: got '#N/A'Expecting numeric in G46 / R46C7: got '#N/A'Expecting numeric in J46 / R46C10: got '#N/A'Expecting numeric in K46 / R46C11: got '#N/A'Expecting numeric in L46 / R46C12: got '#N/A'Expecting numeric in M46 / R46C13: got '#N/A'Expecting numeric in C47 / R47C3: got '#N/A'Expecting numeric in D47 / R47C4: got '#N/A'Expecting numeric in E47 / R47C5: got '#N/A'Expecting numeric in F47 / R47C6: got '#N/A'Expecting numeric in G47 / R47C7: got '#N/A'Expecting numeric in J47 / R47C10: got '#N/A'Expecting numeric in K47 / R47C11: got '#N/A'Expecting numeric in L47 / R47C12: got '#N/A'Expecting numeric in M47 / R47C13: got '#N/A'Expecting numeric in C48 / R48C3: got '#N/A'Expecting numeric in D48 / R48C4: got '#N/A'Expecting numeric in E48 / R48C5: got '#N/A'Expecting numeric in F48 / R48C6: got '#N/A'Expecting numeric in G48 / R48C7: got '#N/A'Expecting numeric in J48 / R48C10: got '#N/A'Expecting numeric in K48 / R48C11: got '#N/A'Expecting numeric in L48 / R48C12: got '#N/A'Expecting numeric in M48 / R48C13: got '#N/A'Expecting numeric in C49 / R49C3: got '#N/A'Expecting numeric in D49 / R49C4: got '#N/A'Expecting numeric in E49 / R49C5: got '#N/A'Expecting numeric in F49 / R49C6: got '#N/A'Expecting numeric in G49 / R49C7: got '#N/A'Expecting numeric in J49 / R49C10: got '#N/A'Expecting numeric in K49 / R49C11: got '#N/A'Expecting numeric in L49 / R49C12: got '#N/A'Expecting numeric in M49 / R49C13: got '#N/A'Expecting numeric in C50 / R50C3: got '#N/A'Expecting numeric in D50 / R50C4: got '#N/A'Expecting numeric in E50 / R50C5: got '#N/A'Expecting numeric in F50 / R50C6: got '#N/A'Expecting numeric in G50 / R50C7: got '#N/A'Expecting numeric in J50 / R50C10: got '#N/A'Expecting numeric in K50 / R50C11: got '#N/A'Expecting numeric in L50 / R50C12: got '#N/A'Expecting numeric in M50 / R50C13: got '#N/A'Expecting numeric in C51 / R51C3: got '#N/A'Expecting numeric in D51 / R51C4: got '#N/A'Expecting numeric in E51 / R51C5: got '#N/A'Expecting numeric in F51 / R51C6: got '#N/A'Expecting numeric in G51 / R51C7: got '#N/A'Expecting numeric in J51 / R51C10: got '#N/A'Expecting numeric in K51 / R51C11: got '#N/A'Expecting numeric in L51 / R51C12: got '#N/A'Expecting numeric in M51 / R51C13: got '#N/A'Expecting numeric in C52 / R52C3: got '#N/A'Expecting numeric in D52 / R52C4: got '#N/A'Expecting numeric in E52 / R52C5: got '#N/A'Expecting numeric in F52 / R52C6: got '#N/A'Expecting numeric in G52 / R52C7: got '#N/A'Expecting numeric in J52 / R52C10: got '#N/A'Expecting numeric in K52 / R52C11: got '#N/A'Expecting numeric in L52 / R52C12: got '#N/A'Expecting numeric in M52 / R52C13: got '#N/A'Expecting numeric in C53 / R53C3: got '#N/A'Expecting numeric in D53 / R53C4: got '#N/A'Expecting numeric in E53 / R53C5: got '#N/A'Expecting numeric in F53 / R53C6: got '#N/A'Expecting numeric in G53 / R53C7: got '#N/A'Expecting numeric in J53 / R53C10: got '#N/A'Expecting numeric in K53 / R53C11: got '#N/A'Expecting numeric in L53 / R53C12: got '#N/A'Expecting numeric in M53 / R53C13: got '#N/A'Expecting numeric in C54 / R54C3: got '#N/A'Expecting numeric in D54 / R54C4: got '#N/A'Expecting numeric in E54 / R54C5: got '#N/A'Expecting numeric in F54 / R54C6: got '#N/A'Expecting numeric in G54 / R54C7: got '#N/A'Expecting numeric in J54 / R54C10: got '#N/A'Expecting numeric in K54 / R54C11: got '#N/A'Expecting numeric in L54 / R54C12: got '#N/A'Expecting numeric in M54 / R54C13: got '#N/A'Expecting numeric in C55 / R55C3: got '#N/A'Expecting numeric in D55 / R55C4: got '#N/A'Expecting numeric in E55 / R55C5: got '#N/A'Expecting numeric in F55 / R55C6: got '#N/A'Expecting numeric in G55 / R55C7: got '#N/A'Expecting numeric in J55 / R55C10: got '#N/A'Expecting numeric in K55 / R55C11: got '#N/A'Expecting numeric in L55 / R55C12: got '#N/A'Expecting numeric in M55 / R55C13: got '#N/A'Expecting numeric in C56 / R56C3: got '#N/A'Expecting numeric in D56 / R56C4: got '#N/A'Expecting numeric in E56 / R56C5: got '#N/A'Expecting numeric in F56 / R56C6: got '#N/A'Expecting numeric in G56 / R56C7: got '#N/A'Expecting numeric in J56 / R56C10: got '#N/A'Expecting numeric in K56 / R56C11: got '#N/A'Expecting numeric in L56 / R56C12: got '#N/A'Expecting numeric in M56 / R56C13: got '#N/A'Expecting numeric in C57 / R57C3: got '#N/A'Expecting numeric in D57 / R57C4: got '#N/A'Expecting numeric in E57 / R57C5: got '#N/A'Expecting numeric in F57 / R57C6: got '#N/A'Expecting numeric in G57 / R57C7: got '#N/A'Expecting numeric in J57 / R57C10: got '#N/A'Expecting numeric in K57 / R57C11: got '#N/A'Expecting numeric in L57 / R57C12: got '#N/A'Expecting numeric in M57 / R57C13: got '#N/A'Expecting numeric in C58 / R58C3: got '#N/A'Expecting numeric in D58 / R58C4: got '#N/A'Expecting numeric in E58 / R58C5: got '#N/A'Expecting numeric in F58 / R58C6: got '#N/A'Expecting numeric in G58 / R58C7: got '#N/A'Expecting numeric in J58 / R58C10: got '#N/A'Expecting numeric in K58 / R58C11: got '#N/A'Expecting numeric in L58 / R58C12: got '#N/A'Expecting numeric in M58 / R58C13: got '#N/A'Expecting numeric in C59 / R59C3: got '#N/A'Expecting numeric in D59 / R59C4: got '#N/A'Expecting numeric in E59 / R59C5: got '#N/A'Expecting numeric in F59 / R59C6: got '#N/A'Expecting numeric in G59 / R59C7: got '#N/A'Expecting numeric in J59 / R59C10: got '#N/A'Expecting numeric in K59 / R59C11: got '#N/A'Expecting numeric in L59 / R59C12: got '#N/A'Expecting numeric in M59 / R59C13: got '#N/A'Expecting numeric in C60 / R60C3: got '#N/A'Expecting numeric in D60 / R60C4: got '#N/A'Expecting numeric in E60 / R60C5: got '#N/A'Expecting numeric in F60 / R60C6: got '#N/A'Expecting numeric in G60 / R60C7: got '#N/A'Expecting numeric in J60 / R60C10: got '#N/A'Expecting numeric in K60 / R60C11: got '#N/A'Expecting numeric in L60 / R60C12: got '#N/A'Expecting numeric in M60 / R60C13: got '#N/A'Expecting numeric in C61 / R61C3: got '#N/A'Expecting numeric in D61 / R61C4: got '#N/A'Expecting numeric in E61 / R61C5: got '#N/A'Expecting numeric in F61 / R61C6: got '#N/A'Expecting numeric in G61 / R61C7: got '#N/A'Expecting numeric in J61 / R61C10: got '#N/A'Expecting numeric in K61 / R61C11: got '#N/A'Expecting numeric in L61 / R61C12: got '#N/A'Expecting numeric in M61 / R61C13: got '#N/A'Expecting numeric in C62 / R62C3: got '#N/A'Expecting numeric in D62 / R62C4: got '#N/A'Expecting numeric in E62 / R62C5: got '#N/A'Expecting numeric in F62 / R62C6: got '#N/A'Expecting numeric in G62 / R62C7: got '#N/A'Expecting numeric in J62 / R62C10: got '#N/A'Expecting numeric in K62 / R62C11: got '#N/A'Expecting numeric in L62 / R62C12: got '#N/A'Expecting numeric in M62 / R62C13: got '#N/A'Expecting numeric in C63 / R63C3: got '#N/A'Expecting numeric in D63 / R63C4: got '#N/A'Expecting numeric in E63 / R63C5: got '#N/A'Expecting numeric in F63 / R63C6: got '#N/A'Expecting numeric in G63 / R63C7: got '#N/A'Expecting numeric in J63 / R63C10: got '#N/A'Expecting numeric in K63 / R63C11: got '#N/A'Expecting numeric in L63 / R63C12: got '#N/A'Expecting numeric in M63 / R63C13: got '#N/A'Expecting numeric in C64 / R64C3: got '#N/A'Expecting numeric in D64 / R64C4: got '#N/A'Expecting numeric in E64 / R64C5: got '#N/A'Expecting numeric in F64 / R64C6: got '#N/A'Expecting numeric in G64 / R64C7: got '#N/A'Expecting numeric in J64 / R64C10: got '#N/A'Expecting numeric in K64 / R64C11: got '#N/A'Expecting numeric in L64 / R64C12: got '#N/A'Expecting numeric in M64 / R64C13: got '#N/A'Expecting numeric in C65 / R65C3: got '#N/A'Expecting numeric in D65 / R65C4: got '#N/A'Expecting numeric in E65 / R65C5: got '#N/A'Expecting numeric in F65 / R65C6: got '#N/A'Expecting numeric in G65 / R65C7: got '#N/A'Expecting numeric in J65 / R65C10: got '#N/A'Expecting numeric in K65 / R65C11: got '#N/A'Expecting numeric in L65 / R65C12: got '#N/A'Expecting numeric in M65 / R65C13: got '#N/A'Expecting numeric in C66 / R66C3: got '#N/A'Expecting numeric in D66 / R66C4: got '#N/A'Expecting numeric in E66 / R66C5: got '#N/A'Expecting numeric in F66 / R66C6: got '#N/A'Expecting numeric in G66 / R66C7: got '#N/A'Expecting numeric in J66 / R66C10: got '#N/A'Expecting numeric in K66 / R66C11: got '#N/A'Expecting numeric in L66 / R66C12: got '#N/A'Expecting numeric in M66 / R66C13: got '#N/A'Expecting numeric in C67 / R67C3: got '#N/A'Expecting numeric in D67 / R67C4: got '#N/A'Expecting numeric in E67 / R67C5: got '#N/A'Expecting numeric in F67 / R67C6: got '#N/A'Expecting numeric in G67 / R67C7: got '#N/A'Expecting numeric in J67 / R67C10: got '#N/A'Expecting numeric in K67 / R67C11: got '#N/A'Expecting numeric in L67 / R67C12: got '#N/A'Expecting numeric in M67 / R67C13: got '#N/A'Expecting numeric in C68 / R68C3: got '#N/A'Expecting numeric in D68 / R68C4: got '#N/A'Expecting numeric in E68 / R68C5: got '#N/A'Expecting numeric in F68 / R68C6: got '#N/A'Expecting numeric in G68 / R68C7: got '#N/A'Expecting numeric in J68 / R68C10: got '#N/A'Expecting numeric in K68 / R68C11: got '#N/A'Expecting numeric in L68 / R68C12: got '#N/A'Expecting numeric in M68 / R68C13: got '#N/A'Expecting numeric in C69 / R69C3: got '#N/A'Expecting numeric in D69 / R69C4: got '#N/A'Expecting numeric in E69 / R69C5: got '#N/A'Expecting numeric in F69 / R69C6: got '#N/A'Expecting numeric in G69 / R69C7: got '#N/A'Expecting numeric in J69 / R69C10: got '#N/A'Expecting numeric in K69 / R69C11: got '#N/A'Expecting numeric in L69 / R69C12: got '#N/A'Expecting numeric in M69 / R69C13: got '#N/A'Expecting numeric in C70 / R70C3: got '#N/A'Expecting numeric in D70 / R70C4: got '#N/A'Expecting numeric in E70 / R70C5: got '#N/A'Expecting numeric in F70 / R70C6: got '#N/A'Expecting numeric in G70 / R70C7: got '#N/A'Expecting numeric in J70 / R70C10: got '#N/A'Expecting numeric in K70 / R70C11: got '#N/A'Expecting numeric in L70 / R70C12: got '#N/A'Expecting numeric in M70 / R70C13: got '#N/A'Expecting numeric in C71 / R71C3: got '#N/A'Expecting numeric in D71 / R71C4: got '#N/A'Expecting numeric in E71 / R71C5: got '#N/A'Expecting numeric in F71 / R71C6: got '#N/A'Expecting numeric in G71 / R71C7: got '#N/A'Expecting numeric in J71 / R71C10: got '#N/A'Expecting numeric in K71 / R71C11: got '#N/A'Expecting numeric in L71 / R71C12: got '#N/A'Expecting numeric in M71 / R71C13: got '#N/A'Expecting numeric in C72 / R72C3: got '#N/A'Expecting numeric in D72 / R72C4: got '#N/A'Expecting numeric in E72 / R72C5: got '#N/A'Expecting numeric in F72 / R72C6: got '#N/A'Expecting numeric in G72 / R72C7: got '#N/A'Expecting numeric in J72 / R72C10: got '#N/A'Expecting numeric in K72 / R72C11: got '#N/A'Expecting numeric in L72 / R72C12: got '#N/A'Expecting numeric in M72 / R72C13: got '#N/A'Expecting numeric in C73 / R73C3: got '#N/A'Expecting numeric in D73 / R73C4: got '#N/A'Expecting numeric in E73 / R73C5: got '#N/A'Expecting numeric in F73 / R73C6: got '#N/A'Expecting numeric in G73 / R73C7: got '#N/A'Expecting numeric in J73 / R73C10: got '#N/A'Expecting numeric in K73 / R73C11: got '#N/A'Expecting numeric in L73 / R73C12: got '#N/A'Expecting numeric in M73 / R73C13: got '#N/A'Expecting numeric in C74 / R74C3: got '#N/A'Expecting numeric in D74 / R74C4: got '#N/A'Expecting numeric in E74 / R74C5: got '#N/A'Expecting numeric in F74 / R74C6: got '#N/A'Expecting numeric in G74 / R74C7: got '#N/A'Expecting numeric in J74 / R74C10: got '#N/A'Expecting numeric in K74 / R74C11: got '#N/A'Expecting numeric in L74 / R74C12: got '#N/A'Expecting numeric in M74 / R74C13: got '#N/A'Expecting numeric in C75 / R75C3: got '#N/A'Expecting numeric in D75 / R75C4: got '#N/A'Expecting numeric in E75 / R75C5: got '#N/A'Expecting numeric in F75 / R75C6: got '#N/A'Expecting numeric in G75 / R75C7: got '#N/A'Expecting numeric in J75 / R75C10: got '#N/A'Expecting numeric in K75 / R75C11: got '#N/A'Expecting numeric in L75 / R75C12: got '#N/A'Expecting numeric in M75 / R75C13: got '#N/A'Expecting numeric in C76 / R76C3: got '#N/A'Expecting numeric in D76 / R76C4: got '#N/A'Expecting numeric in E76 / R76C5: got '#N/A'Expecting numeric in F76 / R76C6: got '#N/A'Expecting numeric in G76 / R76C7: got '#N/A'Expecting numeric in J76 / R76C10: got '#N/A'Expecting numeric in K76 / R76C11: got '#N/A'Expecting numeric in L76 / R76C12: got '#N/A'Expecting numeric in M76 / R76C13: got '#N/A'Expecting numeric in C77 / R77C3: got '#N/A'Expecting numeric in D77 / R77C4: got '#N/A'Expecting numeric in E77 / R77C5: got '#N/A'Expecting numeric in F77 / R77C6: got '#N/A'Expecting numeric in G77 / R77C7: got '#N/A'Expecting numeric in J77 / R77C10: got '#N/A'Expecting numeric in K77 / R77C11: got '#N/A'Expecting numeric in L77 / R77C12: got '#N/A'Expecting numeric in M77 / R77C13: got '#N/A'Expecting numeric in C78 / R78C3: got '#N/A'Expecting numeric in D78 / R78C4: got '#N/A'Expecting numeric in E78 / R78C5: got '#N/A'Expecting numeric in F78 / R78C6: got '#N/A'Expecting numeric in G78 / R78C7: got '#N/A'Expecting numeric in J78 / R78C10: got '#N/A'Expecting numeric in K78 / R78C11: got '#N/A'Expecting numeric in L78 / R78C12: got '#N/A'Expecting numeric in M78 / R78C13: got '#N/A'Expecting numeric in C79 / R79C3: got '#N/A'Expecting numeric in D79 / R79C4: got '#N/A'Expecting numeric in E79 / R79C5: got '#N/A'Expecting numeric in F79 / R79C6: got '#N/A'Expecting numeric in G79 / R79C7: got '#N/A'Expecting numeric in J79 / R79C10: got '#N/A'Expecting numeric in K79 / R79C11: got '#N/A'Expecting numeric in L79 / R79C12: got '#N/A'Expecting numeric in M79 / R79C13: got '#N/A'Expecting numeric in C80 / R80C3: got '#N/A'Expecting numeric in D80 / R80C4: got '#N/A'Expecting numeric in E80 / R80C5: got '#N/A'Expecting numeric in F80 / R80C6: got '#N/A'Expecting numeric in G80 / R80C7: got '#N/A'Expecting numeric in J80 / R80C10: got '#N/A'Expecting numeric in K80 / R80C11: got '#N/A'Expecting numeric in L80 / R80C12: got '#N/A'Expecting numeric in M80 / R80C13: got '#N/A'Expecting numeric in C81 / R81C3: got '#N/A'Expecting numeric in D81 / R81C4: got '#N/A'Expecting numeric in E81 / R81C5: got '#N/A'Expecting numeric in F81 / R81C6: got '#N/A'Expecting numeric in G81 / R81C7: got '#N/A'Expecting numeric in J81 / R81C10: got '#N/A'Expecting numeric in K81 / R81C11: got '#N/A'Expecting numeric in L81 / R81C12: got '#N/A'Expecting numeric in M81 / R81C13: got '#N/A'Expecting numeric in C82 / R82C3: got '#N/A'Expecting numeric in D82 / R82C4: got '#N/A'Expecting numeric in E82 / R82C5: got '#N/A'Expecting numeric in F82 / R82C6: got '#N/A'Expecting numeric in G82 / R82C7: got '#N/A'Expecting numeric in J82 / R82C10: got '#N/A'Expecting numeric in K82 / R82C11: got '#N/A'Expecting numeric in L82 / R82C12: got '#N/A'Expecting numeric in M82 / R82C13: got '#N/A'Expecting numeric in C83 / R83C3: got '#N/A'Expecting numeric in D83 / R83C4: got '#N/A'Expecting numeric in E83 / R83C5: got '#N/A'Expecting numeric in F83 / R83C6: got '#N/A'Expecting numeric in G83 / R83C7: got '#N/A'Expecting numeric in J83 / R83C10: got '#N/A'Expecting numeric in K83 / R83C11: got '#N/A'Expecting numeric in L83 / R83C12: got '#N/A'Expecting numeric in M83 / R83C13: got '#N/A'Expecting numeric in C84 / R84C3: got '#N/A'Expecting numeric in D84 / R84C4: got '#N/A'Expecting numeric in E84 / R84C5: got '#N/A'Expecting numeric in F84 / R84C6: got '#N/A'Expecting numeric in G84 / R84C7: got '#N/A'Expecting numeric in J84 / R84C10: got '#N/A'Expecting numeric in K84 / R84C11: got '#N/A'Expecting numeric in L84 / R84C12: got '#N/A'Expecting numeric in M84 / R84C13: got '#N/A'Expecting numeric in C85 / R85C3: got '#N/A'Expecting numeric in D85 / R85C4: got '#N/A'Expecting numeric in E85 / R85C5: got '#N/A'Expecting numeric in F85 / R85C6: got '#N/A'Expecting numeric in G85 / R85C7: got '#N/A'Expecting numeric in J85 / R85C10: got '#N/A'Expecting numeric in K85 / R85C11: got '#N/A'Expecting numeric in L85 / R85C12: got '#N/A'Expecting numeric in M85 / R85C13: got '#N/A'Expecting numeric in C86 / R86C3: got '#N/A'Expecting numeric in D86 / R86C4: got '#N/A'Expecting numeric in E86 / R86C5: got '#N/A'Expecting numeric in F86 / R86C6: got '#N/A'Expecting numeric in G86 / R86C7: got '#N/A'Expecting numeric in J86 / R86C10: got '#N/A'Expecting numeric in K86 / R86C11: got '#N/A'Expecting numeric in L86 / R86C12: got '#N/A'Expecting numeric in M86 / R86C13: got '#N/A'Expecting numeric in C87 / R87C3: got '#N/A'Expecting numeric in D87 / R87C4: got '#N/A'Expecting numeric in E87 / R87C5: got '#N/A'Expecting numeric in F87 / R87C6: got '#N/A'Expecting numeric in G87 / R87C7: got '#N/A'Expecting numeric in J87 / R87C10: got '#N/A'Expecting numeric in K87 / R87C11: got '#N/A'Expecting numeric in L87 / R87C12: got '#N/A'Expecting numeric in M87 / R87C13: got '#N/A'Expecting numeric in C88 / R88C3: got '#N/A'Expecting numeric in D88 / R88C4: got '#N/A'Expecting numeric in E88 / R88C5: got '#N/A'Expecting numeric in F88 / R88C6: got '#N/A'Expecting numeric in G88 / R88C7: got '#N/A'Expecting numeric in J88 / R88C10: got '#N/A'Expecting numeric in K88 / R88C11: got '#N/A'Expecting numeric in L88 / R88C12: got '#N/A'Expecting numeric in M88 / R88C13: got '#N/A'Expecting numeric in C89 / R89C3: got '#N/A'Expecting numeric in D89 / R89C4: got '#N/A'Expecting numeric in E89 / R89C5: got '#N/A'Expecting numeric in F89 / R89C6: got '#N/A'Expecting numeric in G89 / R89C7: got '#N/A'Expecting numeric in J89 / R89C10: got '#N/A'Expecting numeric in K89 / R89C11: got '#N/A'Expecting numeric in L89 / R89C12: got '#N/A'Expecting numeric in M89 / R89C13: got '#N/A'Expecting numeric in C90 / R90C3: got '#N/A'Expecting numeric in D90 / R90C4: got '#N/A'Expecting numeric in E90 / R90C5: got '#N/A'Expecting numeric in F90 / R90C6: got '#N/A'Expecting numeric in G90 / R90C7: got '#N/A'Expecting numeric in J90 / R90C10: got '#N/A'Expecting numeric in K90 / R90C11: got '#N/A'Expecting numeric in L90 / R90C12: got '#N/A'Expecting numeric in M90 / R90C13: got '#N/A'Expecting numeric in C91 / R91C3: got '#N/A'Expecting numeric in D91 / R91C4: got '#N/A'Expecting numeric in E91 / R91C5: got '#N/A'Expecting numeric in F91 / R91C6: got '#N/A'Expecting numeric in G91 / R91C7: got '#N/A'Expecting numeric in J91 / R91C10: got '#N/A'Expecting numeric in K91 / R91C11: got '#N/A'Expecting numeric in L91 / R91C12: got '#N/A'Expecting numeric in M91 / R91C13: got '#N/A'Expecting numeric in C92 / R92C3: got '#N/A'Expecting numeric in D92 / R92C4: got '#N/A'Expecting numeric in E92 / R92C5: got '#N/A'Expecting numeric in F92 / R92C6: got '#N/A'Expecting numeric in G92 / R92C7: got '#N/A'Expecting numeric in J92 / R92C10: got '#N/A'Expecting numeric in K92 / R92C11: got '#N/A'Expecting numeric in L92 / R92C12: got '#N/A'Expecting numeric in M92 / R92C13: got '#N/A'Expecting numeric in C93 / R93C3: got '#N/A'Expecting numeric in D93 / R93C4: got '#N/A'Expecting numeric in E93 / R93C5: got '#N/A'Expecting numeric in F93 / R93C6: got '#N/A'Expecting numeric in G93 / R93C7: got '#N/A'Expecting numeric in J93 / R93C10: got '#N/A'Expecting numeric in K93 / R93C11: got '#N/A'Expecting numeric in L93 / R93C12: got '#N/A'Expecting numeric in M93 / R93C13: got '#N/A'Expecting numeric in C94 / R94C3: got '#N/A'Expecting numeric in D94 / R94C4: got '#N/A'Expecting numeric in E94 / R94C5: got '#N/A'Expecting numeric in F94 / R94C6: got '#N/A'Expecting numeric in G94 / R94C7: got '#N/A'Expecting numeric in J94 / R94C10: got '#N/A'Expecting numeric in K94 / R94C11: got '#N/A'Expecting numeric in L94 / R94C12: got '#N/A'Expecting numeric in M94 / R94C13: got '#N/A'Expecting numeric in C95 / R95C3: got '#N/A'Expecting numeric in D95 / R95C4: got '#N/A'Expecting numeric in E95 / R95C5: got '#N/A'Expecting numeric in F95 / R95C6: got '#N/A'Expecting numeric in G95 / R95C7: got '#N/A'Expecting numeric in J95 / R95C10: got '#N/A'Expecting numeric in K95 / R95C11: got '#N/A'Expecting numeric in L95 / R95C12: got '#N/A'Expecting numeric in M95 / R95C13: got '#N/A'Expecting numeric in C96 / R96C3: got '#N/A'Expecting numeric in D96 / R96C4: got '#N/A'Expecting numeric in E96 / R96C5: got '#N/A'Expecting numeric in F96 / R96C6: got '#N/A'Expecting numeric in G96 / R96C7: got '#N/A'Expecting numeric in J96 / R96C10: got '#N/A'Expecting numeric in K96 / R96C11: got '#N/A'Expecting numeric in L96 / R96C12: got '#N/A'Expecting numeric in M96 / R96C13: got '#N/A'Expecting numeric in C97 / R97C3: got '#N/A'Expecting numeric in D97 / R97C4: got '#N/A'Expecting numeric in E97 / R97C5: got '#N/A'Expecting numeric in F97 / R97C6: got '#N/A'Expecting numeric in G97 / R97C7: got '#N/A'Expecting numeric in J97 / R97C10: got '#N/A'Expecting numeric in K97 / R97C11: got '#N/A'Expecting numeric in L97 / R97C12: got '#N/A'Expecting numeric in M97 / R97C13: got '#N/A'Expecting numeric in C98 / R98C3: got '#N/A'Expecting numeric in D98 / R98C4: got '#N/A'Expecting numeric in E98 / R98C5: got '#N/A'Expecting numeric in F98 / R98C6: got '#N/A'Expecting numeric in G98 / R98C7: got '#N/A'Expecting numeric in J98 / R98C10: got '#N/A'Expecting numeric in K98 / R98C11: got '#N/A'Expecting numeric in L98 / R98C12: got '#N/A'Expecting numeric in M98 / R98C13: got '#N/A'Expecting numeric in C99 / R99C3: got '#N/A'Expecting numeric in D99 / R99C4: got '#N/A'Expecting numeric in E99 / R99C5: got '#N/A'Expecting numeric in F99 / R99C6: got '#N/A'Expecting numeric in G99 / R99C7: got '#N/A'Expecting numeric in J99 / R99C10: got '#N/A'Expecting numeric in K99 / R99C11: got '#N/A'Expecting numeric in L99 / R99C12: got '#N/A'Expecting numeric in M99 / R99C13: got '#N/A'Expecting numeric in C100 / R100C3: got '#N/A'Expecting numeric in D100 / R100C4: got '#N/A'Expecting numeric in E100 / R100C5: got '#N/A'Expecting numeric in F100 / R100C6: got '#N/A'Expecting numeric in G100 / R100C7: got '#N/A'Expecting numeric in J100 / R100C10: got '#N/A'Expecting numeric in K100 / R100C11: got '#N/A'Expecting numeric in L100 / R100C12: got '#N/A'Expecting numeric in M100 / R100C13: got '#N/A'Expecting numeric in C101 / R101C3: got '#N/A'Expecting numeric in D101 / R101C4: got '#N/A'Expecting numeric in E101 / R101C5: got '#N/A'Expecting numeric in F101 / R101C6: got '#N/A'Expecting numeric in G101 / R101C7: got '#N/A'Expecting numeric in J101 / R101C10: got '#N/A'Expecting numeric in K101 / R101C11: got '#N/A'Expecting numeric in L101 / R101C12: got '#N/A'Expecting numeric in M101 / R101C13: got '#N/A'Expecting numeric in C102 / R102C3: got '#N/A'Expecting numeric in D102 / R102C4: got '#N/A'Expecting numeric in E102 / R102C5: got '#N/A'Expecting numeric in F102 / R102C6: got '#N/A'Expecting numeric in G102 / R102C7: got '#N/A'Expecting numeric in J102 / R102C10: got '#N/A'Expecting numeric in K102 / R102C11: got '#N/A'Expecting numeric in L102 / R102C12: got '#N/A'Expecting numeric in M102 / R102C13: got '#N/A'Expecting numeric in C103 / R103C3: got '#N/A'Expecting numeric in D103 / R103C4: got '#N/A'Expecting numeric in E103 / R103C5: got '#N/A'Expecting numeric in F103 / R103C6: got '#N/A'Expecting numeric in G103 / R103C7: got '#N/A'Expecting numeric in J103 / R103C10: got '#N/A'Expecting numeric in K103 / R103C11: got '#N/A'Expecting numeric in L103 / R103C12: got '#N/A'Expecting numeric in M103 / R103C13: got '#N/A'Expecting numeric in C104 / R104C3: got '#N/A'Expecting numeric in D104 / R104C4: got '#N/A'Expecting numeric in E104 / R104C5: got '#N/A'Expecting numeric in F104 / R104C6: got '#N/A'Expecting numeric in G104 / R104C7: got '#N/A'Expecting numeric in J104 / R104C10: got '#N/A'Expecting numeric in K104 / R104C11: got '#N/A'Expecting numeric in L104 / R104C12: got '#N/A'Expecting numeric in M104 / R104C13: got '#N/A'Expecting numeric in C105 / R105C3: got '#N/A'Expecting numeric in D105 / R105C4: got '#N/A'Expecting numeric in E105 / R105C5: got '#N/A'Expecting numeric in F105 / R105C6: got '#N/A'Expecting numeric in G105 / R105C7: got '#N/A'Expecting numeric in J105 / R105C10: got '#N/A'Expecting numeric in K105 / R105C11: got '#N/A'Expecting numeric in L105 / R105C12: got '#N/A'Expecting numeric in M105 / R105C13: got '#N/A'Expecting numeric in C106 / R106C3: got '#N/A'Expecting numeric in D106 / R106C4: got '#N/A'Expecting numeric in E106 / R106C5: got '#N/A'Expecting numeric in F106 / R106C6: got '#N/A'Expecting numeric in G106 / R106C7: got '#N/A'Expecting numeric in J106 / R106C10: got '#N/A'Expecting numeric in K106 / R106C11: got '#N/A'Expecting numeric in L106 / R106C12: got '#N/A'Expecting numeric in M106 / R106C13: got '#N/A'Expecting numeric in C107 / R107C3: got '#N/A'Expecting numeric in D107 / R107C4: got '#N/A'Expecting numeric in E107 / R107C5: got '#N/A'Expecting numeric in F107 / R107C6: got '#N/A'Expecting numeric in G107 / R107C7: got '#N/A'Expecting numeric in J107 / R107C10: got '#N/A'Expecting numeric in K107 / R107C11: got '#N/A'Expecting numeric in L107 / R107C12: got '#N/A'Expecting numeric in M107 / R107C13: got '#N/A'Expecting numeric in C108 / R108C3: got '#N/A'Expecting numeric in D108 / R108C4: got '#N/A'Expecting numeric in E108 / R108C5: got '#N/A'Expecting numeric in F108 / R108C6: got '#N/A'Expecting numeric in G108 / R108C7: got '#N/A'Expecting numeric in J108 / R108C10: got '#N/A'Expecting numeric in K108 / R108C11: got '#N/A'Expecting numeric in L108 / R108C12: got '#N/A'Expecting numeric in M108 / R108C13: got '#N/A'Expecting numeric in C109 / R109C3: got '#N/A'Expecting numeric in D109 / R109C4: got '#N/A'Expecting numeric in E109 / R109C5: got '#N/A'Expecting numeric in F109 / R109C6: got '#N/A'Expecting numeric in G109 / R109C7: got '#N/A'Expecting numeric in J109 / R109C10: got '#N/A'Expecting numeric in K109 / R109C11: got '#N/A'Expecting numeric in L109 / R109C12: got '#N/A'Expecting numeric in M109 / R109C13: got '#N/A'Expecting numeric in C110 / R110C3: got '#N/A'Expecting numeric in D110 / R110C4: got '#N/A'Expecting numeric in E110 / R110C5: got '#N/A'Expecting numeric in F110 / R110C6: got '#N/A'Expecting numeric in G110 / R110C7: got '#N/A'Expecting numeric in J110 / R110C10: got '#N/A'Expecting numeric in K110 / R110C11: got '#N/A'Expecting numeric in L110 / R110C12: got '#N/A'Expecting numeric in M110 / R110C13: got '#N/A'Expecting numeric in C111 / R111C3: got '#N/A'Expecting numeric in D111 / R111C4: got '#N/A'Expecting numeric in E111 / R111C5: got '#N/A'Expecting numeric in F111 / R111C6: got '#N/A'Expecting numeric in G111 / R111C7: got '#N/A'Expecting numeric in J111 / R111C10: got '#N/A'Expecting numeric in K111 / R111C11: got '#N/A'Expecting numeric in L111 / R111C12: got '#N/A'Expecting numeric in M111 / R111C13: got '#N/A'Expecting numeric in C112 / R112C3: got '#N/A'Expecting numeric in D112 / R112C4: got '#N/A'Expecting numeric in E112 / R112C5: got '#N/A'Expecting numeric in F112 / R112C6: got '#N/A'Expecting numeric in G112 / R112C7: got '#N/A'Expecting numeric in J112 / R112C10: got '#N/A'Expecting numeric in K112 / R112C11: got '#N/A'Expecting numeric in L112 / R112C12: got '#N/A'Expecting numeric in M112 / R112C13: got '#N/A'Expecting numeric in C113 / R113C3: got '#N/A'Expecting numeric in D113 / R113C4: got '#N/A'Expecting numeric in E113 / R113C5: got '#N/A'Expecting numeric in F113 / R113C6: got '#N/A'Expecting numeric in G113 / R113C7: got '#N/A'Expecting numeric in J113 / R113C10: got '#N/A'Expecting numeric in K113 / R113C11: got '#N/A'Expecting numeric in L113 / R113C12: got '#N/A'Expecting numeric in M113 / R113C13: got '#N/A'Expecting numeric in C114 / R114C3: got '#N/A'Expecting numeric in D114 / R114C4: got '#N/A'Expecting numeric in E114 / R114C5: got '#N/A'Expecting numeric in F114 / R114C6: got '#N/A'Expecting numeric in G114 / R114C7: got '#N/A'Expecting numeric in J114 / R114C10: got '#N/A'Expecting numeric in K114 / R114C11: got '#N/A'Expecting numeric in L114 / R114C12: got '#N/A'Expecting numeric in M114 / R114C13: got '#N/A'Expecting numeric in C115 / R115C3: got '#N/A'Expecting numeric in D115 / R115C4: got '#N/A'Expecting numeric in E115 / R115C5: got '#N/A'Expecting numeric in F115 / R115C6: got '#N/A'Expecting numeric in G115 / R115C7: got '#N/A'Expecting numeric in J115 / R115C10: got '#N/A'Expecting numeric in K115 / R115C11: got '#N/A'Expecting numeric in L115 / R115C12: got '#N/A'Expecting numeric in M115 / R115C13: got '#N/A'Expecting numeric in C116 / R116C3: got '#N/A'Expecting numeric in D116 / R116C4: got '#N/A'Expecting numeric in E116 / R116C5: got '#N/A'Expecting numeric in F116 / R116C6: got '#N/A'Expecting numeric in G116 / R116C7: got '#N/A'Expecting numeric in J116 / R116C10: got '#N/A'Expecting numeric in K116 / R116C11: got '#N/A'Expecting numeric in L116 / R116C12: got '#N/A'Expecting numeric in M116 / R116C13: got '#N/A'Expecting numeric in C117 / R117C3: got '#N/A'Expecting numeric in D117 / R117C4: got '#N/A'Expecting numeric in E117 / R117C5: got '#N/A'Expecting numeric in F117 / R117C6: got '#N/A'Expecting numeric in G117 / R117C7: got '#N/A'Expecting numeric in J117 / R117C10: got '#N/A'Expecting numeric in K117 / R117C11: got '#N/A'Expecting numeric in L117 / R117C12: got '#N/A'Expecting numeric in M117 / R117C13: got '#N/A'Expecting numeric in C118 / R118C3: got '#N/A'Expecting numeric in D118 / R118C4: got '#N/A'Expecting numeric in E118 / R118C5: got '#N/A'Expecting numeric in F118 / R118C6: got '#N/A'Expecting numeric in G118 / R118C7: got '#N/A'Expecting numeric in J118 / R118C10: got '#N/A'Expecting numeric in K118 / R118C11: got '#N/A'Expecting numeric in L118 / R118C12: got '#N/A'Expecting numeric in M118 / R118C13: got '#N/A'Expecting numeric in C119 / R119C3: got '#N/A'Expecting numeric in D119 / R119C4: got '#N/A'Expecting numeric in E119 / R119C5: got '#N/A'Expecting numeric in F119 / R119C6: got '#N/A'Expecting numeric in G119 / R119C7: got '#N/A'Expecting numeric in J119 / R119C10: got '#N/A'Expecting numeric in K119 / R119C11: got '#N/A'Expecting numeric in L119 / R119C12: got '#N/A'Expecting numeric in M119 / R119C13: got '#N/A'Expecting numeric in C120 / R120C3: got '#N/A'Expecting numeric in D120 / R120C4: got '#N/A'Expecting numeric in E120 / R120C5: got '#N/A'Expecting numeric in F120 / R120C6: got '#N/A'Expecting numeric in G120 / R120C7: got '#N/A'Expecting numeric in J120 / R120C10: got '#N/A'Expecting numeric in K120 / R120C11: got '#N/A'Expecting numeric in L120 / R120C12: got '#N/A'Expecting numeric in M120 / R120C13: got '#N/A'Expecting numeric in C121 / R121C3: got '#N/A'Expecting numeric in D121 / R121C4: got '#N/A'Expecting numeric in E121 / R121C5: got '#N/A'Expecting numeric in F121 / R121C6: got '#N/A'Expecting numeric in G121 / R121C7: got '#N/A'Expecting numeric in J121 / R121C10: got '#N/A'Expecting numeric in K121 / R121C11: got '#N/A'Expecting numeric in L121 / R121C12: got '#N/A'Expecting numeric in M121 / R121C13: got '#N/A'Expecting numeric in C122 / R122C3: got '#N/A'Expecting numeric in D122 / R122C4: got '#N/A'Expecting numeric in E122 / R122C5: got '#N/A'Expecting numeric in F122 / R122C6: got '#N/A'Expecting numeric in G122 / R122C7: got '#N/A'Expecting numeric in J122 / R122C10: got '#N/A'Expecting numeric in K122 / R122C11: got '#N/A'Expecting numeric in L122 / R122C12: got '#N/A'Expecting numeric in M122 / R122C13: got '#N/A'Expecting numeric in C123 / R123C3: got '#N/A'Expecting numeric in D123 / R123C4: got '#N/A'Expecting numeric in E123 / R123C5: got '#N/A'Expecting numeric in F123 / R123C6: got '#N/A'Expecting numeric in G123 / R123C7: got '#N/A'Expecting numeric in J123 / R123C10: got '#N/A'Expecting numeric in K123 / R123C11: got '#N/A'Expecting numeric in L123 / R123C12: got '#N/A'Expecting numeric in M123 / R123C13: got '#N/A'Expecting numeric in C124 / R124C3: got '#N/A'Expecting numeric in D124 / R124C4: got '#N/A'Expecting numeric in E124 / R124C5: got '#N/A'Expecting numeric in F124 / R124C6: got '#N/A'Expecting numeric in G124 / R124C7: got '#N/A'Expecting numeric in J124 / R124C10: got '#N/A'Expecting numeric in K124 / R124C11: got '#N/A'Expecting numeric in L124 / R124C12: got '#N/A'Expecting numeric in M124 / R124C13: got '#N/A'Expecting numeric in C125 / R125C3: got '#N/A'Expecting numeric in D125 / R125C4: got '#N/A'Expecting numeric in E125 / R125C5: got '#N/A'Expecting numeric in F125 / R125C6: got '#N/A'Expecting numeric in G125 / R125C7: got '#N/A'Expecting numeric in J125 / R125C10: got '#N/A'Expecting numeric in K125 / R125C11: got '#N/A'Expecting numeric in L125 / R125C12: got '#N/A'Expecting numeric in M125 / R125C13: got '#N/A'Expecting numeric in C126 / R126C3: got '#N/A'Expecting numeric in D126 / R126C4: got '#N/A'Expecting numeric in E126 / R126C5: got '#N/A'Expecting numeric in F126 / R126C6: got '#N/A'Expecting numeric in G126 / R126C7: got '#N/A'Expecting numeric in J126 / R126C10: got '#N/A'Expecting numeric in K126 / R126C11: got '#N/A'Expecting numeric in L126 / R126C12: got '#N/A'Expecting numeric in M126 / R126C13: got '#N/A'Expecting numeric in C127 / R127C3: got '#N/A'Expecting numeric in D127 / R127C4: got '#N/A'Expecting numeric in E127 / R127C5: got '#N/A'Expecting numeric in F127 / R127C6: got '#N/A'Expecting numeric in G127 / R127C7: got '#N/A'Expecting numeric in J127 / R127C10: got '#N/A'Expecting numeric in K127 / R127C11: got '#N/A'Expecting numeric in L127 / R127C12: got '#N/A'Expecting numeric in M127 / R127C13: got '#N/A'Expecting numeric in C128 / R128C3: got '#N/A'Expecting numeric in D128 / R128C4: got '#N/A'Expecting numeric in E128 / R128C5: got '#N/A'Expecting numeric in F128 / R128C6: got '#N/A'Expecting numeric in G128 / R128C7: got '#N/A'Expecting numeric in J128 / R128C10: got '#N/A'Expecting numeric in K128 / R128C11: got '#N/A'Expecting numeric in L128 / R128C12: got '#N/A'Expecting numeric in M128 / R128C13: got '#N/A'Expecting numeric in C129 / R129C3: got '#N/A'Expecting numeric in D129 / R129C4: got '#N/A'Expecting numeric in E129 / R129C5: got '#N/A'Expecting numeric in F129 / R129C6: got '#N/A'Expecting numeric in G129 / R129C7: got '#N/A'Expecting numeric in J129 / R129C10: got '#N/A'Expecting numeric in K129 / R129C11: got '#N/A'Expecting numeric in L129 / R129C12: got '#N/A'Expecting numeric in M129 / R129C13: got '#N/A'Expecting numeric in C130 / R130C3: got '#N/A'Expecting numeric in D130 / R130C4: got '#N/A'Expecting numeric in E130 / R130C5: got '#N/A'Expecting numeric in F130 / R130C6: got '#N/A'Expecting numeric in G130 / R130C7: got '#N/A'Expecting numeric in J130 / R130C10: got '#N/A'Expecting numeric in K130 / R130C11: got '#N/A'Expecting numeric in L130 / R130C12: got '#N/A'Expecting numeric in M130 / R130C13: got '#N/A'Expecting numeric in C131 / R131C3: got '#N/A'Expecting numeric in D131 / R131C4: got '#N/A'Expecting numeric in E131 / R131C5: got '#N/A'Expecting numeric in F131 / R131C6: got '#N/A'Expecting numeric in G131 / R131C7: got '#N/A'Expecting numeric in J131 / R131C10: got '#N/A'Expecting numeric in K131 / R131C11: got '#N/A'Expecting numeric in L131 / R131C12: got '#N/A'Expecting numeric in M131 / R131C13: got '#N/A'Expecting numeric in C132 / R132C3: got '#N/A'Expecting numeric in D132 / R132C4: got '#N/A'Expecting numeric in E132 / R132C5: got '#N/A'Expecting numeric in F132 / R132C6: got '#N/A'Expecting numeric in G132 / R132C7: got '#N/A'Expecting numeric in J132 / R132C10: got '#N/A'Expecting numeric in K132 / R132C11: got '#N/A'Expecting numeric in L132 / R132C12: got '#N/A'Expecting numeric in M132 / R132C13: got '#N/A'Expecting numeric in C133 / R133C3: got '#N/A'Expecting numeric in D133 / R133C4: got '#N/A'Expecting numeric in E133 / R133C5: got '#N/A'Expecting numeric in F133 / R133C6: got '#N/A'Expecting numeric in G133 / R133C7: got '#N/A'Expecting numeric in J133 / R133C10: got '#N/A'Expecting numeric in K133 / R133C11: got '#N/A'Expecting numeric in L133 / R133C12: got '#N/A'Expecting numeric in M133 / R133C13: got '#N/A'Expecting numeric in C134 / R134C3: got '#N/A'Expecting numeric in D134 / R134C4: got '#N/A'Expecting numeric in E134 / R134C5: got '#N/A'Expecting numeric in F134 / R134C6: got '#N/A'Expecting numeric in G134 / R134C7: got '#N/A'Expecting numeric in J134 / R134C10: got '#N/A'Expecting numeric in K134 / R134C11: got '#N/A'Expecting numeric in L134 / R134C12: got '#N/A'Expecting numeric in M134 / R134C13: got '#N/A'Expecting numeric in C135 / R135C3: got '#N/A'Expecting numeric in D135 / R135C4: got '#N/A'Expecting numeric in E135 / R135C5: got '#N/A'Expecting numeric in F135 / R135C6: got '#N/A'Expecting numeric in G135 / R135C7: got '#N/A'Expecting numeric in J135 / R135C10: got '#N/A'Expecting numeric in K135 / R135C11: got '#N/A'Expecting numeric in L135 / R135C12: got '#N/A'Expecting numeric in M135 / R135C13: got '#N/A'Expecting numeric in C136 / R136C3: got '#N/A'Expecting numeric in D136 / R136C4: got '#N/A'Expecting numeric in E136 / R136C5: got '#N/A'Expecting numeric in F136 / R136C6: got '#N/A'Expecting numeric in G136 / R136C7: got '#N/A'Expecting numeric in J136 / R136C10: got '#N/A'Expecting numeric in K136 / R136C11: got '#N/A'Expecting numeric in L136 / R136C12: got '#N/A'Expecting numeric in M136 / R136C13: got '#N/A'Expecting numeric in C137 / R137C3: got '#N/A'Expecting numeric in D137 / R137C4: got '#N/A'Expecting numeric in E137 / R137C5: got '#N/A'Expecting numeric in F137 / R137C6: got '#N/A'Expecting numeric in G137 / R137C7: got '#N/A'Expecting numeric in J137 / R137C10: got '#N/A'Expecting numeric in K137 / R137C11: got '#N/A'Expecting numeric in L137 / R137C12: got '#N/A'Expecting numeric in M137 / R137C13: got '#N/A'Expecting numeric in C138 / R138C3: got '#N/A'Expecting numeric in D138 / R138C4: got '#N/A'Expecting numeric in E138 / R138C5: got '#N/A'Expecting numeric in F138 / R138C6: got '#N/A'Expecting numeric in G138 / R138C7: got '#N/A'Expecting numeric in J138 / R138C10: got '#N/A'Expecting numeric in K138 / R138C11: got '#N/A'Expecting numeric in L138 / R138C12: got '#N/A'Expecting numeric in M138 / R138C13: got '#N/A'Expecting numeric in C139 / R139C3: got '#N/A'Expecting numeric in D139 / R139C4: got '#N/A'Expecting numeric in E139 / R139C5: got '#N/A'Expecting numeric in F139 / R139C6: got '#N/A'Expecting numeric in G139 / R139C7: got '#N/A'Expecting numeric in J139 / R139C10: got '#N/A'Expecting numeric in K139 / R139C11: got '#N/A'Expecting numeric in L139 / R139C12: got '#N/A'Expecting numeric in M139 / R139C13: got '#N/A'Expecting numeric in C140 / R140C3: got '#N/A'Expecting numeric in D140 / R140C4: got '#N/A'Expecting numeric in E140 / R140C5: got '#N/A'Expecting numeric in F140 / R140C6: got '#N/A'Expecting numeric in G140 / R140C7: got '#N/A'Expecting numeric in J140 / R140C10: got '#N/A'Expecting numeric in K140 / R140C11: got '#N/A'Expecting numeric in L140 / R140C12: got '#N/A'Expecting numeric in M140 / R140C13: got '#N/A'Expecting numeric in C141 / R141C3: got '#N/A'Expecting numeric in D141 / R141C4: got '#N/A'Expecting numeric in E141 / R141C5: got '#N/A'Expecting numeric in F141 / R141C6: got '#N/A'Expecting numeric in G141 / R141C7: got '#N/A'Expecting numeric in J141 / R141C10: got '#N/A'Expecting numeric in K141 / R141C11: got '#N/A'Expecting numeric in L141 / R141C12: got '#N/A'Expecting numeric in M141 / R141C13: got '#N/A'Expecting numeric in C142 / R142C3: got '#N/A'Expecting numeric in D142 / R142C4: got '#N/A'Expecting numeric in E142 / R142C5: got '#N/A'Expecting numeric in F142 / R142C6: got '#N/A'Expecting numeric in G142 / R142C7: got '#N/A'Expecting numeric in J142 / R142C10: got '#N/A'Expecting numeric in K142 / R142C11: got '#N/A'Expecting numeric in L142 / R142C12: got '#N/A'Expecting numeric in M142 / R142C13: got '#N/A'Expecting numeric in C143 / R143C3: got '#N/A'Expecting numeric in D143 / R143C4: got '#N/A'Expecting numeric in E143 / R143C5: got '#N/A'Expecting numeric in F143 / R143C6: got '#N/A'Expecting numeric in G143 / R143C7: got '#N/A'Expecting numeric in J143 / R143C10: got '#N/A'Expecting numeric in K143 / R143C11: got '#N/A'Expecting numeric in L143 / R143C12: got '#N/A'Expecting numeric in M143 / R143C13: got '#N/A'Expecting numeric in C144 / R144C3: got '#N/A'Expecting numeric in D144 / R144C4: got '#N/A'Expecting numeric in E144 / R144C5: got '#N/A'Expecting numeric in F144 / R144C6: got '#N/A'Expecting numeric in G144 / R144C7: got '#N/A'Expecting numeric in J144 / R144C10: got '#N/A'Expecting numeric in K144 / R144C11: got '#N/A'Expecting numeric in L144 / R144C12: got '#N/A'Expecting numeric in M144 / R144C13: got '#N/A'Expecting numeric in C145 / R145C3: got '#N/A'Expecting numeric in D145 / R145C4: got '#N/A'Expecting numeric in E145 / R145C5: got '#N/A'Expecting numeric in F145 / R145C6: got '#N/A'Expecting numeric in G145 / R145C7: got '#N/A'Expecting numeric in J145 / R145C10: got '#N/A'Expecting numeric in K145 / R145C11: got '#N/A'Expecting numeric in L145 / R145C12: got '#N/A'Expecting numeric in M145 / R145C13: got '#N/A'Expecting numeric in C146 / R146C3: got '#N/A'Expecting numeric in D146 / R146C4: got '#N/A'Expecting numeric in E146 / R146C5: got '#N/A'Expecting numeric in F146 / R146C6: got '#N/A'Expecting numeric in G146 / R146C7: got '#N/A'Expecting numeric in J146 / R146C10: got '#N/A'Expecting numeric in K146 / R146C11: got '#N/A'Expecting numeric in L146 / R146C12: got '#N/A'Expecting numeric in M146 / R146C13: got '#N/A'Expecting numeric in C147 / R147C3: got '#N/A'Expecting numeric in D147 / R147C4: got '#N/A'Expecting numeric in E147 / R147C5: got '#N/A'Expecting numeric in F147 / R147C6: got '#N/A'Expecting numeric in G147 / R147C7: got '#N/A'Expecting numeric in J147 / R147C10: got '#N/A'Expecting numeric in K147 / R147C11: got '#N/A'Expecting numeric in L147 / R147C12: got '#N/A'Expecting numeric in M147 / R147C13: got '#N/A'Expecting numeric in C148 / R148C3: got '#N/A'Expecting numeric in D148 / R148C4: got '#N/A'Expecting numeric in E148 / R148C5: got '#N/A'Expecting numeric in F148 / R148C6: got '#N/A'Expecting numeric in G148 / R148C7: got '#N/A'Expecting numeric in J148 / R148C10: got '#N/A'Expecting numeric in K148 / R148C11: got '#N/A'Expecting numeric in L148 / R148C12: got '#N/A'Expecting numeric in M148 / R148C13: got '#N/A'Expecting numeric in C149 / R149C3: got '#N/A'Expecting numeric in D149 / R149C4: got '#N/A'Expecting numeric in E149 / R149C5: got '#N/A'Expecting numeric in F149 / R149C6: got '#N/A'Expecting numeric in G149 / R149C7: got '#N/A'Expecting numeric in J149 / R149C10: got '#N/A'Expecting numeric in K149 / R149C11: got '#N/A'Expecting numeric in L149 / R149C12: got '#N/A'Expecting numeric in M149 / R149C13: got '#N/A'Expecting numeric in C150 / R150C3: got '#N/A'Expecting numeric in D150 / R150C4: got '#N/A'Expecting numeric in E150 / R150C5: got '#N/A'Expecting numeric in F150 / R150C6: got '#N/A'Expecting numeric in G150 / R150C7: got '#N/A'Expecting numeric in J150 / R150C10: got '#N/A'Expecting numeric in K150 / R150C11: got '#N/A'Expecting numeric in L150 / R150C12: got '#N/A'Expecting numeric in M150 / R150C13: got '#N/A'Expecting numeric in C151 / R151C3: got '#N/A'Expecting numeric in D151 / R151C4: got '#N/A'Expecting numeric in E151 / R151C5: got '#N/A'Expecting numeric in F151 / R151C6: got '#N/A'Expecting numeric in G151 / R151C7: got '#N/A'Expecting numeric in J151 / R151C10: got '#N/A'Expecting numeric in K151 / R151C11: got '#N/A'Expecting numeric in L151 / R151C12: got '#N/A'Expecting numeric in M151 / R151C13: got '#N/A'Expecting numeric in C152 / R152C3: got '#N/A'Expecting numeric in D152 / R152C4: got '#N/A'Expecting numeric in E152 / R152C5: got '#N/A'Expecting numeric in F152 / R152C6: got '#N/A'Expecting numeric in G152 / R152C7: got '#N/A'Expecting numeric in J152 / R152C10: got '#N/A'Expecting numeric in K152 / R152C11: got '#N/A'Expecting numeric in L152 / R152C12: got '#N/A'Expecting numeric in M152 / R152C13: got '#N/A'Expecting numeric in C153 / R153C3: got '#N/A'Expecting numeric in D153 / R153C4: got '#N/A'Expecting numeric in E153 / R153C5: got '#N/A'Expecting numeric in F153 / R153C6: got '#N/A'Expecting numeric in G153 / R153C7: got '#N/A'Expecting numeric in J153 / R153C10: got '#N/A'Expecting numeric in K153 / R153C11: got '#N/A'Expecting numeric in L153 / R153C12: got '#N/A'Expecting numeric in M153 / R153C13: got '#N/A'Expecting numeric in C154 / R154C3: got '#N/A'Expecting numeric in D154 / R154C4: got '#N/A'Expecting numeric in E154 / R154C5: got '#N/A'Expecting numeric in F154 / R154C6: got '#N/A'Expecting numeric in G154 / R154C7: got '#N/A'Expecting numeric in J154 / R154C10: got '#N/A'Expecting numeric in K154 / R154C11: got '#N/A'Expecting numeric in L154 / R154C12: got '#N/A'Expecting numeric in M154 / R154C13: got '#N/A'Expecting numeric in C155 / R155C3: got '#N/A'Expecting numeric in D155 / R155C4: got '#N/A'Expecting numeric in E155 / R155C5: got '#N/A'Expecting numeric in F155 / R155C6: got '#N/A'Expecting numeric in G155 / R155C7: got '#N/A'Expecting numeric in J155 / R155C10: got '#N/A'Expecting numeric in K155 / R155C11: got '#N/A'Expecting numeric in L155 / R155C12: got '#N/A'Expecting numeric in M155 / R155C13: got '#N/A'Expecting numeric in C156 / R156C3: got '#N/A'Expecting numeric in D156 / R156C4: got '#N/A'Expecting numeric in E156 / R156C5: got '#N/A'Expecting numeric in F156 / R156C6: got '#N/A'Expecting numeric in G156 / R156C7: got '#N/A'Expecting numeric in J156 / R156C10: got '#N/A'Expecting numeric in K156 / R156C11: got '#N/A'Expecting numeric in L156 / R156C12: got '#N/A'Expecting numeric in M156 / R156C13: got '#N/A'Expecting numeric in C157 / R157C3: got '#N/A'Expecting numeric in D157 / R157C4: got '#N/A'Expecting numeric in E157 / R157C5: got '#N/A'Expecting numeric in F157 / R157C6: got '#N/A'Expecting numeric in G157 / R157C7: got '#N/A'Expecting numeric in J157 / R157C10: got '#N/A'Expecting numeric in K157 / R157C11: got '#N/A'Expecting numeric in L157 / R157C12: got '#N/A'Expecting numeric in M157 / R157C13: got '#N/A'Expecting numeric in C158 / R158C3: got '#N/A'Expecting numeric in D158 / R158C4: got '#N/A'Expecting numeric in E158 / R158C5: got '#N/A'Expecting numeric in F158 / R158C6: got '#N/A'Expecting numeric in G158 / R158C7: got '#N/A'Expecting numeric in J158 / R158C10: got '#N/A'Expecting numeric in K158 / R158C11: got '#N/A'Expecting numeric in L158 / R158C12: got '#N/A'Expecting numeric in M158 / R158C13: got '#N/A'Expecting numeric in C159 / R159C3: got '#N/A'Expecting numeric in D159 / R159C4: got '#N/A'Expecting numeric in E159 / R159C5: got '#N/A'Expecting numeric in F159 / R159C6: got '#N/A'Expecting numeric in G159 / R159C7: got '#N/A'Expecting numeric in J159 / R159C10: got '#N/A'Expecting numeric in K159 / R159C11: got '#N/A'Expecting numeric in L159 / R159C12: got '#N/A'Expecting numeric in M159 / R159C13: got '#N/A'Expecting numeric in C160 / R160C3: got '#N/A'Expecting numeric in D160 / R160C4: got '#N/A'Expecting numeric in E160 / R160C5: got '#N/A'Expecting numeric in F160 / R160C6: got '#N/A'Expecting numeric in G160 / R160C7: got '#N/A'Expecting numeric in J160 / R160C10: got '#N/A'Expecting numeric in K160 / R160C11: got '#N/A'Expecting numeric in L160 / R160C12: got '#N/A'Expecting numeric in M160 / R160C13: got '#N/A'Expecting numeric in C161 / R161C3: got '#N/A'Expecting numeric in D161 / R161C4: got '#N/A'Expecting numeric in E161 / R161C5: got '#N/A'Expecting numeric in F161 / R161C6: got '#N/A'Expecting numeric in G161 / R161C7: got '#N/A'Expecting numeric in J161 / R161C10: got '#N/A'Expecting numeric in K161 / R161C11: got '#N/A'Expecting numeric in L161 / R161C12: got '#N/A'Expecting numeric in M161 / R161C13: got '#N/A'Expecting numeric in C162 / R162C3: got '#N/A'Expecting numeric in D162 / R162C4: got '#N/A'Expecting numeric in E162 / R162C5: got '#N/A'Expecting numeric in F162 / R162C6: got '#N/A'Expecting numeric in G162 / R162C7: got '#N/A'Expecting numeric in J162 / R162C10: got '#N/A'Expecting numeric in K162 / R162C11: got '#N/A'Expecting numeric in L162 / R162C12: got '#N/A'Expecting numeric in M162 / R162C13: got '#N/A'Expecting numeric in C163 / R163C3: got '#N/A'Expecting numeric in D163 / R163C4: got '#N/A'Expecting numeric in E163 / R163C5: got '#N/A'Expecting numeric in F163 / R163C6: got '#N/A'Expecting numeric in G163 / R163C7: got '#N/A'Expecting numeric in J163 / R163C10: got '#N/A'Expecting numeric in K163 / R163C11: got '#N/A'Expecting numeric in L163 / R163C12: got '#N/A'Expecting numeric in M163 / R163C13: got '#N/A'Expecting numeric in C164 / R164C3: got '#N/A'Expecting numeric in D164 / R164C4: got '#N/A'Expecting numeric in E164 / R164C5: got '#N/A'Expecting numeric in F164 / R164C6: got '#N/A'Expecting numeric in G164 / R164C7: got '#N/A'Expecting numeric in J164 / R164C10: got '#N/A'Expecting numeric in K164 / R164C11: got '#N/A'Expecting numeric in L164 / R164C12: got '#N/A'Expecting numeric in M164 / R164C13: got '#N/A'Expecting numeric in C165 / R165C3: got '#N/A'Expecting numeric in D165 / R165C4: got '#N/A'Expecting numeric in E165 / R165C5: got '#N/A'Expecting numeric in F165 / R165C6: got '#N/A'Expecting numeric in G165 / R165C7: got '#N/A'Expecting numeric in J165 / R165C10: got '#N/A'Expecting numeric in K165 / R165C11: got '#N/A'Expecting numeric in L165 / R165C12: got '#N/A'Expecting numeric in M165 / R165C13: got '#N/A'Expecting numeric in C166 / R166C3: got '#N/A'Expecting numeric in D166 / R166C4: got '#N/A'Expecting numeric in E166 / R166C5: got '#N/A'Expecting numeric in F166 / R166C6: got '#N/A'Expecting numeric in G166 / R166C7: got '#N/A'Expecting numeric in J166 / R166C10: got '#N/A'Expecting numeric in K166 / R166C11: got '#N/A'Expecting numeric in L166 / R166C12: got '#N/A'Expecting numeric in M166 / R166C13: got '#N/A'Expecting numeric in C167 / R167C3: got '#N/A'Expecting numeric in D167 / R167C4: got '#N/A'Expecting numeric in E167 / R167C5: got '#N/A'Expecting numeric in F167 / R167C6: got '#N/A'Expecting numeric in G167 / R167C7: got '#N/A'Expecting numeric in J167 / R167C10: got '#N/A'Expecting numeric in K167 / R167C11: got '#N/A'Expecting numeric in L167 / R167C12: got '#N/A'Expecting numeric in M167 / R167C13: got '#N/A'Expecting numeric in C168 / R168C3: got '#N/A'Expecting numeric in D168 / R168C4: got '#N/A'Expecting numeric in E168 / R168C5: got '#N/A'Expecting numeric in F168 / R168C6: got '#N/A'Expecting numeric in G168 / R168C7: got '#N/A'Expecting numeric in J168 / R168C10: got '#N/A'Expecting numeric in K168 / R168C11: got '#N/A'Expecting numeric in L168 / R168C12: got '#N/A'Expecting numeric in M168 / R168C13: got '#N/A'Expecting numeric in C169 / R169C3: got '#N/A'Expecting numeric in D169 / R169C4: got '#N/A'Expecting numeric in E169 / R169C5: got '#N/A'Expecting numeric in F169 / R169C6: got '#N/A'Expecting numeric in G169 / R169C7: got '#N/A'Expecting numeric in J169 / R169C10: got '#N/A'Expecting numeric in K169 / R169C11: got '#N/A'Expecting numeric in L169 / R169C12: got '#N/A'Expecting numeric in M169 / R169C13: got '#N/A'Expecting numeric in C170 / R170C3: got '#N/A'Expecting numeric in D170 / R170C4: got '#N/A'Expecting numeric in E170 / R170C5: got '#N/A'Expecting numeric in F170 / R170C6: got '#N/A'Expecting numeric in G170 / R170C7: got '#N/A'Expecting numeric in J170 / R170C10: got '#N/A'Expecting numeric in K170 / R170C11: got '#N/A'Expecting numeric in L170 / R170C12: got '#N/A'Expecting numeric in M170 / R170C13: got '#N/A'Expecting numeric in C171 / R171C3: got '#N/A'Expecting numeric in D171 / R171C4: got '#N/A'Expecting numeric in E171 / R171C5: got '#N/A'Expecting numeric in F171 / R171C6: got '#N/A'Expecting numeric in G171 / R171C7: got '#N/A'Expecting numeric in J171 / R171C10: got '#N/A'Expecting numeric in K171 / R171C11: got '#N/A'Expecting numeric in L171 / R171C12: got '#N/A'Expecting numeric in M171 / R171C13: got '#N/A'Expecting numeric in C172 / R172C3: got '#N/A'Expecting numeric in D172 / R172C4: got '#N/A'Expecting numeric in E172 / R172C5: got '#N/A'Expecting numeric in F172 / R172C6: got '#N/A'Expecting numeric in G172 / R172C7: got '#N/A'Expecting numeric in J172 / R172C10: got '#N/A'Expecting numeric in K172 / R172C11: got '#N/A'Expecting numeric in L172 / R172C12: got '#N/A'Expecting numeric in M172 / R172C13: got '#N/A'Expecting numeric in C173 / R173C3: got '#N/A'Expecting numeric in D173 / R173C4: got '#N/A'Expecting numeric in E173 / R173C5: got '#N/A'Expecting numeric in F173 / R173C6: got '#N/A'Expecting numeric in G173 / R173C7: got '#N/A'Expecting numeric in J173 / R173C10: got '#N/A'Expecting numeric in K173 / R173C11: got '#N/A'Expecting numeric in L173 / R173C12: got '#N/A'Expecting numeric in M173 / R173C13: got '#N/A'Expecting numeric in C174 / R174C3: got '#N/A'Expecting numeric in D174 / R174C4: got '#N/A'Expecting numeric in E174 / R174C5: got '#N/A'Expecting numeric in F174 / R174C6: got '#N/A'Expecting numeric in G174 / R174C7: got '#N/A'Expecting numeric in J174 / R174C10: got '#N/A'Expecting numeric in K174 / R174C11: got '#N/A'Expecting numeric in L174 / R174C12: got '#N/A'Expecting numeric in M174 / R174C13: got '#N/A'Expecting numeric in C175 / R175C3: got '#N/A'Expecting numeric in D175 / R175C4: got '#N/A'Expecting numeric in E175 / R175C5: got '#N/A'Expecting numeric in F175 / R175C6: got '#N/A'Expecting numeric in G175 / R175C7: got '#N/A'Expecting numeric in J175 / R175C10: got '#N/A'Expecting numeric in K175 / R175C11: got '#N/A'Expecting numeric in L175 / R175C12: got '#N/A'Expecting numeric in M175 / R175C13: got '#N/A'Expecting numeric in C176 / R176C3: got '#N/A'Expecting numeric in D176 / R176C4: got '#N/A'Expecting numeric in E176 / R176C5: got '#N/A'Expecting numeric in F176 / R176C6: got '#N/A'Expecting numeric in G176 / R176C7: got '#N/A'Expecting numeric in J176 / R176C10: got '#N/A'Expecting numeric in K176 / R176C11: got '#N/A'Expecting numeric in L176 / R176C12: got '#N/A'Expecting numeric in M176 / R176C13: got '#N/A'Expecting numeric in C177 / R177C3: got '#N/A'Expecting numeric in D177 / R177C4: got '#N/A'Expecting numeric in E177 / R177C5: got '#N/A'Expecting numeric in F177 / R177C6: got '#N/A'Expecting numeric in G177 / R177C7: got '#N/A'Expecting numeric in J177 / R177C10: got '#N/A'Expecting numeric in K177 / R177C11: got '#N/A'Expecting numeric in L177 / R177C12: got '#N/A'Expecting numeric in M177 / R177C13: got '#N/A'Expecting numeric in C178 / R178C3: got '#N/A'Expecting numeric in D178 / R178C4: got '#N/A'Expecting numeric in E178 / R178C5: got '#N/A'Expecting numeric in F178 / R178C6: got '#N/A'Expecting numeric in G178 / R178C7: got '#N/A'Expecting numeric in J178 / R178C10: got '#N/A'Expecting numeric in K178 / R178C11: got '#N/A'Expecting numeric in L178 / R178C12: got '#N/A'Expecting numeric in M178 / R178C13: got '#N/A'Expecting numeric in C179 / R179C3: got '#N/A'Expecting numeric in D179 / R179C4: got '#N/A'Expecting numeric in E179 / R179C5: got '#N/A'Expecting numeric in F179 / R179C6: got '#N/A'Expecting numeric in G179 / R179C7: got '#N/A'Expecting numeric in J179 / R179C10: got '#N/A'Expecting numeric in K179 / R179C11: got '#N/A'Expecting numeric in L179 / R179C12: got '#N/A'Expecting numeric in M179 / R179C13: got '#N/A'Expecting numeric in C180 / R180C3: got '#N/A'Expecting numeric in D180 / R180C4: got '#N/A'Expecting numeric in E180 / R180C5: got '#N/A'Expecting numeric in F180 / R180C6: got '#N/A'Expecting numeric in G180 / R180C7: got '#N/A'Expecting numeric in J180 / R180C10: got '#N/A'Expecting numeric in K180 / R180C11: got '#N/A'Expecting numeric in L180 / R180C12: got '#N/A'Expecting numeric in M180 / R180C13: got '#N/A'Expecting numeric in C181 / R181C3: got '#N/A'Expecting numeric in D181 / R181C4: got '#N/A'Expecting numeric in E181 / R181C5: got '#N/A'Expecting numeric in F181 / R181C6: got '#N/A'Expecting numeric in G181 / R181C7: got '#N/A'Expecting numeric in J181 / R181C10: got '#N/A'Expecting numeric in K181 / R181C11: got '#N/A'Expecting numeric in L181 / R181C12: got '#N/A'Expecting numeric in M181 / R181C13: got '#N/A'Expecting numeric in C182 / R182C3: got '#N/A'Expecting numeric in D182 / R182C4: got '#N/A'Expecting numeric in E182 / R182C5: got '#N/A'Expecting numeric in F182 / R182C6: got '#N/A'Expecting numeric in G182 / R182C7: got '#N/A'Expecting numeric in J182 / R182C10: got '#N/A'Expecting numeric in K182 / R182C11: got '#N/A'Expecting numeric in L182 / R182C12: got '#N/A'Expecting numeric in M182 / R182C13: got '#N/A'Expecting numeric in C183 / R183C3: got '#N/A'Expecting numeric in D183 / R183C4: got '#N/A'Expecting numeric in E183 / R183C5: got '#N/A'Expecting numeric in F183 / R183C6: got '#N/A'Expecting numeric in G183 / R183C7: got '#N/A'Expecting numeric in J183 / R183C10: got '#N/A'Expecting numeric in K183 / R183C11: got '#N/A'Expecting numeric in L183 / R183C12: got '#N/A'Expecting numeric in M183 / R183C13: got '#N/A'Expecting numeric in C184 / R184C3: got '#N/A'Expecting numeric in D184 / R184C4: got '#N/A'Expecting numeric in E184 / R184C5: got '#N/A'Expecting numeric in F184 / R184C6: got '#N/A'Expecting numeric in G184 / R184C7: got '#N/A'Expecting numeric in J184 / R184C10: got '#N/A'Expecting numeric in K184 / R184C11: got '#N/A'Expecting numeric in L184 / R184C12: got '#N/A'Expecting numeric in M184 / R184C13: got '#N/A'Expecting numeric in C185 / R185C3: got '#N/A'Expecting numeric in D185 / R185C4: got '#N/A'Expecting numeric in E185 / R185C5: got '#N/A'Expecting numeric in F185 / R185C6: got '#N/A'Expecting numeric in G185 / R185C7: got '#N/A'Expecting numeric in J185 / R185C10: got '#N/A'Expecting numeric in K185 / R185C11: got '#N/A'Expecting numeric in L185 / R185C12: got '#N/A'Expecting numeric in M185 / R185C13: got '#N/A'Expecting numeric in C186 / R186C3: got '#N/A'Expecting numeric in D186 / R186C4: got '#N/A'Expecting numeric in E186 / R186C5: got '#N/A'Expecting numeric in F186 / R186C6: got '#N/A'Expecting numeric in G186 / R186C7: got '#N/A'Expecting numeric in J186 / R186C10: got '#N/A'Expecting numeric in K186 / R186C11: got '#N/A'Expecting numeric in L186 / R186C12: got '#N/A'Expecting numeric in M186 / R186C13: got '#N/A'Expecting numeric in C187 / R187C3: got '#N/A'Expecting numeric in D187 / R187C4: got '#N/A'Expecting numeric in E187 / R187C5: got '#N/A'Expecting numeric in F187 / R187C6: got '#N/A'Expecting numeric in G187 / R187C7: got '#N/A'Expecting numeric in J187 / R187C10: got '#N/A'Expecting numeric in K187 / R187C11: got '#N/A'Expecting numeric in L187 / R187C12: got '#N/A'Expecting numeric in M187 / R187C13: got '#N/A'Expecting numeric in C188 / R188C3: got '#N/A'Expecting numeric in D188 / R188C4: got '#N/A'Expecting numeric in E188 / R188C5: got '#N/A'Expecting numeric in F188 / R188C6: got '#N/A'Expecting numeric in G188 / R188C7: got '#N/A'Expecting numeric in J188 / R188C10: got '#N/A'Expecting numeric in K188 / R188C11: got '#N/A'Expecting numeric in L188 / R188C12: got '#N/A'Expecting numeric in M188 / R188C13: got '#N/A'Expecting numeric in C189 / R189C3: got '#N/A'Expecting numeric in D189 / R189C4: got '#N/A'Expecting numeric in E189 / R189C5: got '#N/A'Expecting numeric in F189 / R189C6: got '#N/A'Expecting numeric in G189 / R189C7: got '#N/A'Expecting numeric in J189 / R189C10: got '#N/A'Expecting numeric in K189 / R189C11: got '#N/A'Expecting numeric in L189 / R189C12: got '#N/A'Expecting numeric in M189 / R189C13: got '#N/A'Expecting numeric in C190 / R190C3: got '#N/A'Expecting numeric in D190 / R190C4: got '#N/A'Expecting numeric in E190 / R190C5: got '#N/A'Expecting numeric in F190 / R190C6: got '#N/A'Expecting numeric in G190 / R190C7: got '#N/A'Expecting numeric in J190 / R190C10: got '#N/A'Expecting numeric in K190 / R190C11: got '#N/A'Expecting numeric in L190 / R190C12: got '#N/A'Expecting numeric in M190 / R190C13: got '#N/A'Expecting numeric in C191 / R191C3: got '#N/A'Expecting numeric in D191 / R191C4: got '#N/A'Expecting numeric in E191 / R191C5: got '#N/A'Expecting numeric in F191 / R191C6: got '#N/A'Expecting numeric in G191 / R191C7: got '#N/A'Expecting numeric in J191 / R191C10: got '#N/A'Expecting numeric in K191 / R191C11: got '#N/A'Expecting numeric in L191 / R191C12: got '#N/A'Expecting numeric in M191 / R191C13: got '#N/A'Expecting numeric in C192 / R192C3: got '#N/A'Expecting numeric in D192 / R192C4: got '#N/A'Expecting numeric in E192 / R192C5: got '#N/A'Expecting numeric in F192 / R192C6: got '#N/A'Expecting numeric in G192 / R192C7: got '#N/A'Expecting numeric in J192 / R192C10: got '#N/A'Expecting numeric in K192 / R192C11: got '#N/A'Expecting numeric in L192 / R192C12: got '#N/A'Expecting numeric in M192 / R192C13: got '#N/A'Expecting numeric in C193 / R193C3: got '#N/A'Expecting numeric in D193 / R193C4: got '#N/A'Expecting numeric in E193 / R193C5: got '#N/A'Expecting numeric in F193 / R193C6: got '#N/A'Expecting numeric in G193 / R193C7: got '#N/A'Expecting numeric in J193 / R193C10: got '#N/A'Expecting numeric in K193 / R193C11: got '#N/A'Expecting numeric in L193 / R193C12: got '#N/A'Expecting numeric in M193 / R193C13: got '#N/A'Expecting numeric in C194 / R194C3: got '#N/A'Expecting numeric in D194 / R194C4: got '#N/A'Expecting numeric in E194 / R194C5: got '#N/A'Expecting numeric in F194 / R194C6: got '#N/A'Expecting numeric in G194 / R194C7: got '#N/A'Expecting numeric in J194 / R194C10: got '#N/A'Expecting numeric in K194 / R194C11: got '#N/A'Expecting numeric in L194 / R194C12: got '#N/A'Expecting numeric in M194 / R194C13: got '#N/A'Expecting numeric in C195 / R195C3: got '#N/A'Expecting numeric in D195 / R195C4: got '#N/A'Expecting numeric in E195 / R195C5: got '#N/A'Expecting numeric in F195 / R195C6: got '#N/A'Expecting numeric in G195 / R195C7: got '#N/A'Expecting numeric in J195 / R195C10: got '#N/A'Expecting numeric in K195 / R195C11: got '#N/A'Expecting numeric in L195 / R195C12: got '#N/A'Expecting numeric in M195 / R195C13: got '#N/A'Expecting numeric in C196 / R196C3: got '#N/A'Expecting numeric in D196 / R196C4: got '#N/A'Expecting numeric in E196 / R196C5: got '#N/A'Expecting numeric in F196 / R196C6: got '#N/A'Expecting numeric in G196 / R196C7: got '#N/A'Expecting numeric in J196 / R196C10: got '#N/A'Expecting numeric in K196 / R196C11: got '#N/A'Expecting numeric in L196 / R196C12: got '#N/A'Expecting numeric in M196 / R196C13: got '#N/A'Expecting numeric in C197 / R197C3: got '#N/A'Expecting numeric in D197 / R197C4: got '#N/A'Expecting numeric in E197 / R197C5: got '#N/A'Expecting numeric in F197 / R197C6: got '#N/A'Expecting numeric in G197 / R197C7: got '#N/A'Expecting numeric in J197 / R197C10: got '#N/A'Expecting numeric in K197 / R197C11: got '#N/A'Expecting numeric in L197 / R197C12: got '#N/A'Expecting numeric in M197 / R197C13: got '#N/A'Expecting numeric in C198 / R198C3: got '#N/A'Expecting numeric in D198 / R198C4: got '#N/A'Expecting numeric in E198 / R198C5: got '#N/A'Expecting numeric in F198 / R198C6: got '#N/A'Expecting numeric in G198 / R198C7: got '#N/A'Expecting numeric in J198 / R198C10: got '#N/A'Expecting numeric in K198 / R198C11: got '#N/A'Expecting numeric in L198 / R198C12: got '#N/A'Expecting numeric in M198 / R198C13: got '#N/A'Expecting numeric in C199 / R199C3: got '#N/A'Expecting numeric in D199 / R199C4: got '#N/A'Expecting numeric in E199 / R199C5: got '#N/A'Expecting numeric in F199 / R199C6: got '#N/A'Expecting numeric in G199 / R199C7: got '#N/A'Expecting numeric in J199 / R199C10: got '#N/A'Expecting numeric in K199 / R199C11: got '#N/A'Expecting numeric in L199 / R199C12: got '#N/A'Expecting numeric in M199 / R199C13: got '#N/A'Expecting numeric in C200 / R200C3: got '#N/A'Expecting numeric in D200 / R200C4: got '#N/A'Expecting numeric in E200 / R200C5: got '#N/A'Expecting numeric in F200 / R200C6: got '#N/A'Expecting numeric in G200 / R200C7: got '#N/A'Expecting numeric in J200 / R200C10: got '#N/A'Expecting numeric in K200 / R200C11: got '#N/A'Expecting numeric in L200 / R200C12: got '#N/A'Expecting numeric in M200 / R200C13: got '#N/A'Expecting numeric in C201 / R201C3: got '#N/A'Expecting numeric in D201 / R201C4: got '#N/A'Expecting numeric in E201 / R201C5: got '#N/A'Expecting numeric in F201 / R201C6: got '#N/A'Expecting numeric in G201 / R201C7: got '#N/A'Expecting numeric in J201 / R201C10: got '#N/A'Expecting numeric in K201 / R201C11: got '#N/A'Expecting numeric in L201 / R201C12: got '#N/A'Expecting numeric in M201 / R201C13: got '#N/A'Expecting numeric in C202 / R202C3: got '#N/A'Expecting numeric in D202 / R202C4: got '#N/A'Expecting numeric in E202 / R202C5: got '#N/A'Expecting numeric in F202 / R202C6: got '#N/A'Expecting numeric in G202 / R202C7: got '#N/A'Expecting numeric in J202 / R202C10: got '#N/A'Expecting numeric in K202 / R202C11: got '#N/A'Expecting numeric in L202 / R202C12: got '#N/A'Expecting numeric in M202 / R202C13: got '#N/A'Expecting numeric in C203 / R203C3: got '#N/A'Expecting numeric in D203 / R203C4: got '#N/A'Expecting numeric in E203 / R203C5: got '#N/A'Expecting numeric in F203 / R203C6: got '#N/A'Expecting numeric in G203 / R203C7: got '#N/A'Expecting numeric in J203 / R203C10: got '#N/A'Expecting numeric in K203 / R203C11: got '#N/A'Expecting numeric in L203 / R203C12: got '#N/A'Expecting numeric in M203 / R203C13: got '#N/A'Expecting numeric in C204 / R204C3: got '#N/A'Expecting numeric in D204 / R204C4: got '#N/A'Expecting numeric in E204 / R204C5: got '#N/A'Expecting numeric in F204 / R204C6: got '#N/A'Expecting numeric in G204 / R204C7: got '#N/A'Expecting numeric in J204 / R204C10: got '#N/A'Expecting numeric in K204 / R204C11: got '#N/A'Expecting numeric in L204 / R204C12: got '#N/A'Expecting numeric in M204 / R204C13: got '#N/A'Expecting numeric in C205 / R205C3: got '#N/A'Expecting numeric in D205 / R205C4: got '#N/A'Expecting numeric in E205 / R205C5: got '#N/A'Expecting numeric in F205 / R205C6: got '#N/A'Expecting numeric in G205 / R205C7: got '#N/A'Expecting numeric in J205 / R205C10: got '#N/A'Expecting numeric in K205 / R205C11: got '#N/A'Expecting numeric in L205 / R205C12: got '#N/A'Expecting numeric in M205 / R205C13: got '#N/A'Expecting numeric in C206 / R206C3: got '#N/A'Expecting numeric in D206 / R206C4: got '#N/A'Expecting numeric in E206 / R206C5: got '#N/A'Expecting numeric in F206 / R206C6: got '#N/A'Expecting numeric in G206 / R206C7: got '#N/A'Expecting numeric in J206 / R206C10: got '#N/A'Expecting numeric in K206 / R206C11: got '#N/A'Expecting numeric in L206 / R206C12: got '#N/A'Expecting numeric in M206 / R206C13: got '#N/A'Expecting numeric in C207 / R207C3: got '#N/A'Expecting numeric in D207 / R207C4: got '#N/A'Expecting numeric in E207 / R207C5: got '#N/A'Expecting numeric in F207 / R207C6: got '#N/A'Expecting numeric in G207 / R207C7: got '#N/A'Expecting numeric in J207 / R207C10: got '#N/A'Expecting numeric in K207 / R207C11: got '#N/A'Expecting numeric in L207 / R207C12: got '#N/A'Expecting numeric in M207 / R207C13: got '#N/A'Expecting numeric in C208 / R208C3: got '#N/A'Expecting numeric in D208 / R208C4: got '#N/A'Expecting numeric in E208 / R208C5: got '#N/A'Expecting numeric in F208 / R208C6: got '#N/A'Expecting numeric in G208 / R208C7: got '#N/A'Expecting numeric in J208 / R208C10: got '#N/A'Expecting numeric in K208 / R208C11: got '#N/A'Expecting numeric in L208 / R208C12: got '#N/A'Expecting numeric in M208 / R208C13: got '#N/A'Expecting numeric in C209 / R209C3: got '#N/A'Expecting numeric in D209 / R209C4: got '#N/A'Expecting numeric in E209 / R209C5: got '#N/A'Expecting numeric in F209 / R209C6: got '#N/A'Expecting numeric in G209 / R209C7: got '#N/A'Expecting numeric in J209 / R209C10: got '#N/A'Expecting numeric in K209 / R209C11: got '#N/A'Expecting numeric in L209 / R209C12: got '#N/A'Expecting numeric in M209 / R209C13: got '#N/A'Expecting numeric in C210 / R210C3: got '#N/A'Expecting numeric in D210 / R210C4: got '#N/A'Expecting numeric in E210 / R210C5: got '#N/A'Expecting numeric in F210 / R210C6: got '#N/A'Expecting numeric in G210 / R210C7: got '#N/A'Expecting numeric in J210 / R210C10: got '#N/A'Expecting numeric in K210 / R210C11: got '#N/A'Expecting numeric in L210 / R210C12: got '#N/A'Expecting numeric in M210 / R210C13: got '#N/A'Expecting numeric in C211 / R211C3: got '#N/A'Expecting numeric in D211 / R211C4: got '#N/A'Expecting numeric in E211 / R211C5: got '#N/A'Expecting numeric in F211 / R211C6: got '#N/A'Expecting numeric in G211 / R211C7: got '#N/A'Expecting numeric in J211 / R211C10: got '#N/A'Expecting numeric in K211 / R211C11: got '#N/A'Expecting numeric in L211 / R211C12: got '#N/A'Expecting numeric in M211 / R211C13: got '#N/A'Expecting numeric in C212 / R212C3: got '#N/A'Expecting numeric in D212 / R212C4: got '#N/A'Expecting numeric in E212 / R212C5: got '#N/A'Expecting numeric in F212 / R212C6: got '#N/A'Expecting numeric in G212 / R212C7: got '#N/A'Expecting numeric in J212 / R212C10: got '#N/A'Expecting numeric in K212 / R212C11: got '#N/A'Expecting numeric in L212 / R212C12: got '#N/A'Expecting numeric in M212 / R212C13: got '#N/A'Expecting numeric in C213 / R213C3: got '#N/A'Expecting numeric in D213 / R213C4: got '#N/A'Expecting numeric in E213 / R213C5: got '#N/A'Expecting numeric in F213 / R213C6: got '#N/A'Expecting numeric in G213 / R213C7: got '#N/A'Expecting numeric in J213 / R213C10: got '#N/A'Expecting numeric in K213 / R213C11: got '#N/A'Expecting numeric in L213 / R213C12: got '#N/A'Expecting numeric in M213 / R213C13: got '#N/A'Expecting numeric in C214 / R214C3: got '#N/A'Expecting numeric in D214 / R214C4: got '#N/A'Expecting numeric in E214 / R214C5: got '#N/A'Expecting numeric in F214 / R214C6: got '#N/A'Expecting numeric in G214 / R214C7: got '#N/A'Expecting numeric in J214 / R214C10: got '#N/A'Expecting numeric in K214 / R214C11: got '#N/A'Expecting numeric in L214 / R214C12: got '#N/A'Expecting numeric in M214 / R214C13: got '#N/A'Expecting numeric in C215 / R215C3: got '#N/A'Expecting numeric in D215 / R215C4: got '#N/A'Expecting numeric in E215 / R215C5: got '#N/A'Expecting numeric in F215 / R215C6: got '#N/A'Expecting numeric in G215 / R215C7: got '#N/A'Expecting numeric in J215 / R215C10: got '#N/A'Expecting numeric in K215 / R215C11: got '#N/A'Expecting numeric in L215 / R215C12: got '#N/A'Expecting numeric in M215 / R215C13: got '#N/A'Expecting numeric in C216 / R216C3: got '#N/A'Expecting numeric in D216 / R216C4: got '#N/A'Expecting numeric in E216 / R216C5: got '#N/A'Expecting numeric in F216 / R216C6: got '#N/A'Expecting numeric in G216 / R216C7: got '#N/A'Expecting numeric in J216 / R216C10: got '#N/A'Expecting numeric in K216 / R216C11: got '#N/A'Expecting numeric in L216 / R216C12: got '#N/A'Expecting numeric in M216 / R216C13: got '#N/A'Expecting numeric in C217 / R217C3: got '#N/A'Expecting numeric in D217 / R217C4: got '#N/A'Expecting numeric in E217 / R217C5: got '#N/A'Expecting numeric in F217 / R217C6: got '#N/A'Expecting numeric in G217 / R217C7: got '#N/A'Expecting numeric in J217 / R217C10: got '#N/A'Expecting numeric in K217 / R217C11: got '#N/A'Expecting numeric in L217 / R217C12: got '#N/A'Expecting numeric in M217 / R217C13: got '#N/A'Expecting numeric in C218 / R218C3: got '#N/A'Expecting numeric in D218 / R218C4: got '#N/A'Expecting numeric in E218 / R218C5: got '#N/A'Expecting numeric in F218 / R218C6: got '#N/A'Expecting numeric in G218 / R218C7: got '#N/A'Expecting numeric in J218 / R218C10: got '#N/A'Expecting numeric in K218 / R218C11: got '#N/A'Expecting numeric in L218 / R218C12: got '#N/A'Expecting numeric in M218 / R218C13: got '#N/A'Expecting numeric in C219 / R219C3: got '#N/A'Expecting numeric in D219 / R219C4: got '#N/A'Expecting numeric in E219 / R219C5: got '#N/A'Expecting numeric in F219 / R219C6: got '#N/A'Expecting numeric in G219 / R219C7: got '#N/A'Expecting numeric in J219 / R219C10: got '#N/A'Expecting numeric in K219 / R219C11: got '#N/A'Expecting numeric in L219 / R219C12: got '#N/A'Expecting numeric in M219 / R219C13: got '#N/A'Expecting numeric in C220 / R220C3: got '#N/A'Expecting numeric in D220 / R220C4: got '#N/A'Expecting numeric in E220 / R220C5: got '#N/A'Expecting numeric in F220 / R220C6: got '#N/A'Expecting numeric in G220 / R220C7: got '#N/A'Expecting numeric in J220 / R220C10: got '#N/A'Expecting numeric in K220 / R220C11: got '#N/A'Expecting numeric in L220 / R220C12: got '#N/A'Expecting numeric in M220 / R220C13: got '#N/A'Expecting numeric in C221 / R221C3: got '#N/A'Expecting numeric in D221 / R221C4: got '#N/A'Expecting numeric in E221 / R221C5: got '#N/A'Expecting numeric in F221 / R221C6: got '#N/A'Expecting numeric in G221 / R221C7: got '#N/A'Expecting numeric in J221 / R221C10: got '#N/A'Expecting numeric in K221 / R221C11: got '#N/A'Expecting numeric in L221 / R221C12: got '#N/A'Expecting numeric in M221 / R221C13: got '#N/A'Expecting numeric in C222 / R222C3: got '#N/A'Expecting numeric in D222 / R222C4: got '#N/A'Expecting numeric in E222 / R222C5: got '#N/A'Expecting numeric in F222 / R222C6: got '#N/A'Expecting numeric in G222 / R222C7: got '#N/A'Expecting numeric in J222 / R222C10: got '#N/A'Expecting numeric in K222 / R222C11: got '#N/A'Expecting numeric in L222 / R222C12: got '#N/A'Expecting numeric in M222 / R222C13: got '#N/A'Expecting numeric in C223 / R223C3: got '#N/A'Expecting numeric in D223 / R223C4: got '#N/A'Expecting numeric in E223 / R223C5: got '#N/A'Expecting numeric in F223 / R223C6: got '#N/A'Expecting numeric in G223 / R223C7: got '#N/A'Expecting numeric in J223 / R223C10: got '#N/A'Expecting numeric in K223 / R223C11: got '#N/A'Expecting numeric in L223 / R223C12: got '#N/A'Expecting numeric in M223 / R223C13: got '#N/A'Expecting numeric in C224 / R224C3: got '#N/A'Expecting numeric in D224 / R224C4: got '#N/A'Expecting numeric in E224 / R224C5: got '#N/A'Expecting numeric in F224 / R224C6: got '#N/A'Expecting numeric in G224 / R224C7: got '#N/A'Expecting numeric in J224 / R224C10: got '#N/A'Expecting numeric in K224 / R224C11: got '#N/A'Expecting numeric in L224 / R224C12: got '#N/A'Expecting numeric in M224 / R224C13: got '#N/A'Expecting numeric in C225 / R225C3: got '#N/A'Expecting numeric in D225 / R225C4: got '#N/A'Expecting numeric in E225 / R225C5: got '#N/A'Expecting numeric in F225 / R225C6: got '#N/A'Expecting numeric in G225 / R225C7: got '#N/A'Expecting numeric in J225 / R225C10: got '#N/A'Expecting numeric in K225 / R225C11: got '#N/A'Expecting numeric in L225 / R225C12: got '#N/A'Expecting numeric in M225 / R225C13: got '#N/A'Expecting numeric in C226 / R226C3: got '#N/A'Expecting numeric in D226 / R226C4: got '#N/A'Expecting numeric in E226 / R226C5: got '#N/A'Expecting numeric in F226 / R226C6: got '#N/A'Expecting numeric in G226 / R226C7: got '#N/A'Expecting numeric in J226 / R226C10: got '#N/A'Expecting numeric in K226 / R226C11: got '#N/A'Expecting numeric in L226 / R226C12: got '#N/A'Expecting numeric in M226 / R226C13: got '#N/A'Expecting numeric in C227 / R227C3: got '#N/A'Expecting numeric in D227 / R227C4: got '#N/A'Expecting numeric in E227 / R227C5: got '#N/A'Expecting numeric in F227 / R227C6: got '#N/A'Expecting numeric in G227 / R227C7: got '#N/A'Expecting numeric in J227 / R227C10: got '#N/A'Expecting numeric in K227 / R227C11: got '#N/A'Expecting numeric in L227 / R227C12: got '#N/A'Expecting numeric in M227 / R227C13: got '#N/A'Expecting numeric in C228 / R228C3: got '#N/A'Expecting numeric in D228 / R228C4: got '#N/A'Expecting numeric in E228 / R228C5: got '#N/A'Expecting numeric in F228 / R228C6: got '#N/A'Expecting numeric in G228 / R228C7: got '#N/A'Expecting numeric in J228 / R228C10: got '#N/A'Expecting numeric in K228 / R228C11: got '#N/A'Expecting numeric in L228 / R228C12: got '#N/A'Expecting numeric in M228 / R228C13: got '#N/A'Expecting numeric in C229 / R229C3: got '#N/A'Expecting numeric in D229 / R229C4: got '#N/A'Expecting numeric in E229 / R229C5: got '#N/A'Expecting numeric in F229 / R229C6: got '#N/A'Expecting numeric in G229 / R229C7: got '#N/A'Expecting numeric in J229 / R229C10: got '#N/A'Expecting numeric in K229 / R229C11: got '#N/A'Expecting numeric in L229 / R229C12: got '#N/A'Expecting numeric in M229 / R229C13: got '#N/A'Expecting numeric in C230 / R230C3: got '#N/A'Expecting numeric in D230 / R230C4: got '#N/A'Expecting numeric in E230 / R230C5: got '#N/A'Expecting numeric in F230 / R230C6: got '#N/A'Expecting numeric in G230 / R230C7: got '#N/A'Expecting numeric in J230 / R230C10: got '#N/A'Expecting numeric in K230 / R230C11: got '#N/A'Expecting numeric in L230 / R230C12: got '#N/A'Expecting numeric in M230 / R230C13: got '#N/A'Expecting numeric in C231 / R231C3: got '#N/A'Expecting numeric in D231 / R231C4: got '#N/A'Expecting numeric in E231 / R231C5: got '#N/A'Expecting numeric in F231 / R231C6: got '#N/A'Expecting numeric in G231 / R231C7: got '#N/A'Expecting numeric in J231 / R231C10: got '#N/A'Expecting numeric in K231 / R231C11: got '#N/A'Expecting numeric in L231 / R231C12: got '#N/A'Expecting numeric in M231 / R231C13: got '#N/A'Expecting numeric in C232 / R232C3: got '#N/A'Expecting numeric in D232 / R232C4: got '#N/A'Expecting numeric in E232 / R232C5: got '#N/A'Expecting numeric in F232 / R232C6: got '#N/A'Expecting numeric in G232 / R232C7: got '#N/A'Expecting numeric in J232 / R232C10: got '#N/A'Expecting numeric in K232 / R232C11: got '#N/A'Expecting numeric in L232 / R232C12: got '#N/A'Expecting numeric in M232 / R232C13: got '#N/A'Expecting numeric in C233 / R233C3: got '#N/A'Expecting numeric in D233 / R233C4: got '#N/A'Expecting numeric in E233 / R233C5: got '#N/A'Expecting numeric in F233 / R233C6: got '#N/A'Expecting numeric in G233 / R233C7: got '#N/A'Expecting numeric in J233 / R233C10: got '#N/A'Expecting numeric in K233 / R233C11: got '#N/A'Expecting numeric in L233 / R233C12: got '#N/A'Expecting numeric in M233 / R233C13: got '#N/A'Expecting numeric in C234 / R234C3: got '#N/A'Expecting numeric in D234 / R234C4: got '#N/A'Expecting numeric in E234 / R234C5: got '#N/A'Expecting numeric in F234 / R234C6: got '#N/A'Expecting numeric in G234 / R234C7: got '#N/A'Expecting numeric in J234 / R234C10: got '#N/A'Expecting numeric in K234 / R234C11: got '#N/A'Expecting numeric in L234 / R234C12: got '#N/A'Expecting numeric in M234 / R234C13: got '#N/A'Expecting numeric in C235 / R235C3: got '#N/A'Expecting numeric in D235 / R235C4: got '#N/A'Expecting numeric in E235 / R235C5: got '#N/A'Expecting numeric in F235 / R235C6: got '#N/A'Expecting numeric in G235 / R235C7: got '#N/A'Expecting numeric in J235 / R235C10: got '#N/A'Expecting numeric in K235 / R235C11: got '#N/A'Expecting numeric in L235 / R235C12: got '#N/A'Expecting numeric in M235 / R235C13: got '#N/A'Expecting numeric in C236 / R236C3: got '#N/A'Expecting numeric in D236 / R236C4: got '#N/A'Expecting numeric in E236 / R236C5: got '#N/A'Expecting numeric in F236 / R236C6: got '#N/A'Expecting numeric in G236 / R236C7: got '#N/A'Expecting numeric in J236 / R236C10: got '#N/A'Expecting numeric in K236 / R236C11: got '#N/A'Expecting numeric in L236 / R236C12: got '#N/A'Expecting numeric in M236 / R236C13: got '#N/A'Expecting numeric in C237 / R237C3: got '#N/A'Expecting numeric in D237 / R237C4: got '#N/A'Expecting numeric in E237 / R237C5: got '#N/A'Expecting numeric in F237 / R237C6: got '#N/A'Expecting numeric in G237 / R237C7: got '#N/A'Expecting numeric in J237 / R237C10: got '#N/A'Expecting numeric in K237 / R237C11: got '#N/A'Expecting numeric in L237 / R237C12: got '#N/A'Expecting numeric in M237 / R237C13: got '#N/A'Expecting numeric in C238 / R238C3: got '#N/A'Expecting numeric in D238 / R238C4: got '#N/A'Expecting numeric in E238 / R238C5: got '#N/A'Expecting numeric in F238 / R238C6: got '#N/A'Expecting numeric in G238 / R238C7: got '#N/A'Expecting numeric in J238 / R238C10: got '#N/A'Expecting numeric in K238 / R238C11: got '#N/A'Expecting numeric in L238 / R238C12: got '#N/A'Expecting numeric in M238 / R238C13: got '#N/A'Expecting numeric in C239 / R239C3: got '#N/A'Expecting numeric in D239 / R239C4: got '#N/A'Expecting numeric in E239 / R239C5: got '#N/A'Expecting numeric in F239 / R239C6: got '#N/A'Expecting numeric in G239 / R239C7: got '#N/A'Expecting numeric in J239 / R239C10: got '#N/A'Expecting numeric in K239 / R239C11: got '#N/A'Expecting numeric in L239 / R239C12: got '#N/A'Expecting numeric in M239 / R239C13: got '#N/A'Expecting numeric in C240 / R240C3: got '#N/A'Expecting numeric in D240 / R240C4: got '#N/A'Expecting numeric in E240 / R240C5: got '#N/A'Expecting numeric in F240 / R240C6: got '#N/A'Expecting numeric in G240 / R240C7: got '#N/A'Expecting numeric in J240 / R240C10: got '#N/A'Expecting numeric in K240 / R240C11: got '#N/A'Expecting numeric in L240 / R240C12: got '#N/A'Expecting numeric in M240 / R240C13: got '#N/A'Expecting numeric in C241 / R241C3: got '#N/A'Expecting numeric in D241 / R241C4: got '#N/A'Expecting numeric in E241 / R241C5: got '#N/A'Expecting numeric in F241 / R241C6: got '#N/A'Expecting numeric in G241 / R241C7: got '#N/A'Expecting numeric in J241 / R241C10: got '#N/A'Expecting numeric in K241 / R241C11: got '#N/A'Expecting numeric in L241 / R241C12: got '#N/A'Expecting numeric in M241 / R241C13: got '#N/A'Expecting numeric in C242 / R242C3: got '#N/A'Expecting numeric in D242 / R242C4: got '#N/A'Expecting numeric in E242 / R242C5: got '#N/A'Expecting numeric in F242 / R242C6: got '#N/A'Expecting numeric in G242 / R242C7: got '#N/A'Expecting numeric in J242 / R242C10: got '#N/A'Expecting numeric in K242 / R242C11: got '#N/A'Expecting numeric in L242 / R242C12: got '#N/A'Expecting numeric in M242 / R242C13: got '#N/A'Expecting numeric in C243 / R243C3: got '#N/A'Expecting numeric in D243 / R243C4: got '#N/A'Expecting numeric in E243 / R243C5: got '#N/A'Expecting numeric in F243 / R243C6: got '#N/A'Expecting numeric in G243 / R243C7: got '#N/A'Expecting numeric in J243 / R243C10: got '#N/A'Expecting numeric in K243 / R243C11: got '#N/A'Expecting numeric in L243 / R243C12: got '#N/A'Expecting numeric in M243 / R243C13: got '#N/A'Expecting numeric in C244 / R244C3: got '#N/A'Expecting numeric in D244 / R244C4: got '#N/A'Expecting numeric in E244 / R244C5: got '#N/A'Expecting numeric in F244 / R244C6: got '#N/A'Expecting numeric in G244 / R244C7: got '#N/A'Expecting numeric in J244 / R244C10: got '#N/A'Expecting numeric in K244 / R244C11: got '#N/A'Expecting numeric in L244 / R244C12: got '#N/A'Expecting numeric in M244 / R244C13: got '#N/A'Expecting numeric in C245 / R245C3: got '#N/A'Expecting numeric in D245 / R245C4: got '#N/A'Expecting numeric in E245 / R245C5: got '#N/A'Expecting numeric in F245 / R245C6: got '#N/A'Expecting numeric in G245 / R245C7: got '#N/A'Expecting numeric in J245 / R245C10: got '#N/A'Expecting numeric in K245 / R245C11: got '#N/A'Expecting numeric in L245 / R245C12: got '#N/A'Expecting numeric in M245 / R245C13: got '#N/A'Expecting numeric in C246 / R246C3: got '#N/A'Expecting numeric in D246 / R246C4: got '#N/A'Expecting numeric in E246 / R246C5: got '#N/A'Expecting numeric in F246 / R246C6: got '#N/A'Expecting numeric in G246 / R246C7: got '#N/A'Expecting numeric in J246 / R246C10: got '#N/A'Expecting numeric in K246 / R246C11: got '#N/A'Expecting numeric in L246 / R246C12: got '#N/A'Expecting numeric in M246 / R246C13: got '#N/A'Expecting numeric in C247 / R247C3: got '#N/A'Expecting numeric in D247 / R247C4: got '#N/A'Expecting numeric in E247 / R247C5: got '#N/A'Expecting numeric in F247 / R247C6: got '#N/A'Expecting numeric in G247 / R247C7: got '#N/A'Expecting numeric in J247 / R247C10: got '#N/A'Expecting numeric in K247 / R247C11: got '#N/A'Expecting numeric in L247 / R247C12: got '#N/A'Expecting numeric in M247 / R247C13: got '#N/A'Expecting numeric in C248 / R248C3: got '#N/A'Expecting numeric in D248 / R248C4: got '#N/A'Expecting numeric in E248 / R248C5: got '#N/A'Expecting numeric in F248 / R248C6: got '#N/A'Expecting numeric in G248 / R248C7: got '#N/A'Expecting numeric in J248 / R248C10: got '#N/A'Expecting numeric in K248 / R248C11: got '#N/A'Expecting numeric in L248 / R248C12: got '#N/A'Expecting numeric in M248 / R248C13: got '#N/A'Expecting numeric in C249 / R249C3: got '#N/A'Expecting numeric in D249 / R249C4: got '#N/A'Expecting numeric in E249 / R249C5: got '#N/A'Expecting numeric in F249 / R249C6: got '#N/A'Expecting numeric in G249 / R249C7: got '#N/A'Expecting numeric in J249 / R249C10: got '#N/A'Expecting numeric in K249 / R249C11: got '#N/A'Expecting numeric in L249 / R249C12: got '#N/A'Expecting numeric in M249 / R249C13: got '#N/A'Expecting numeric in C250 / R250C3: got '#N/A'Expecting numeric in D250 / R250C4: got '#N/A'Expecting numeric in E250 / R250C5: got '#N/A'Expecting numeric in F250 / R250C6: got '#N/A'Expecting numeric in G250 / R250C7: got '#N/A'Expecting numeric in J250 / R250C10: got '#N/A'Expecting numeric in K250 / R250C11: got '#N/A'Expecting numeric in L250 / R250C12: got '#N/A'Expecting numeric in M250 / R250C13: got '#N/A'Expecting numeric in C251 / R251C3: got '#N/A'Expecting numeric in D251 / R251C4: got '#N/A'Expecting numeric in E251 / R251C5: got '#N/A'Expecting numeric in F251 / R251C6: got '#N/A'Expecting numeric in G251 / R251C7: got '#N/A'Expecting numeric in J251 / R251C10: got '#N/A'Expecting numeric in K251 / R251C11: got '#N/A'Expecting numeric in L251 / R251C12: got '#N/A'Expecting numeric in M251 / R251C13: got '#N/A'Expecting numeric in C252 / R252C3: got '#N/A'Expecting numeric in D252 / R252C4: got '#N/A'Expecting numeric in E252 / R252C5: got '#N/A'Expecting numeric in F252 / R252C6: got '#N/A'Expecting numeric in G252 / R252C7: got '#N/A'Expecting numeric in J252 / R252C10: got '#N/A'Expecting numeric in K252 / R252C11: got '#N/A'Expecting numeric in L252 / R252C12: got '#N/A'Expecting numeric in M252 / R252C13: got '#N/A'Expecting numeric in C253 / R253C3: got '#N/A'Expecting numeric in D253 / R253C4: got '#N/A'Expecting numeric in E253 / R253C5: got '#N/A'Expecting numeric in F253 / R253C6: got '#N/A'Expecting numeric in G253 / R253C7: got '#N/A'Expecting numeric in J253 / R253C10: got '#N/A'Expecting numeric in K253 / R253C11: got '#N/A'Expecting numeric in L253 / R253C12: got '#N/A'Expecting numeric in M253 / R253C13: got '#N/A'Expecting numeric in C254 / R254C3: got '#N/A'Expecting numeric in D254 / R254C4: got '#N/A'Expecting numeric in E254 / R254C5: got '#N/A'Expecting numeric in F254 / R254C6: got '#N/A'Expecting numeric in G254 / R254C7: got '#N/A'Expecting numeric in J254 / R254C10: got '#N/A'Expecting numeric in K254 / R254C11: got '#N/A'Expecting numeric in L254 / R254C12: got '#N/A'Expecting numeric in M254 / R254C13: got '#N/A'Expecting numeric in C255 / R255C3: got '#N/A'Expecting numeric in D255 / R255C4: got '#N/A'Expecting numeric in E255 / R255C5: got '#N/A'Expecting numeric in F255 / R255C6: got '#N/A'Expecting numeric in G255 / R255C7: got '#N/A'Expecting numeric in J255 / R255C10: got '#N/A'Expecting numeric in K255 / R255C11: got '#N/A'Expecting numeric in L255 / R255C12: got '#N/A'Expecting numeric in M255 / R255C13: got '#N/A'Expecting numeric in C256 / R256C3: got '#N/A'Expecting numeric in D256 / R256C4: got '#N/A'Expecting numeric in E256 / R256C5: got '#N/A'Expecting numeric in F256 / R256C6: got '#N/A'Expecting numeric in G256 / R256C7: got '#N/A'Expecting numeric in J256 / R256C10: got '#N/A'Expecting numeric in K256 / R256C11: got '#N/A'Expecting numeric in L256 / R256C12: got '#N/A'Expecting numeric in M256 / R256C13: got '#N/A'Expecting numeric in C257 / R257C3: got '#N/A'Expecting numeric in D257 / R257C4: got '#N/A'Expecting numeric in E257 / R257C5: got '#N/A'Expecting numeric in F257 / R257C6: got '#N/A'Expecting numeric in G257 / R257C7: got '#N/A'Expecting numeric in J257 / R257C10: got '#N/A'Expecting numeric in K257 / R257C11: got '#N/A'Expecting numeric in L257 / R257C12: got '#N/A'Expecting numeric in M257 / R257C13: got '#N/A'Expecting numeric in C258 / R258C3: got '#N/A'Expecting numeric in D258 / R258C4: got '#N/A'Expecting numeric in E258 / R258C5: got '#N/A'Expecting numeric in F258 / R258C6: got '#N/A'Expecting numeric in G258 / R258C7: got '#N/A'Expecting numeric in J258 / R258C10: got '#N/A'Expecting numeric in K258 / R258C11: got '#N/A'Expecting numeric in L258 / R258C12: got '#N/A'Expecting numeric in M258 / R258C13: got '#N/A'Expecting numeric in C259 / R259C3: got '#N/A'Expecting numeric in D259 / R259C4: got '#N/A'Expecting numeric in E259 / R259C5: got '#N/A'Expecting numeric in F259 / R259C6: got '#N/A'Expecting numeric in G259 / R259C7: got '#N/A'Expecting numeric in J259 / R259C10: got '#N/A'Expecting numeric in K259 / R259C11: got '#N/A'Expecting numeric in L259 / R259C12: got '#N/A'Expecting numeric in M259 / R259C13: got '#N/A'Expecting numeric in C260 / R260C3: got '#N/A'Expecting numeric in D260 / R260C4: got '#N/A'Expecting numeric in E260 / R260C5: got '#N/A'Expecting numeric in F260 / R260C6: got '#N/A'Expecting numeric in G260 / R260C7: got '#N/A'Expecting numeric in J260 / R260C10: got '#N/A'Expecting numeric in K260 / R260C11: got '#N/A'Expecting numeric in L260 / R260C12: got '#N/A'Expecting numeric in M260 / R260C13: got '#N/A'Expecting numeric in C261 / R261C3: got '#N/A'Expecting numeric in D261 / R261C4: got '#N/A'Expecting numeric in E261 / R261C5: got '#N/A'Expecting numeric in F261 / R261C6: got '#N/A'Expecting numeric in G261 / R261C7: got '#N/A'Expecting numeric in J261 / R261C10: got '#N/A'Expecting numeric in K261 / R261C11: got '#N/A'Expecting numeric in L261 / R261C12: got '#N/A'Expecting numeric in M261 / R261C13: got '#N/A'Expecting numeric in C262 / R262C3: got '#N/A'Expecting numeric in D262 / R262C4: got '#N/A'Expecting numeric in E262 / R262C5: got '#N/A'Expecting numeric in F262 / R262C6: got '#N/A'Expecting numeric in G262 / R262C7: got '#N/A'Expecting numeric in J262 / R262C10: got '#N/A'Expecting numeric in K262 / R262C11: got '#N/A'Expecting numeric in L262 / R262C12: got '#N/A'Expecting numeric in M262 / R262C13: got '#N/A'Expecting numeric in C263 / R263C3: got '#N/A'Expecting numeric in D263 / R263C4: got '#N/A'Expecting numeric in E263 / R263C5: got '#N/A'Expecting numeric in F263 / R263C6: got '#N/A'Expecting numeric in G263 / R263C7: got '#N/A'Expecting numeric in J263 / R263C10: got '#N/A'Expecting numeric in K263 / R263C11: got '#N/A'Expecting numeric in L263 / R263C12: got '#N/A'Expecting numeric in M263 / R263C13: got '#N/A'Expecting numeric in C264 / R264C3: got '#N/A'Expecting numeric in D264 / R264C4: got '#N/A'Expecting numeric in E264 / R264C5: got '#N/A'Expecting numeric in F264 / R264C6: got '#N/A'Expecting numeric in G264 / R264C7: got '#N/A'Expecting numeric in J264 / R264C10: got '#N/A'Expecting numeric in K264 / R264C11: got '#N/A'Expecting numeric in L264 / R264C12: got '#N/A'Expecting numeric in M264 / R264C13: got '#N/A'Expecting numeric in C265 / R265C3: got '#N/A'Expecting numeric in D265 / R265C4: got '#N/A'Expecting numeric in E265 / R265C5: got '#N/A'Expecting numeric in F265 / R265C6: got '#N/A'Expecting numeric in G265 / R265C7: got '#N/A'Expecting numeric in J265 / R265C10: got '#N/A'Expecting numeric in K265 / R265C11: got '#N/A'Expecting numeric in L265 / R265C12: got '#N/A'Expecting numeric in M265 / R265C13: got '#N/A'Expecting numeric in C266 / R266C3: got '#N/A'Expecting numeric in D266 / R266C4: got '#N/A'Expecting numeric in E266 / R266C5: got '#N/A'Expecting numeric in F266 / R266C6: got '#N/A'Expecting numeric in G266 / R266C7: got '#N/A'Expecting numeric in J266 / R266C10: got '#N/A'Expecting numeric in K266 / R266C11: got '#N/A'Expecting numeric in L266 / R266C12: got '#N/A'Expecting numeric in M266 / R266C13: got '#N/A'Expecting numeric in C267 / R267C3: got '#N/A'Expecting numeric in D267 / R267C4: got '#N/A'Expecting numeric in E267 / R267C5: got '#N/A'Expecting numeric in F267 / R267C6: got '#N/A'Expecting numeric in G267 / R267C7: got '#N/A'Expecting numeric in J267 / R267C10: got '#N/A'Expecting numeric in K267 / R267C11: got '#N/A'Expecting numeric in L267 / R267C12: got '#N/A'Expecting numeric in M267 / R267C13: got '#N/A'Expecting numeric in C268 / R268C3: got '#N/A'Expecting numeric in D268 / R268C4: got '#N/A'Expecting numeric in E268 / R268C5: got '#N/A'Expecting numeric in F268 / R268C6: got '#N/A'Expecting numeric in G268 / R268C7: got '#N/A'Expecting numeric in J268 / R268C10: got '#N/A'Expecting numeric in K268 / R268C11: got '#N/A'Expecting numeric in L268 / R268C12: got '#N/A'Expecting numeric in M268 / R268C13: got '#N/A'Expecting numeric in C269 / R269C3: got '#N/A'Expecting numeric in D269 / R269C4: got '#N/A'Expecting numeric in E269 / R269C5: got '#N/A'Expecting numeric in F269 / R269C6: got '#N/A'Expecting numeric in G269 / R269C7: got '#N/A'Expecting numeric in J269 / R269C10: got '#N/A'Expecting numeric in K269 / R269C11: got '#N/A'Expecting numeric in L269 / R269C12: got '#N/A'Expecting numeric in M269 / R269C13: got '#N/A'Expecting numeric in C270 / R270C3: got '#N/A'Expecting numeric in D270 / R270C4: got '#N/A'Expecting numeric in E270 / R270C5: got '#N/A'Expecting numeric in F270 / R270C6: got '#N/A'Expecting numeric in G270 / R270C7: got '#N/A'Expecting numeric in J270 / R270C10: got '#N/A'Expecting numeric in K270 / R270C11: got '#N/A'Expecting numeric in L270 / R270C12: got '#N/A'Expecting numeric in M270 / R270C13: got '#N/A'Expecting numeric in C271 / R271C3: got '#N/A'Expecting numeric in D271 / R271C4: got '#N/A'Expecting numeric in E271 / R271C5: got '#N/A'Expecting numeric in F271 / R271C6: got '#N/A'Expecting numeric in G271 / R271C7: got '#N/A'Expecting numeric in J271 / R271C10: got '#N/A'Expecting numeric in K271 / R271C11: got '#N/A'Expecting numeric in L271 / R271C12: got '#N/A'Expecting numeric in M271 / R271C13: got '#N/A'Expecting numeric in C272 / R272C3: got '#N/A'Expecting numeric in D272 / R272C4: got '#N/A'Expecting numeric in E272 / R272C5: got '#N/A'Expecting numeric in F272 / R272C6: got '#N/A'Expecting numeric in G272 / R272C7: got '#N/A'Expecting numeric in J272 / R272C10: got '#N/A'Expecting numeric in K272 / R272C11: got '#N/A'Expecting numeric in L272 / R272C12: got '#N/A'Expecting numeric in M272 / R272C13: got '#N/A'Expecting numeric in C273 / R273C3: got '#N/A'Expecting numeric in D273 / R273C4: got '#N/A'Expecting numeric in E273 / R273C5: got '#N/A'Expecting numeric in F273 / R273C6: got '#N/A'Expecting numeric in G273 / R273C7: got '#N/A'Expecting numeric in J273 / R273C10: got '#N/A'Expecting numeric in K273 / R273C11: got '#N/A'Expecting numeric in L273 / R273C12: got '#N/A'Expecting numeric in M273 / R273C13: got '#N/A'Expecting numeric in C274 / R274C3: got '#N/A'Expecting numeric in D274 / R274C4: got '#N/A'Expecting numeric in E274 / R274C5: got '#N/A'Expecting numeric in F274 / R274C6: got '#N/A'Expecting numeric in G274 / R274C7: got '#N/A'Expecting numeric in J274 / R274C10: got '#N/A'Expecting numeric in K274 / R274C11: got '#N/A'Expecting numeric in L274 / R274C12: got '#N/A'Expecting numeric in M274 / R274C13: got '#N/A'Expecting numeric in C275 / R275C3: got '#N/A'Expecting numeric in D275 / R275C4: got '#N/A'Expecting numeric in E275 / R275C5: got '#N/A'Expecting numeric in F275 / R275C6: got '#N/A'Expecting numeric in G275 / R275C7: got '#N/A'Expecting numeric in J275 / R275C10: got '#N/A'Expecting numeric in K275 / R275C11: got '#N/A'Expecting numeric in L275 / R275C12: got '#N/A'Expecting numeric in M275 / R275C13: got '#N/A'Expecting numeric in C276 / R276C3: got '#N/A'Expecting numeric in D276 / R276C4: got '#N/A'Expecting numeric in E276 / R276C5: got '#N/A'Expecting numeric in F276 / R276C6: got '#N/A'Expecting numeric in G276 / R276C7: got '#N/A'Expecting numeric in J276 / R276C10: got '#N/A'Expecting numeric in K276 / R276C11: got '#N/A'Expecting numeric in L276 / R276C12: got '#N/A'Expecting numeric in M276 / R276C13: got '#N/A'Expecting numeric in C277 / R277C3: got '#N/A'Expecting numeric in D277 / R277C4: got '#N/A'Expecting numeric in E277 / R277C5: got '#N/A'Expecting numeric in F277 / R277C6: got '#N/A'Expecting numeric in G277 / R277C7: got '#N/A'Expecting numeric in J277 / R277C10: got '#N/A'Expecting numeric in K277 / R277C11: got '#N/A'Expecting numeric in L277 / R277C12: got '#N/A'Expecting numeric in M277 / R277C13: got '#N/A'Expecting numeric in C278 / R278C3: got '#N/A'Expecting numeric in D278 / R278C4: got '#N/A'Expecting numeric in E278 / R278C5: got '#N/A'Expecting numeric in F278 / R278C6: got '#N/A'Expecting numeric in G278 / R278C7: got '#N/A'Expecting numeric in J278 / R278C10: got '#N/A'Expecting numeric in K278 / R278C11: got '#N/A'Expecting numeric in L278 / R278C12: got '#N/A'Expecting numeric in M278 / R278C13: got '#N/A'Expecting numeric in C279 / R279C3: got '#N/A'Expecting numeric in D279 / R279C4: got '#N/A'Expecting numeric in E279 / R279C5: got '#N/A'Expecting numeric in F279 / R279C6: got '#N/A'Expecting numeric in G279 / R279C7: got '#N/A'Expecting numeric in J279 / R279C10: got '#N/A'Expecting numeric in K279 / R279C11: got '#N/A'Expecting numeric in L279 / R279C12: got '#N/A'Expecting numeric in M279 / R279C13: got '#N/A'Expecting numeric in C280 / R280C3: got '#N/A'Expecting numeric in D280 / R280C4: got '#N/A'Expecting numeric in E280 / R280C5: got '#N/A'Expecting numeric in F280 / R280C6: got '#N/A'Expecting numeric in G280 / R280C7: got '#N/A'Expecting numeric in J280 / R280C10: got '#N/A'Expecting numeric in K280 / R280C11: got '#N/A'Expecting numeric in L280 / R280C12: got '#N/A'Expecting numeric in M280 / R280C13: got '#N/A'Expecting numeric in C281 / R281C3: got '#N/A'Expecting numeric in D281 / R281C4: got '#N/A'Expecting numeric in E281 / R281C5: got '#N/A'Expecting numeric in F281 / R281C6: got '#N/A'Expecting numeric in G281 / R281C7: got '#N/A'Expecting numeric in J281 / R281C10: got '#N/A'Expecting numeric in K281 / R281C11: got '#N/A'Expecting numeric in L281 / R281C12: got '#N/A'Expecting numeric in M281 / R281C13: got '#N/A'Expecting numeric in C282 / R282C3: got '#N/A'Expecting numeric in D282 / R282C4: got '#N/A'Expecting numeric in E282 / R282C5: got '#N/A'Expecting numeric in F282 / R282C6: got '#N/A'Expecting numeric in G282 / R282C7: got '#N/A'Expecting numeric in J282 / R282C10: got '#N/A'Expecting numeric in K282 / R282C11: got '#N/A'Expecting numeric in L282 / R282C12: got '#N/A'Expecting numeric in M282 / R282C13: got '#N/A'Expecting numeric in C283 / R283C3: got '#N/A'Expecting numeric in D283 / R283C4: got '#N/A'Expecting numeric in E283 / R283C5: got '#N/A'Expecting numeric in F283 / R283C6: got '#N/A'Expecting numeric in G283 / R283C7: got '#N/A'Expecting numeric in J283 / R283C10: got '#N/A'Expecting numeric in K283 / R283C11: got '#N/A'Expecting numeric in L283 / R283C12: got '#N/A'Expecting numeric in M283 / R283C13: got '#N/A'Expecting numeric in C284 / R284C3: got '#N/A'Expecting numeric in D284 / R284C4: got '#N/A'Expecting numeric in E284 / R284C5: got '#N/A'Expecting numeric in F284 / R284C6: got '#N/A'Expecting numeric in G284 / R284C7: got '#N/A'Expecting numeric in J284 / R284C10: got '#N/A'Expecting numeric in K284 / R284C11: got '#N/A'Expecting numeric in L284 / R284C12: got '#N/A'Expecting numeric in M284 / R284C13: got '#N/A'Expecting numeric in C285 / R285C3: got '#N/A'Expecting numeric in D285 / R285C4: got '#N/A'Expecting numeric in E285 / R285C5: got '#N/A'Expecting numeric in F285 / R285C6: got '#N/A'Expecting numeric in G285 / R285C7: got '#N/A'Expecting numeric in J285 / R285C10: got '#N/A'Expecting numeric in K285 / R285C11: got '#N/A'Expecting numeric in L285 / R285C12: got '#N/A'Expecting numeric in M285 / R285C13: got '#N/A'Expecting numeric in C286 / R286C3: got '#N/A'Expecting numeric in D286 / R286C4: got '#N/A'Expecting numeric in E286 / R286C5: got '#N/A'Expecting numeric in F286 / R286C6: got '#N/A'Expecting numeric in G286 / R286C7: got '#N/A'Expecting numeric in J286 / R286C10: got '#N/A'Expecting numeric in K286 / R286C11: got '#N/A'Expecting numeric in L286 / R286C12: got '#N/A'Expecting numeric in M286 / R286C13: got '#N/A'Expecting numeric in C287 / R287C3: got '#N/A'Expecting numeric in D287 / R287C4: got '#N/A'Expecting numeric in E287 / R287C5: got '#N/A'Expecting numeric in F287 / R287C6: got '#N/A'Expecting numeric in G287 / R287C7: got '#N/A'Expecting numeric in J287 / R287C10: got '#N/A'Expecting numeric in K287 / R287C11: got '#N/A'Expecting numeric in L287 / R287C12: got '#N/A'Expecting numeric in M287 / R287C13: got '#N/A'Expecting numeric in C288 / R288C3: got '#N/A'Expecting numeric in D288 / R288C4: got '#N/A'Expecting numeric in E288 / R288C5: got '#N/A'Expecting numeric in F288 / R288C6: got '#N/A'Expecting numeric in G288 / R288C7: got '#N/A'Expecting numeric in J288 / R288C10: got '#N/A'Expecting numeric in K288 / R288C11: got '#N/A'Expecting numeric in L288 / R288C12: got '#N/A'Expecting numeric in M288 / R288C13: got '#N/A'Expecting numeric in C289 / R289C3: got '#N/A'Expecting numeric in D289 / R289C4: got '#N/A'Expecting numeric in E289 / R289C5: got '#N/A'Expecting numeric in F289 / R289C6: got '#N/A'Expecting numeric in G289 / R289C7: got '#N/A'Expecting numeric in J289 / R289C10: got '#N/A'Expecting numeric in K289 / R289C11: got '#N/A'Expecting numeric in L289 / R289C12: got '#N/A'Expecting numeric in M289 / R289C13: got '#N/A'Expecting numeric in C290 / R290C3: got '#N/A'Expecting numeric in D290 / R290C4: got '#N/A'Expecting numeric in E290 / R290C5: got '#N/A'Expecting numeric in F290 / R290C6: got '#N/A'Expecting numeric in G290 / R290C7: got '#N/A'Expecting numeric in J290 / R290C10: got '#N/A'Expecting numeric in K290 / R290C11: got '#N/A'Expecting numeric in L290 / R290C12: got '#N/A'Expecting numeric in M290 / R290C13: got '#N/A'Expecting numeric in C291 / R291C3: got '#N/A'Expecting numeric in D291 / R291C4: got '#N/A'Expecting numeric in E291 / R291C5: got '#N/A'Expecting numeric in F291 / R291C6: got '#N/A'Expecting numeric in G291 / R291C7: got '#N/A'Expecting numeric in J291 / R291C10: got '#N/A'Expecting numeric in K291 / R291C11: got '#N/A'Expecting numeric in L291 / R291C12: got '#N/A'Expecting numeric in M291 / R291C13: got '#N/A'Expecting numeric in C292 / R292C3: got '#N/A'Expecting numeric in D292 / R292C4: got '#N/A'Expecting numeric in E292 / R292C5: got '#N/A'Expecting numeric in F292 / R292C6: got '#N/A'Expecting numeric in G292 / R292C7: got '#N/A'Expecting numeric in J292 / R292C10: got '#N/A'Expecting numeric in K292 / R292C11: got '#N/A'Expecting numeric in L292 / R292C12: got '#N/A'Expecting numeric in M292 / R292C13: got '#N/A'Expecting numeric in C293 / R293C3: got '#N/A'Expecting numeric in D293 / R293C4: got '#N/A'Expecting numeric in E293 / R293C5: got '#N/A'Expecting numeric in F293 / R293C6: got '#N/A'Expecting numeric in G293 / R293C7: got '#N/A'Expecting numeric in J293 / R293C10: got '#N/A'Expecting numeric in K293 / R293C11: got '#N/A'Expecting numeric in L293 / R293C12: got '#N/A'Expecting numeric in M293 / R293C13: got '#N/A'Expecting numeric in C294 / R294C3: got '#N/A'Expecting numeric in D294 / R294C4: got '#N/A'Expecting numeric in E294 / R294C5: got '#N/A'Expecting numeric in F294 / R294C6: got '#N/A'Expecting numeric in G294 / R294C7: got '#N/A'Expecting numeric in J294 / R294C10: got '#N/A'Expecting numeric in K294 / R294C11: got '#N/A'Expecting numeric in L294 / R294C12: got '#N/A'Expecting numeric in M294 / R294C13: got '#N/A'Expecting numeric in C295 / R295C3: got '#N/A'Expecting numeric in D295 / R295C4: got '#N/A'Expecting numeric in E295 / R295C5: got '#N/A'Expecting numeric in F295 / R295C6: got '#N/A'Expecting numeric in G295 / R295C7: got '#N/A'Expecting numeric in J295 / R295C10: got '#N/A'Expecting numeric in K295 / R295C11: got '#N/A'Expecting numeric in L295 / R295C12: got '#N/A'Expecting numeric in M295 / R295C13: got '#N/A'Expecting numeric in C296 / R296C3: got '#N/A'Expecting numeric in D296 / R296C4: got '#N/A'Expecting numeric in E296 / R296C5: got '#N/A'Expecting numeric in F296 / R296C6: got '#N/A'Expecting numeric in G296 / R296C7: got '#N/A'Expecting numeric in J296 / R296C10: got '#N/A'Expecting numeric in K296 / R296C11: got '#N/A'Expecting numeric in L296 / R296C12: got '#N/A'Expecting numeric in M296 / R296C13: got '#N/A'Expecting numeric in C297 / R297C3: got '#N/A'Expecting numeric in D297 / R297C4: got '#N/A'Expecting numeric in E297 / R297C5: got '#N/A'Expecting numeric in F297 / R297C6: got '#N/A'Expecting numeric in G297 / R297C7: got '#N/A'Expecting numeric in J297 / R297C10: got '#N/A'Expecting numeric in K297 / R297C11: got '#N/A'Expecting numeric in L297 / R297C12: got '#N/A'Expecting numeric in M297 / R297C13: got '#N/A'Expecting numeric in C298 / R298C3: got '#N/A'Expecting numeric in D298 / R298C4: got '#N/A'Expecting numeric in E298 / R298C5: got '#N/A'Expecting numeric in F298 / R298C6: got '#N/A'Expecting numeric in G298 / R298C7: got '#N/A'Expecting numeric in J298 / R298C10: got '#N/A'Expecting numeric in K298 / R298C11: got '#N/A'Expecting numeric in L298 / R298C12: got '#N/A'Expecting numeric in M298 / R298C13: got '#N/A'Expecting numeric in C299 / R299C3: got '#N/A'Expecting numeric in D299 / R299C4: got '#N/A'Expecting numeric in E299 / R299C5: got '#N/A'Expecting numeric in F299 / R299C6: got '#N/A'Expecting numeric in G299 / R299C7: got '#N/A'Expecting numeric in J299 / R299C10: got '#N/A'Expecting numeric in K299 / R299C11: got '#N/A'Expecting numeric in L299 / R299C12: got '#N/A'Expecting numeric in M299 / R299C13: got '#N/A'Expecting numeric in C300 / R300C3: got '#N/A'Expecting numeric in D300 / R300C4: got '#N/A'Expecting numeric in E300 / R300C5: got '#N/A'Expecting numeric in F300 / R300C6: got '#N/A'Expecting numeric in G300 / R300C7: got '#N/A'Expecting numeric in J300 / R300C10: got '#N/A'Expecting numeric in K300 / R300C11: got '#N/A'Expecting numeric in L300 / R300C12: got '#N/A'Expecting numeric in M300 / R300C13: got '#N/A'Expecting numeric in C301 / R301C3: got '#N/A'Expecting numeric in D301 / R301C4: got '#N/A'Expecting numeric in E301 / R301C5: got '#N/A'Expecting numeric in F301 / R301C6: got '#N/A'Expecting numeric in G301 / R301C7: got '#N/A'Expecting numeric in J301 / R301C10: got '#N/A'Expecting numeric in K301 / R301C11: got '#N/A'Expecting numeric in L301 / R301C12: got '#N/A'Expecting numeric in M301 / R301C13: got '#N/A'Expecting numeric in C302 / R302C3: got '#N/A'Expecting numeric in D302 / R302C4: got '#N/A'Expecting numeric in E302 / R302C5: got '#N/A'Expecting numeric in F302 / R302C6: got '#N/A'Expecting numeric in G302 / R302C7: got '#N/A'Expecting numeric in J302 / R302C10: got '#N/A'Expecting numeric in K302 / R302C11: got '#N/A'Expecting numeric in L302 / R302C12: got '#N/A'Expecting numeric in M302 / R302C13: got '#N/A'Expecting numeric in C303 / R303C3: got '#N/A'Expecting numeric in D303 / R303C4: got '#N/A'Expecting numeric in E303 / R303C5: got '#N/A'Expecting numeric in F303 / R303C6: got '#N/A'Expecting numeric in G303 / R303C7: got '#N/A'Expecting numeric in J303 / R303C10: got '#N/A'Expecting numeric in K303 / R303C11: got '#N/A'Expecting numeric in L303 / R303C12: got '#N/A'Expecting numeric in M303 / R303C13: got '#N/A'Expecting numeric in C304 / R304C3: got '#N/A'Expecting numeric in D304 / R304C4: got '#N/A'Expecting numeric in E304 / R304C5: got '#N/A'Expecting numeric in F304 / R304C6: got '#N/A'Expecting numeric in G304 / R304C7: got '#N/A'Expecting numeric in J304 / R304C10: got '#N/A'Expecting numeric in K304 / R304C11: got '#N/A'Expecting numeric in L304 / R304C12: got '#N/A'Expecting numeric in M304 / R304C13: got '#N/A'Expecting numeric in C305 / R305C3: got '#N/A'Expecting numeric in D305 / R305C4: got '#N/A'Expecting numeric in E305 / R305C5: got '#N/A'Expecting numeric in F305 / R305C6: got '#N/A'Expecting numeric in G305 / R305C7: got '#N/A'Expecting numeric in J305 / R305C10: got '#N/A'Expecting numeric in K305 / R305C11: got '#N/A'Expecting numeric in L305 / R305C12: got '#N/A'Expecting numeric in M305 / R305C13: got '#N/A'Expecting numeric in C306 / R306C3: got '#N/A'Expecting numeric in D306 / R306C4: got '#N/A'Expecting numeric in E306 / R306C5: got '#N/A'Expecting numeric in F306 / R306C6: got '#N/A'Expecting numeric in G306 / R306C7: got '#N/A'Expecting numeric in J306 / R306C10: got '#N/A'Expecting numeric in K306 / R306C11: got '#N/A'Expecting numeric in L306 / R306C12: got '#N/A'Expecting numeric in M306 / R306C13: got '#N/A'Expecting numeric in C307 / R307C3: got '#N/A'Expecting numeric in D307 / R307C4: got '#N/A'Expecting numeric in E307 / R307C5: got '#N/A'Expecting numeric in F307 / R307C6: got '#N/A'Expecting numeric in G307 / R307C7: got '#N/A'Expecting numeric in J307 / R307C10: got '#N/A'Expecting numeric in K307 / R307C11: got '#N/A'Expecting numeric in L307 / R307C12: got '#N/A'Expecting numeric in M307 / R307C13: got '#N/A'Expecting numeric in C308 / R308C3: got '#N/A'Expecting numeric in D308 / R308C4: got '#N/A'Expecting numeric in E308 / R308C5: got '#N/A'Expecting numeric in F308 / R308C6: got '#N/A'Expecting numeric in G308 / R308C7: got '#N/A'Expecting numeric in J308 / R308C10: got '#N/A'Expecting numeric in K308 / R308C11: got '#N/A'Expecting numeric in L308 / R308C12: got '#N/A'Expecting numeric in M308 / R308C13: got '#N/A'Expecting numeric in C309 / R309C3: got '#N/A'Expecting numeric in D309 / R309C4: got '#N/A'Expecting numeric in E309 / R309C5: got '#N/A'Expecting numeric in F309 / R309C6: got '#N/A'Expecting numeric in G309 / R309C7: got '#N/A'Expecting numeric in J309 / R309C10: got '#N/A'Expecting numeric in K309 / R309C11: got '#N/A'Expecting numeric in L309 / R309C12: got '#N/A'Expecting numeric in M309 / R309C13: got '#N/A'Expecting numeric in C310 / R310C3: got '#N/A'Expecting numeric in D310 / R310C4: got '#N/A'Expecting numeric in E310 / R310C5: got '#N/A'Expecting numeric in F310 / R310C6: got '#N/A'Expecting numeric in G310 / R310C7: got '#N/A'Expecting numeric in J310 / R310C10: got '#N/A'Expecting numeric in K310 / R310C11: got '#N/A'Expecting numeric in L310 / R310C12: got '#N/A'Expecting numeric in M310 / R310C13: got '#N/A'Expecting numeric in C311 / R311C3: got '#N/A'Expecting numeric in D311 / R311C4: got '#N/A'Expecting numeric in E311 / R311C5: got '#N/A'Expecting numeric in F311 / R311C6: got '#N/A'Expecting numeric in G311 / R311C7: got '#N/A'Expecting numeric in J311 / R311C10: got '#N/A'Expecting numeric in K311 / R311C11: got '#N/A'Expecting numeric in L311 / R311C12: got '#N/A'Expecting numeric in M311 / R311C13: got '#N/A'Expecting numeric in C312 / R312C3: got '#N/A'Expecting numeric in D312 / R312C4: got '#N/A'Expecting numeric in E312 / R312C5: got '#N/A'Expecting numeric in F312 / R312C6: got '#N/A'Expecting numeric in G312 / R312C7: got '#N/A'Expecting numeric in J312 / R312C10: got '#N/A'Expecting numeric in K312 / R312C11: got '#N/A'Expecting numeric in L312 / R312C12: got '#N/A'Expecting numeric in M312 / R312C13: got '#N/A'Expecting numeric in C313 / R313C3: got '#N/A'Expecting numeric in D313 / R313C4: got '#N/A'Expecting numeric in E313 / R313C5: got '#N/A'Expecting numeric in F313 / R313C6: got '#N/A'Expecting numeric in G313 / R313C7: got '#N/A'Expecting numeric in J313 / R313C10: got '#N/A'Expecting numeric in K313 / R313C11: got '#N/A'Expecting numeric in L313 / R313C12: got '#N/A'Expecting numeric in M313 / R313C13: got '#N/A'Expecting numeric in C314 / R314C3: got '#N/A'Expecting numeric in D314 / R314C4: got '#N/A'Expecting numeric in E314 / R314C5: got '#N/A'Expecting numeric in F314 / R314C6: got '#N/A'Expecting numeric in G314 / R314C7: got '#N/A'Expecting numeric in J314 / R314C10: got '#N/A'Expecting numeric in K314 / R314C11: got '#N/A'Expecting numeric in L314 / R314C12: got '#N/A'Expecting numeric in M314 / R314C13: got '#N/A'Expecting numeric in C315 / R315C3: got '#N/A'Expecting numeric in D315 / R315C4: got '#N/A'Expecting numeric in E315 / R315C5: got '#N/A'Expecting numeric in F315 / R315C6: got '#N/A'Expecting numeric in G315 / R315C7: got '#N/A'Expecting numeric in J315 / R315C10: got '#N/A'Expecting numeric in K315 / R315C11: got '#N/A'Expecting numeric in L315 / R315C12: got '#N/A'Expecting numeric in M315 / R315C13: got '#N/A'Expecting numeric in C316 / R316C3: got '#N/A'Expecting numeric in D316 / R316C4: got '#N/A'Expecting numeric in E316 / R316C5: got '#N/A'Expecting numeric in F316 / R316C6: got '#N/A'Expecting numeric in G316 / R316C7: got '#N/A'Expecting numeric in J316 / R316C10: got '#N/A'Expecting numeric in K316 / R316C11: got '#N/A'Expecting numeric in L316 / R316C12: got '#N/A'Expecting numeric in M316 / R316C13: got '#N/A'Expecting numeric in C317 / R317C3: got '#N/A'Expecting numeric in D317 / R317C4: got '#N/A'Expecting numeric in E317 / R317C5: got '#N/A'Expecting numeric in F317 / R317C6: got '#N/A'Expecting numeric in G317 / R317C7: got '#N/A'Expecting numeric in J317 / R317C10: got '#N/A'Expecting numeric in K317 / R317C11: got '#N/A'Expecting numeric in L317 / R317C12: got '#N/A'Expecting numeric in M317 / R317C13: got '#N/A'Expecting numeric in C318 / R318C3: got '#N/A'Expecting numeric in D318 / R318C4: got '#N/A'Expecting numeric in E318 / R318C5: got '#N/A'Expecting numeric in F318 / R318C6: got '#N/A'Expecting numeric in G318 / R318C7: got '#N/A'Expecting numeric in J318 / R318C10: got '#N/A'Expecting numeric in K318 / R318C11: got '#N/A'Expecting numeric in L318 / R318C12: got '#N/A'Expecting numeric in M318 / R318C13: got '#N/A'Expecting numeric in C319 / R319C3: got '#N/A'Expecting numeric in D319 / R319C4: got '#N/A'Expecting numeric in E319 / R319C5: got '#N/A'Expecting numeric in F319 / R319C6: got '#N/A'Expecting numeric in G319 / R319C7: got '#N/A'Expecting numeric in J319 / R319C10: got '#N/A'Expecting numeric in K319 / R319C11: got '#N/A'Expecting numeric in L319 / R319C12: got '#N/A'Expecting numeric in M319 / R319C13: got '#N/A'Expecting numeric in C320 / R320C3: got '#N/A'Expecting numeric in D320 / R320C4: got '#N/A'Expecting numeric in E320 / R320C5: got '#N/A'Expecting numeric in F320 / R320C6: got '#N/A'Expecting numeric in G320 / R320C7: got '#N/A'Expecting numeric in J320 / R320C10: got '#N/A'Expecting numeric in K320 / R320C11: got '#N/A'Expecting numeric in L320 / R320C12: got '#N/A'Expecting numeric in M320 / R320C13: got '#N/A'Expecting numeric in C321 / R321C3: got '#N/A'Expecting numeric in D321 / R321C4: got '#N/A'Expecting numeric in E321 / R321C5: got '#N/A'Expecting numeric in F321 / R321C6: got '#N/A'Expecting numeric in G321 / R321C7: got '#N/A'Expecting numeric in J321 / R321C10: got '#N/A'Expecting numeric in K321 / R321C11: got '#N/A'Expecting numeric in L321 / R321C12: got '#N/A'Expecting numeric in M321 / R321C13: got '#N/A'Expecting numeric in C322 / R322C3: got '#N/A'Expecting numeric in D322 / R322C4: got '#N/A'Expecting numeric in E322 / R322C5: got '#N/A'Expecting numeric in F322 / R322C6: got '#N/A'Expecting numeric in G322 / R322C7: got '#N/A'Expecting numeric in J322 / R322C10: got '#N/A'Expecting numeric in K322 / R322C11: got '#N/A'Expecting numeric in L322 / R322C12: got '#N/A'Expecting numeric in M322 / R322C13: got '#N/A'Expecting numeric in C323 / R323C3: got '#N/A'Expecting numeric in D323 / R323C4: got '#N/A'Expecting numeric in E323 / R323C5: got '#N/A'Expecting numeric in F323 / R323C6: got '#N/A'Expecting numeric in G323 / R323C7: got '#N/A'Expecting numeric in J323 / R323C10: got '#N/A'Expecting numeric in K323 / R323C11: got '#N/A'Expecting numeric in L323 / R323C12: got '#N/A'Expecting numeric in M323 / R323C13: got '#N/A'Expecting numeric in C324 / R324C3: got '#N/A'Expecting numeric in D324 / R324C4: got '#N/A'Expecting numeric in E324 / R324C5: got '#N/A'Expecting numeric in F324 / R324C6: got '#N/A'Expecting numeric in G324 / R324C7: got '#N/A'Expecting numeric in J324 / R324C10: got '#N/A'Expecting numeric in K324 / R324C11: got '#N/A'Expecting numeric in L324 / R324C12: got '#N/A'Expecting numeric in M324 / R324C13: got '#N/A'Expecting numeric in C325 / R325C3: got '#N/A'Expecting numeric in D325 / R325C4: got '#N/A'Expecting numeric in E325 / R325C5: got '#N/A'Expecting numeric in F325 / R325C6: got '#N/A'Expecting numeric in G325 / R325C7: got '#N/A'Expecting numeric in J325 / R325C10: got '#N/A'Expecting numeric in K325 / R325C11: got '#N/A'Expecting numeric in L325 / R325C12: got '#N/A'Expecting numeric in M325 / R325C13: got '#N/A'Expecting numeric in C326 / R326C3: got '#N/A'Expecting numeric in D326 / R326C4: got '#N/A'Expecting numeric in E326 / R326C5: got '#N/A'Expecting numeric in F326 / R326C6: got '#N/A'Expecting numeric in G326 / R326C7: got '#N/A'Expecting numeric in J326 / R326C10: got '#N/A'Expecting numeric in K326 / R326C11: got '#N/A'Expecting numeric in L326 / R326C12: got '#N/A'Expecting numeric in M326 / R326C13: got '#N/A'Expecting numeric in C327 / R327C3: got '#N/A'Expecting numeric in D327 / R327C4: got '#N/A'Expecting numeric in E327 / R327C5: got '#N/A'Expecting numeric in F327 / R327C6: got '#N/A'Expecting numeric in G327 / R327C7: got '#N/A'Expecting numeric in J327 / R327C10: got '#N/A'Expecting numeric in K327 / R327C11: got '#N/A'Expecting numeric in L327 / R327C12: got '#N/A'Expecting numeric in M327 / R327C13: got '#N/A'Expecting numeric in C328 / R328C3: got '#N/A'Expecting numeric in D328 / R328C4: got '#N/A'Expecting numeric in E328 / R328C5: got '#N/A'Expecting numeric in F328 / R328C6: got '#N/A'Expecting numeric in G328 / R328C7: got '#N/A'Expecting numeric in J328 / R328C10: got '#N/A'Expecting numeric in K328 / R328C11: got '#N/A'Expecting numeric in L328 / R328C12: got '#N/A'Expecting numeric in M328 / R328C13: got '#N/A'Expecting numeric in C329 / R329C3: got '#N/A'Expecting numeric in D329 / R329C4: got '#N/A'Expecting numeric in E329 / R329C5: got '#N/A'Expecting numeric in F329 / R329C6: got '#N/A'Expecting numeric in G329 / R329C7: got '#N/A'Expecting numeric in J329 / R329C10: got '#N/A'Expecting numeric in K329 / R329C11: got '#N/A'Expecting numeric in L329 / R329C12: got '#N/A'Expecting numeric in M329 / R329C13: got '#N/A'Expecting numeric in C330 / R330C3: got '#N/A'Expecting numeric in D330 / R330C4: got '#N/A'Expecting numeric in E330 / R330C5: got '#N/A'Expecting numeric in F330 / R330C6: got '#N/A'Expecting numeric in G330 / R330C7: got '#N/A'Expecting numeric in J330 / R330C10: got '#N/A'Expecting numeric in K330 / R330C11: got '#N/A'Expecting numeric in L330 / R330C12: got '#N/A'Expecting numeric in M330 / R330C13: got '#N/A'Expecting numeric in C331 / R331C3: got '#N/A'Expecting numeric in D331 / R331C4: got '#N/A'Expecting numeric in E331 / R331C5: got '#N/A'Expecting numeric in F331 / R331C6: got '#N/A'Expecting numeric in G331 / R331C7: got '#N/A'Expecting numeric in J331 / R331C10: got '#N/A'Expecting numeric in K331 / R331C11: got '#N/A'Expecting numeric in L331 / R331C12: got '#N/A'Expecting numeric in M331 / R331C13: got '#N/A'Expecting numeric in C332 / R332C3: got '#N/A'Expecting numeric in D332 / R332C4: got '#N/A'Expecting numeric in E332 / R332C5: got '#N/A'Expecting numeric in F332 / R332C6: got '#N/A'Expecting numeric in G332 / R332C7: got '#N/A'Expecting numeric in J332 / R332C10: got '#N/A'Expecting numeric in K332 / R332C11: got '#N/A'Expecting numeric in L332 / R332C12: got '#N/A'Expecting numeric in M332 / R332C13: got '#N/A'Expecting numeric in C333 / R333C3: got '#N/A'Expecting numeric in D333 / R333C4: got '#N/A'Expecting numeric in E333 / R333C5: got '#N/A'Expecting numeric in F333 / R333C6: got '#N/A'Expecting numeric in G333 / R333C7: got '#N/A'Expecting numeric in J333 / R333C10: got '#N/A'Expecting numeric in K333 / R333C11: got '#N/A'Expecting numeric in L333 / R333C12: got '#N/A'Expecting numeric in M333 / R333C13: got '#N/A'Expecting numeric in C334 / R334C3: got '#N/A'Expecting numeric in D334 / R334C4: got '#N/A'Expecting numeric in E334 / R334C5: got '#N/A'Expecting numeric in F334 / R334C6: got '#N/A'Expecting numeric in G334 / R334C7: got '#N/A'Expecting numeric in J334 / R334C10: got '#N/A'Expecting numeric in K334 / R334C11: got '#N/A'Expecting numeric in L334 / R334C12: got '#N/A'Expecting numeric in M334 / R334C13: got '#N/A'Expecting numeric in C335 / R335C3: got '#N/A'Expecting numeric in D335 / R335C4: got '#N/A'Expecting numeric in E335 / R335C5: got '#N/A'Expecting numeric in F335 / R335C6: got '#N/A'Expecting numeric in G335 / R335C7: got '#N/A'Expecting numeric in J335 / R335C10: got '#N/A'Expecting numeric in K335 / R335C11: got '#N/A'Expecting numeric in L335 / R335C12: got '#N/A'Expecting numeric in M335 / R335C13: got '#N/A'Expecting numeric in C336 / R336C3: got '#N/A'Expecting numeric in D336 / R336C4: got '#N/A'Expecting numeric in E336 / R336C5: got '#N/A'Expecting numeric in F336 / R336C6: got '#N/A'Expecting numeric in G336 / R336C7: got '#N/A'Expecting numeric in J336 / R336C10: got '#N/A'Expecting numeric in K336 / R336C11: got '#N/A'Expecting numeric in L336 / R336C12: got '#N/A'Expecting numeric in M336 / R336C13: got '#N/A'Expecting numeric in C337 / R337C3: got '#N/A'Expecting numeric in D337 / R337C4: got '#N/A'Expecting numeric in E337 / R337C5: got '#N/A'Expecting numeric in F337 / R337C6: got '#N/A'Expecting numeric in G337 / R337C7: got '#N/A'Expecting numeric in J337 / R337C10: got '#N/A'Expecting numeric in K337 / R337C11: got '#N/A'Expecting numeric in L337 / R337C12: got '#N/A'Expecting numeric in M337 / R337C13: got '#N/A'Expecting numeric in C338 / R338C3: got '#N/A'Expecting numeric in D338 / R338C4: got '#N/A'Expecting numeric in E338 / R338C5: got '#N/A'Expecting numeric in F338 / R338C6: got '#N/A'Expecting numeric in G338 / R338C7: got '#N/A'Expecting numeric in J338 / R338C10: got '#N/A'Expecting numeric in K338 / R338C11: got '#N/A'Expecting numeric in L338 / R338C12: got '#N/A'Expecting numeric in M338 / R338C13: got '#N/A'Expecting numeric in C339 / R339C3: got '#N/A'Expecting numeric in D339 / R339C4: got '#N/A'Expecting numeric in E339 / R339C5: got '#N/A'Expecting numeric in F339 / R339C6: got '#N/A'Expecting numeric in G339 / R339C7: got '#N/A'Expecting numeric in J339 / R339C10: got '#N/A'Expecting numeric in K339 / R339C11: got '#N/A'Expecting numeric in L339 / R339C12: got '#N/A'Expecting numeric in M339 / R339C13: got '#N/A'Expecting numeric in C340 / R340C3: got '#N/A'Expecting numeric in D340 / R340C4: got '#N/A'Expecting numeric in E340 / R340C5: got '#N/A'Expecting numeric in F340 / R340C6: got '#N/A'Expecting numeric in G340 / R340C7: got '#N/A'Expecting numeric in J340 / R340C10: got '#N/A'Expecting numeric in K340 / R340C11: got '#N/A'Expecting numeric in L340 / R340C12: got '#N/A'Expecting numeric in M340 / R340C13: got '#N/A'Expecting numeric in C341 / R341C3: got '#N/A'Expecting numeric in D341 / R341C4: got '#N/A'Expecting numeric in E341 / R341C5: got '#N/A'Expecting numeric in F341 / R341C6: got '#N/A'Expecting numeric in G341 / R341C7: got '#N/A'Expecting numeric in J341 / R341C10: got '#N/A'Expecting numeric in K341 / R341C11: got '#N/A'Expecting numeric in L341 / R341C12: got '#N/A'Expecting numeric in M341 / R341C13: got '#N/A'Expecting numeric in C342 / R342C3: got '#N/A'Expecting numeric in D342 / R342C4: got '#N/A'Expecting numeric in E342 / R342C5: got '#N/A'Expecting numeric in F342 / R342C6: got '#N/A'Expecting numeric in G342 / R342C7: got '#N/A'Expecting numeric in J342 / R342C10: got '#N/A'Expecting numeric in K342 / R342C11: got '#N/A'Expecting numeric in L342 / R342C12: got '#N/A'Expecting numeric in M342 / R342C13: got '#N/A'Expecting numeric in C343 / R343C3: got '#N/A'Expecting numeric in D343 / R343C4: got '#N/A'Expecting numeric in E343 / R343C5: got '#N/A'Expecting numeric in F343 / R343C6: got '#N/A'Expecting numeric in G343 / R343C7: got '#N/A'Expecting numeric in J343 / R343C10: got '#N/A'Expecting numeric in K343 / R343C11: got '#N/A'Expecting numeric in L343 / R343C12: got '#N/A'Expecting numeric in M343 / R343C13: got '#N/A'Expecting numeric in C344 / R344C3: got '#N/A'Expecting numeric in D344 / R344C4: got '#N/A'Expecting numeric in E344 / R344C5: got '#N/A'Expecting numeric in F344 / R344C6: got '#N/A'Expecting numeric in G344 / R344C7: got '#N/A'Expecting numeric in J344 / R344C10: got '#N/A'Expecting numeric in K344 / R344C11: got '#N/A'Expecting numeric in L344 / R344C12: got '#N/A'Expecting numeric in M344 / R344C13: got '#N/A'Expecting numeric in C345 / R345C3: got '#N/A'Expecting numeric in D345 / R345C4: got '#N/A'Expecting numeric in E345 / R345C5: got '#N/A'Expecting numeric in F345 / R345C6: got '#N/A'Expecting numeric in G345 / R345C7: got '#N/A'Expecting numeric in J345 / R345C10: got '#N/A'Expecting numeric in K345 / R345C11: got '#N/A'Expecting numeric in L345 / R345C12: got '#N/A'Expecting numeric in M345 / R345C13: got '#N/A'Expecting numeric in C346 / R346C3: got '#N/A'Expecting numeric in D346 / R346C4: got '#N/A'Expecting numeric in E346 / R346C5: got '#N/A'Expecting numeric in F346 / R346C6: got '#N/A'Expecting numeric in G346 / R346C7: got '#N/A'Expecting numeric in J346 / R346C10: got '#N/A'Expecting numeric in K346 / R346C11: got '#N/A'Expecting numeric in L346 / R346C12: got '#N/A'Expecting numeric in M346 / R346C13: got '#N/A'Expecting numeric in C347 / R347C3: got '#N/A'Expecting numeric in D347 / R347C4: got '#N/A'Expecting numeric in E347 / R347C5: got '#N/A'Expecting numeric in F347 / R347C6: got '#N/A'Expecting numeric in G347 / R347C7: got '#N/A'Expecting numeric in J347 / R347C10: got '#N/A'Expecting numeric in K347 / R347C11: got '#N/A'Expecting numeric in L347 / R347C12: got '#N/A'Expecting numeric in M347 / R347C13: got '#N/A'Expecting numeric in C348 / R348C3: got '#N/A'Expecting numeric in D348 / R348C4: got '#N/A'Expecting numeric in E348 / R348C5: got '#N/A'Expecting numeric in F348 / R348C6: got '#N/A'Expecting numeric in G348 / R348C7: got '#N/A'Expecting numeric in J348 / R348C10: got '#N/A'Expecting numeric in K348 / R348C11: got '#N/A'Expecting numeric in L348 / R348C12: got '#N/A'Expecting numeric in M348 / R348C13: got '#N/A'Expecting numeric in C349 / R349C3: got '#N/A'Expecting numeric in D349 / R349C4: got '#N/A'Expecting numeric in E349 / R349C5: got '#N/A'Expecting numeric in F349 / R349C6: got '#N/A'Expecting numeric in G349 / R349C7: got '#N/A'Expecting numeric in J349 / R349C10: got '#N/A'Expecting numeric in K349 / R349C11: got '#N/A'Expecting numeric in L349 / R349C12: got '#N/A'Expecting numeric in M349 / R349C13: got '#N/A'Expecting numeric in C350 / R350C3: got '#N/A'Expecting numeric in D350 / R350C4: got '#N/A'Expecting numeric in E350 / R350C5: got '#N/A'Expecting numeric in F350 / R350C6: got '#N/A'Expecting numeric in G350 / R350C7: got '#N/A'Expecting numeric in J350 / R350C10: got '#N/A'Expecting numeric in K350 / R350C11: got '#N/A'Expecting numeric in L350 / R350C12: got '#N/A'Expecting numeric in M350 / R350C13: got '#N/A'Expecting numeric in C351 / R351C3: got '#N/A'Expecting numeric in D351 / R351C4: got '#N/A'Expecting numeric in E351 / R351C5: got '#N/A'Expecting numeric in F351 / R351C6: got '#N/A'Expecting numeric in G351 / R351C7: got '#N/A'Expecting numeric in J351 / R351C10: got '#N/A'Expecting numeric in K351 / R351C11: got '#N/A'Expecting numeric in L351 / R351C12: got '#N/A'Expecting numeric in M351 / R351C13: got '#N/A'Expecting numeric in C352 / R352C3: got '#N/A'Expecting numeric in D352 / R352C4: got '#N/A'Expecting numeric in E352 / R352C5: got '#N/A'Expecting numeric in F352 / R352C6: got '#N/A'Expecting numeric in G352 / R352C7: got '#N/A'Expecting numeric in J352 / R352C10: got '#N/A'Expecting numeric in K352 / R352C11: got '#N/A'Expecting numeric in L352 / R352C12: got '#N/A'Expecting numeric in M352 / R352C13: got '#N/A'Expecting numeric in C353 / R353C3: got '#N/A'Expecting numeric in D353 / R353C4: got '#N/A'Expecting numeric in E353 / R353C5: got '#N/A'Expecting numeric in F353 / R353C6: got '#N/A'Expecting numeric in G353 / R353C7: got '#N/A'Expecting numeric in J353 / R353C10: got '#N/A'Expecting numeric in K353 / R353C11: got '#N/A'Expecting numeric in L353 / R353C12: got '#N/A'Expecting numeric in M353 / R353C13: got '#N/A'Expecting numeric in C354 / R354C3: got '#N/A'Expecting numeric in D354 / R354C4: got '#N/A'Expecting numeric in E354 / R354C5: got '#N/A'Expecting numeric in F354 / R354C6: got '#N/A'Expecting numeric in G354 / R354C7: got '#N/A'Expecting numeric in J354 / R354C10: got '#N/A'Expecting numeric in K354 / R354C11: got '#N/A'Expecting numeric in L354 / R354C12: got '#N/A'Expecting numeric in M354 / R354C13: got '#N/A'Expecting numeric in C355 / R355C3: got '#N/A'Expecting numeric in D355 / R355C4: got '#N/A'Expecting numeric in E355 / R355C5: got '#N/A'Expecting numeric in F355 / R355C6: got '#N/A'Expecting numeric in G355 / R355C7: got '#N/A'Expecting numeric in J355 / R355C10: got '#N/A'Expecting numeric in K355 / R355C11: got '#N/A'Expecting numeric in L355 / R355C12: got '#N/A'Expecting numeric in M355 / R355C13: got '#N/A'Expecting numeric in C356 / R356C3: got '#N/A'Expecting numeric in D356 / R356C4: got '#N/A'Expecting numeric in E356 / R356C5: got '#N/A'Expecting numeric in F356 / R356C6: got '#N/A'Expecting numeric in G356 / R356C7: got '#N/A'Expecting numeric in J356 / R356C10: got '#N/A'Expecting numeric in K356 / R356C11: got '#N/A'Expecting numeric in L356 / R356C12: got '#N/A'Expecting numeric in M356 / R356C13: got '#N/A'Expecting numeric in C357 / R357C3: got '#N/A'Expecting numeric in D357 / R357C4: got '#N/A'Expecting numeric in E357 / R357C5: got '#N/A'Expecting numeric in F357 / R357C6: got '#N/A'Expecting numeric in G357 / R357C7: got '#N/A'Expecting numeric in J357 / R357C10: got '#N/A'Expecting numeric in K357 / R357C11: got '#N/A'Expecting numeric in L357 / R357C12: got '#N/A'Expecting numeric in M357 / R357C13: got '#N/A'Expecting numeric in C358 / R358C3: got '#N/A'Expecting numeric in D358 / R358C4: got '#N/A'Expecting numeric in E358 / R358C5: got '#N/A'Expecting numeric in F358 / R358C6: got '#N/A'Expecting numeric in G358 / R358C7: got '#N/A'Expecting numeric in J358 / R358C10: got '#N/A'Expecting numeric in K358 / R358C11: got '#N/A'Expecting numeric in L358 / R358C12: got '#N/A'Expecting numeric in M358 / R358C13: got '#N/A'Expecting numeric in C359 / R359C3: got '#N/A'Expecting numeric in D359 / R359C4: got '#N/A'Expecting numeric in E359 / R359C5: got '#N/A'Expecting numeric in F359 / R359C6: got '#N/A'Expecting numeric in G359 / R359C7: got '#N/A'Expecting numeric in J359 / R359C10: got '#N/A'Expecting numeric in K359 / R359C11: got '#N/A'Expecting numeric in L359 / R359C12: got '#N/A'Expecting numeric in M359 / R359C13: got '#N/A'Expecting numeric in C360 / R360C3: got '#N/A'Expecting numeric in D360 / R360C4: got '#N/A'Expecting numeric in E360 / R360C5: got '#N/A'Expecting numeric in F360 / R360C6: got '#N/A'Expecting numeric in G360 / R360C7: got '#N/A'Expecting numeric in J360 / R360C10: got '#N/A'Expecting numeric in K360 / R360C11: got '#N/A'Expecting numeric in L360 / R360C12: got '#N/A'Expecting numeric in M360 / R360C13: got '#N/A'Expecting numeric in C361 / R361C3: got '#N/A'Expecting numeric in D361 / R361C4: got '#N/A'Expecting numeric in E361 / R361C5: got '#N/A'Expecting numeric in F361 / R361C6: got '#N/A'Expecting numeric in G361 / R361C7: got '#N/A'Expecting numeric in J361 / R361C10: got '#N/A'Expecting numeric in K361 / R361C11: got '#N/A'Expecting numeric in L361 / R361C12: got '#N/A'Expecting numeric in M361 / R361C13: got '#N/A'Expecting numeric in C362 / R362C3: got '#N/A'Expecting numeric in D362 / R362C4: got '#N/A'Expecting numeric in E362 / R362C5: got '#N/A'Expecting numeric in F362 / R362C6: got '#N/A'Expecting numeric in G362 / R362C7: got '#N/A'Expecting numeric in J362 / R362C10: got '#N/A'Expecting numeric in K362 / R362C11: got '#N/A'Expecting numeric in L362 / R362C12: got '#N/A'Expecting numeric in M362 / R362C13: got '#N/A'Expecting numeric in C363 / R363C3: got '#N/A'Expecting numeric in D363 / R363C4: got '#N/A'Expecting numeric in E363 / R363C5: got '#N/A'Expecting numeric in F363 / R363C6: got '#N/A'Expecting numeric in G363 / R363C7: got '#N/A'Expecting numeric in J363 / R363C10: got '#N/A'Expecting numeric in K363 / R363C11: got '#N/A'Expecting numeric in L363 / R363C12: got '#N/A'Expecting numeric in M363 / R363C13: got '#N/A'Expecting numeric in C364 / R364C3: got '#N/A'Expecting numeric in D364 / R364C4: got '#N/A'Expecting numeric in E364 / R364C5: got '#N/A'Expecting numeric in F364 / R364C6: got '#N/A'Expecting numeric in G364 / R364C7: got '#N/A'Expecting numeric in J364 / R364C10: got '#N/A'Expecting numeric in K364 / R364C11: got '#N/A'Expecting numeric in L364 / R364C12: got '#N/A'Expecting numeric in M364 / R364C13: got '#N/A'Expecting numeric in C365 / R365C3: got '#N/A'Expecting numeric in D365 / R365C4: got '#N/A'Expecting numeric in E365 / R365C5: got '#N/A'Expecting numeric in F365 / R365C6: got '#N/A'Expecting numeric in G365 / R365C7: got '#N/A'Expecting numeric in J365 / R365C10: got '#N/A'Expecting numeric in K365 / R365C11: got '#N/A'Expecting numeric in L365 / R365C12: got '#N/A'Expecting numeric in M365 / R365C13: got '#N/A'Expecting numeric in C366 / R366C3: got '#N/A'Expecting numeric in D366 / R366C4: got '#N/A'Expecting numeric in E366 / R366C5: got '#N/A'Expecting numeric in F366 / R366C6: got '#N/A'Expecting numeric in G366 / R366C7: got '#N/A'Expecting numeric in J366 / R366C10: got '#N/A'Expecting numeric in K366 / R366C11: got '#N/A'Expecting numeric in L366 / R366C12: got '#N/A'Expecting numeric in M366 / R366C13: got '#N/A'Expecting numeric in C367 / R367C3: got '#N/A'Expecting numeric in D367 / R367C4: got '#N/A'Expecting numeric in E367 / R367C5: got '#N/A'Expecting numeric in F367 / R367C6: got '#N/A'Expecting numeric in G367 / R367C7: got '#N/A'Expecting numeric in J367 / R367C10: got '#N/A'Expecting numeric in K367 / R367C11: got '#N/A'Expecting numeric in L367 / R367C12: got '#N/A'Expecting numeric in M367 / R367C13: got '#N/A'Expecting numeric in C368 / R368C3: got '#N/A'Expecting numeric in D368 / R368C4: got '#N/A'Expecting numeric in E368 / R368C5: got '#N/A'Expecting numeric in F368 / R368C6: got '#N/A'Expecting numeric in G368 / R368C7: got '#N/A'Expecting numeric in J368 / R368C10: got '#N/A'Expecting numeric in K368 / R368C11: got '#N/A'Expecting numeric in L368 / R368C12: got '#N/A'Expecting numeric in M368 / R368C13: got '#N/A'Expecting numeric in C369 / R369C3: got '#N/A'Expecting numeric in D369 / R369C4: got '#N/A'Expecting numeric in E369 / R369C5: got '#N/A'Expecting numeric in F369 / R369C6: got '#N/A'Expecting numeric in G369 / R369C7: got '#N/A'Expecting numeric in J369 / R369C10: got '#N/A'Expecting numeric in K369 / R369C11: got '#N/A'Expecting numeric in L369 / R369C12: got '#N/A'Expecting numeric in M369 / R369C13: got '#N/A'Expecting numeric in C370 / R370C3: got '#N/A'Expecting numeric in D370 / R370C4: got '#N/A'Expecting numeric in E370 / R370C5: got '#N/A'Expecting numeric in F370 / R370C6: got '#N/A'Expecting numeric in G370 / R370C7: got '#N/A'Expecting numeric in J370 / R370C10: got '#N/A'Expecting numeric in K370 / R370C11: got '#N/A'Expecting numeric in L370 / R370C12: got '#N/A'Expecting numeric in M370 / R370C13: got '#N/A'Expecting numeric in C371 / R371C3: got '#N/A'Expecting numeric in D371 / R371C4: got '#N/A'Expecting numeric in E371 / R371C5: got '#N/A'Expecting numeric in F371 / R371C6: got '#N/A'Expecting numeric in G371 / R371C7: got '#N/A'Expecting numeric in J371 / R371C10: got '#N/A'Expecting numeric in K371 / R371C11: got '#N/A'Expecting numeric in L371 / R371C12: got '#N/A'Expecting numeric in M371 / R371C13: got '#N/A'Expecting numeric in C372 / R372C3: got '#N/A'Expecting numeric in D372 / R372C4: got '#N/A'Expecting numeric in E372 / R372C5: got '#N/A'Expecting numeric in F372 / R372C6: got '#N/A'Expecting numeric in G372 / R372C7: got '#N/A'Expecting numeric in J372 / R372C10: got '#N/A'Expecting numeric in K372 / R372C11: got '#N/A'Expecting numeric in L372 / R372C12: got '#N/A'Expecting numeric in M372 / R372C13: got '#N/A'Expecting numeric in C373 / R373C3: got '#N/A'Expecting numeric in D373 / R373C4: got '#N/A'Expecting numeric in E373 / R373C5: got '#N/A'Expecting numeric in F373 / R373C6: got '#N/A'Expecting numeric in G373 / R373C7: got '#N/A'Expecting numeric in J373 / R373C10: got '#N/A'Expecting numeric in K373 / R373C11: got '#N/A'Expecting numeric in L373 / R373C12: got '#N/A'Expecting numeric in M373 / R373C13: got '#N/A'Expecting numeric in C374 / R374C3: got '#N/A'Expecting numeric in D374 / R374C4: got '#N/A'Expecting numeric in E374 / R374C5: got '#N/A'Expecting numeric in F374 / R374C6: got '#N/A'Expecting numeric in G374 / R374C7: got '#N/A'Expecting numeric in J374 / R374C10: got '#N/A'Expecting numeric in K374 / R374C11: got '#N/A'Expecting numeric in L374 / R374C12: got '#N/A'Expecting numeric in M374 / R374C13: got '#N/A'Expecting numeric in C375 / R375C3: got '#N/A'Expecting numeric in D375 / R375C4: got '#N/A'Expecting numeric in E375 / R375C5: got '#N/A'Expecting numeric in F375 / R375C6: got '#N/A'Expecting numeric in G375 / R375C7: got '#N/A'Expecting numeric in J375 / R375C10: got '#N/A'Expecting numeric in K375 / R375C11: got '#N/A'Expecting numeric in L375 / R375C12: got '#N/A'Expecting numeric in M375 / R375C13: got '#N/A'Expecting numeric in C376 / R376C3: got '#N/A'Expecting numeric in D376 / R376C4: got '#N/A'Expecting numeric in E376 / R376C5: got '#N/A'Expecting numeric in F376 / R376C6: got '#N/A'Expecting numeric in G376 / R376C7: got '#N/A'Expecting numeric in J376 / R376C10: got '#N/A'Expecting numeric in K376 / R376C11: got '#N/A'Expecting numeric in L376 / R376C12: got '#N/A'Expecting numeric in M376 / R376C13: got '#N/A'Expecting numeric in C377 / R377C3: got '#N/A'Expecting numeric in D377 / R377C4: got '#N/A'Expecting numeric in E377 / R377C5: got '#N/A'Expecting numeric in F377 / R377C6: got '#N/A'Expecting numeric in G377 / R377C7: got '#N/A'Expecting numeric in J377 / R377C10: got '#N/A'Expecting numeric in K377 / R377C11: got '#N/A'Expecting numeric in L377 / R377C12: got '#N/A'Expecting numeric in M377 / R377C13: got '#N/A'Expecting numeric in C378 / R378C3: got '#N/A'Expecting numeric in D378 / R378C4: got '#N/A'Expecting numeric in E378 / R378C5: got '#N/A'Expecting numeric in F378 / R378C6: got '#N/A'Expecting numeric in G378 / R378C7: got '#N/A'Expecting numeric in J378 / R378C10: got '#N/A'Expecting numeric in K378 / R378C11: got '#N/A'Expecting numeric in L378 / R378C12: got '#N/A'Expecting numeric in M378 / R378C13: got '#N/A'Expecting numeric in C379 / R379C3: got '#N/A'Expecting numeric in D379 / R379C4: got '#N/A'Expecting numeric in E379 / R379C5: got '#N/A'Expecting numeric in F379 / R379C6: got '#N/A'Expecting numeric in G379 / R379C7: got '#N/A'Expecting numeric in J379 / R379C10: got '#N/A'Expecting numeric in K379 / R379C11: got '#N/A'Expecting numeric in L379 / R379C12: got '#N/A'Expecting numeric in M379 / R379C13: got '#N/A'Expecting numeric in C380 / R380C3: got '#N/A'Expecting numeric in D380 / R380C4: got '#N/A'Expecting numeric in E380 / R380C5: got '#N/A'Expecting numeric in F380 / R380C6: got '#N/A'Expecting numeric in G380 / R380C7: got '#N/A'Expecting numeric in J380 / R380C10: got '#N/A'Expecting numeric in K380 / R380C11: got '#N/A'Expecting numeric in L380 / R380C12: got '#N/A'Expecting numeric in M380 / R380C13: got '#N/A'Expecting numeric in C381 / R381C3: got '#N/A'Expecting numeric in D381 / R381C4: got '#N/A'Expecting numeric in E381 / R381C5: got '#N/A'Expecting numeric in F381 / R381C6: got '#N/A'Expecting numeric in G381 / R381C7: got '#N/A'Expecting numeric in J381 / R381C10: got '#N/A'Expecting numeric in K381 / R381C11: got '#N/A'Expecting numeric in L381 / R381C12: got '#N/A'Expecting numeric in M381 / R381C13: got '#N/A'Expecting numeric in C382 / R382C3: got '#N/A'Expecting numeric in D382 / R382C4: got '#N/A'Expecting numeric in E382 / R382C5: got '#N/A'Expecting numeric in F382 / R382C6: got '#N/A'Expecting numeric in G382 / R382C7: got '#N/A'Expecting numeric in J382 / R382C10: got '#N/A'Expecting numeric in K382 / R382C11: got '#N/A'Expecting numeric in L382 / R382C12: got '#N/A'Expecting numeric in M382 / R382C13: got '#N/A'Expecting numeric in C383 / R383C3: got '#N/A'Expecting numeric in D383 / R383C4: got '#N/A'Expecting numeric in E383 / R383C5: got '#N/A'Expecting numeric in F383 / R383C6: got '#N/A'Expecting numeric in G383 / R383C7: got '#N/A'Expecting numeric in J383 / R383C10: got '#N/A'Expecting numeric in K383 / R383C11: got '#N/A'Expecting numeric in L383 / R383C12: got '#N/A'Expecting numeric in M383 / R383C13: got '#N/A'Expecting numeric in C384 / R384C3: got '#N/A'Expecting numeric in D384 / R384C4: got '#N/A'Expecting numeric in E384 / R384C5: got '#N/A'Expecting numeric in F384 / R384C6: got '#N/A'Expecting numeric in G384 / R384C7: got '#N/A'Expecting numeric in J384 / R384C10: got '#N/A'Expecting numeric in K384 / R384C11: got '#N/A'Expecting numeric in L384 / R384C12: got '#N/A'Expecting numeric in M384 / R384C13: got '#N/A'Expecting numeric in C385 / R385C3: got '#N/A'Expecting numeric in D385 / R385C4: got '#N/A'Expecting numeric in E385 / R385C5: got '#N/A'Expecting numeric in F385 / R385C6: got '#N/A'Expecting numeric in G385 / R385C7: got '#N/A'Expecting numeric in J385 / R385C10: got '#N/A'Expecting numeric in K385 / R385C11: got '#N/A'Expecting numeric in L385 / R385C12: got '#N/A'Expecting numeric in M385 / R385C13: got '#N/A'Expecting numeric in C386 / R386C3: got '#N/A'Expecting numeric in D386 / R386C4: got '#N/A'Expecting numeric in E386 / R386C5: got '#N/A'Expecting numeric in F386 / R386C6: got '#N/A'Expecting numeric in G386 / R386C7: got '#N/A'Expecting numeric in J386 / R386C10: got '#N/A'Expecting numeric in K386 / R386C11: got '#N/A'Expecting numeric in L386 / R386C12: got '#N/A'Expecting numeric in M386 / R386C13: got '#N/A'Expecting numeric in C387 / R387C3: got '#N/A'Expecting numeric in D387 / R387C4: got '#N/A'Expecting numeric in E387 / R387C5: got '#N/A'Expecting numeric in F387 / R387C6: got '#N/A'Expecting numeric in G387 / R387C7: got '#N/A'Expecting numeric in J387 / R387C10: got '#N/A'Expecting numeric in K387 / R387C11: got '#N/A'Expecting numeric in L387 / R387C12: got '#N/A'Expecting numeric in M387 / R387C13: got '#N/A'Expecting numeric in C388 / R388C3: got '#N/A'Expecting numeric in D388 / R388C4: got '#N/A'Expecting numeric in E388 / R388C5: got '#N/A'Expecting numeric in F388 / R388C6: got '#N/A'Expecting numeric in G388 / R388C7: got '#N/A'Expecting numeric in J388 / R388C10: got '#N/A'Expecting numeric in K388 / R388C11: got '#N/A'Expecting numeric in L388 / R388C12: got '#N/A'Expecting numeric in M388 / R388C13: got '#N/A'Expecting numeric in C389 / R389C3: got '#N/A'Expecting numeric in D389 / R389C4: got '#N/A'Expecting numeric in E389 / R389C5: got '#N/A'Expecting numeric in F389 / R389C6: got '#N/A'Expecting numeric in G389 / R389C7: got '#N/A'Expecting numeric in J389 / R389C10: got '#N/A'Expecting numeric in K389 / R389C11: got '#N/A'Expecting numeric in L389 / R389C12: got '#N/A'Expecting numeric in M389 / R389C13: got '#N/A'Expecting numeric in C390 / R390C3: got '#N/A'Expecting numeric in D390 / R390C4: got '#N/A'Expecting numeric in E390 / R390C5: got '#N/A'Expecting numeric in F390 / R390C6: got '#N/A'Expecting numeric in G390 / R390C7: got '#N/A'Expecting numeric in J390 / R390C10: got '#N/A'Expecting numeric in K390 / R390C11: got '#N/A'Expecting numeric in L390 / R390C12: got '#N/A'Expecting numeric in M390 / R390C13: got '#N/A'Expecting numeric in C391 / R391C3: got '#N/A'Expecting numeric in D391 / R391C4: got '#N/A'Expecting numeric in E391 / R391C5: got '#N/A'Expecting numeric in F391 / R391C6: got '#N/A'Expecting numeric in G391 / R391C7: got '#N/A'Expecting numeric in J391 / R391C10: got '#N/A'Expecting numeric in K391 / R391C11: got '#N/A'Expecting numeric in L391 / R391C12: got '#N/A'Expecting numeric in M391 / R391C13: got '#N/A'Expecting numeric in C392 / R392C3: got '#N/A'Expecting numeric in D392 / R392C4: got '#N/A'Expecting numeric in E392 / R392C5: got '#N/A'Expecting numeric in F392 / R392C6: got '#N/A'Expecting numeric in G392 / R392C7: got '#N/A'Expecting numeric in J392 / R392C10: got '#N/A'Expecting numeric in K392 / R392C11: got '#N/A'Expecting numeric in L392 / R392C12: got '#N/A'Expecting numeric in M392 / R392C13: got '#N/A'Expecting numeric in C393 / R393C3: got '#N/A'Expecting numeric in D393 / R393C4: got '#N/A'Expecting numeric in E393 / R393C5: got '#N/A'Expecting numeric in F393 / R393C6: got '#N/A'Expecting numeric in G393 / R393C7: got '#N/A'Expecting numeric in J393 / R393C10: got '#N/A'Expecting numeric in K393 / R393C11: got '#N/A'Expecting numeric in L393 / R393C12: got '#N/A'Expecting numeric in M393 / R393C13: got '#N/A'Expecting numeric in C394 / R394C3: got '#N/A'Expecting numeric in D394 / R394C4: got '#N/A'Expecting numeric in E394 / R394C5: got '#N/A'Expecting numeric in F394 / R394C6: got '#N/A'Expecting numeric in G394 / R394C7: got '#N/A'Expecting numeric in J394 / R394C10: got '#N/A'Expecting numeric in K394 / R394C11: got '#N/A'Expecting numeric in L394 / R394C12: got '#N/A'Expecting numeric in M394 / R394C13: got '#N/A'Expecting numeric in C395 / R395C3: got '#N/A'Expecting numeric in D395 / R395C4: got '#N/A'Expecting numeric in E395 / R395C5: got '#N/A'Expecting numeric in F395 / R395C6: got '#N/A'Expecting numeric in G395 / R395C7: got '#N/A'Expecting numeric in J395 / R395C10: got '#N/A'Expecting numeric in K395 / R395C11: got '#N/A'Expecting numeric in L395 / R395C12: got '#N/A'Expecting numeric in M395 / R395C13: got '#N/A'Expecting numeric in C396 / R396C3: got '#N/A'Expecting numeric in D396 / R396C4: got '#N/A'Expecting numeric in E396 / R396C5: got '#N/A'Expecting numeric in F396 / R396C6: got '#N/A'Expecting numeric in G396 / R396C7: got '#N/A'Expecting numeric in J396 / R396C10: got '#N/A'Expecting numeric in K396 / R396C11: got '#N/A'Expecting numeric in L396 / R396C12: got '#N/A'Expecting numeric in M396 / R396C13: got '#N/A'Expecting numeric in C397 / R397C3: got '#N/A'Expecting numeric in D397 / R397C4: got '#N/A'Expecting numeric in E397 / R397C5: got '#N/A'Expecting numeric in F397 / R397C6: got '#N/A'Expecting numeric in G397 / R397C7: got '#N/A'Expecting numeric in J397 / R397C10: got '#N/A'Expecting numeric in K397 / R397C11: got '#N/A'Expecting numeric in L397 / R397C12: got '#N/A'Expecting numeric in M397 / R397C13: got '#N/A'Expecting numeric in C398 / R398C3: got '#N/A'Expecting numeric in D398 / R398C4: got '#N/A'Expecting numeric in E398 / R398C5: got '#N/A'Expecting numeric in F398 / R398C6: got '#N/A'Expecting numeric in G398 / R398C7: got '#N/A'Expecting numeric in J398 / R398C10: got '#N/A'Expecting numeric in K398 / R398C11: got '#N/A'Expecting numeric in L398 / R398C12: got '#N/A'Expecting numeric in M398 / R398C13: got '#N/A'Expecting numeric in C399 / R399C3: got '#N/A'Expecting numeric in D399 / R399C4: got '#N/A'Expecting numeric in E399 / R399C5: got '#N/A'Expecting numeric in F399 / R399C6: got '#N/A'Expecting numeric in G399 / R399C7: got '#N/A'Expecting numeric in J399 / R399C10: got '#N/A'Expecting numeric in K399 / R399C11: got '#N/A'Expecting numeric in L399 / R399C12: got '#N/A'Expecting numeric in M399 / R399C13: got '#N/A'Expecting numeric in C400 / R400C3: got '#N/A'Expecting numeric in D400 / R400C4: got '#N/A'Expecting numeric in E400 / R400C5: got '#N/A'Expecting numeric in F400 / R400C6: got '#N/A'Expecting numeric in G400 / R400C7: got '#N/A'Expecting numeric in J400 / R400C10: got '#N/A'Expecting numeric in K400 / R400C11: got '#N/A'Expecting numeric in L400 / R400C12: got '#N/A'Expecting numeric in M400 / R400C13: got '#N/A'Expecting numeric in C401 / R401C3: got '#N/A'Expecting numeric in D401 / R401C4: got '#N/A'Expecting numeric in E401 / R401C5: got '#N/A'Expecting numeric in F401 / R401C6: got '#N/A'Expecting numeric in G401 / R401C7: got '#N/A'Expecting numeric in J401 / R401C10: got '#N/A'Expecting numeric in K401 / R401C11: got '#N/A'Expecting numeric in L401 / R401C12: got '#N/A'Expecting numeric in M401 / R401C13: got '#N/A'Expecting numeric in C402 / R402C3: got '#N/A'Expecting numeric in D402 / R402C4: got '#N/A'Expecting numeric in E402 / R402C5: got '#N/A'Expecting numeric in F402 / R402C6: got '#N/A'Expecting numeric in G402 / R402C7: got '#N/A'Expecting numeric in J402 / R402C10: got '#N/A'Expecting numeric in K402 / R402C11: got '#N/A'Expecting numeric in L402 / R402C12: got '#N/A'Expecting numeric in M402 / R402C13: got '#N/A'Expecting numeric in C403 / R403C3: got '#N/A'Expecting numeric in D403 / R403C4: got '#N/A'Expecting numeric in E403 / R403C5: got '#N/A'Expecting numeric in F403 / R403C6: got '#N/A'Expecting numeric in G403 / R403C7: got '#N/A'Expecting numeric in J403 / R403C10: got '#N/A'Expecting numeric in K403 / R403C11: got '#N/A'Expecting numeric in L403 / R403C12: got '#N/A'Expecting numeric in M403 / R403C13: got '#N/A'Expecting numeric in C404 / R404C3: got '#N/A'Expecting numeric in D404 / R404C4: got '#N/A'Expecting numeric in E404 / R404C5: got '#N/A'Expecting numeric in F404 / R404C6: got '#N/A'Expecting numeric in G404 / R404C7: got '#N/A'Expecting numeric in J404 / R404C10: got '#N/A'Expecting numeric in K404 / R404C11: got '#N/A'Expecting numeric in L404 / R404C12: got '#N/A'Expecting numeric in M404 / R404C13: got '#N/A'Expecting numeric in C405 / R405C3: got '#N/A'Expecting numeric in D405 / R405C4: got '#N/A'Expecting numeric in E405 / R405C5: got '#N/A'Expecting numeric in F405 / R405C6: got '#N/A'Expecting numeric in G405 / R405C7: got '#N/A'Expecting numeric in J405 / R405C10: got '#N/A'Expecting numeric in K405 / R405C11: got '#N/A'Expecting numeric in L405 / R405C12: got '#N/A'Expecting numeric in M405 / R405C13: got '#N/A'Expecting numeric in C406 / R406C3: got '#N/A'Expecting numeric in D406 / R406C4: got '#N/A'Expecting numeric in E406 / R406C5: got '#N/A'Expecting numeric in F406 / R406C6: got '#N/A'Expecting numeric in G406 / R406C7: got '#N/A'Expecting numeric in J406 / R406C10: got '#N/A'Expecting numeric in K406 / R406C11: got '#N/A'Expecting numeric in L406 / R406C12: got '#N/A'Expecting numeric in M406 / R406C13: got '#N/A'Expecting numeric in C407 / R407C3: got '#N/A'Expecting numeric in D407 / R407C4: got '#N/A'Expecting numeric in E407 / R407C5: got '#N/A'Expecting numeric in F407 / R407C6: got '#N/A'Expecting numeric in G407 / R407C7: got '#N/A'Expecting numeric in J407 / R407C10: got '#N/A'Expecting numeric in K407 / R407C11: got '#N/A'Expecting numeric in L407 / R407C12: got '#N/A'Expecting numeric in M407 / R407C13: got '#N/A'Expecting numeric in C408 / R408C3: got '#N/A'Expecting numeric in D408 / R408C4: got '#N/A'Expecting numeric in E408 / R408C5: got '#N/A'Expecting numeric in F408 / R408C6: got '#N/A'Expecting numeric in G408 / R408C7: got '#N/A'Expecting numeric in J408 / R408C10: got '#N/A'Expecting numeric in K408 / R408C11: got '#N/A'Expecting numeric in L408 / R408C12: got '#N/A'Expecting numeric in M408 / R408C13: got '#N/A'Expecting numeric in C409 / R409C3: got '#N/A'Expecting numeric in D409 / R409C4: got '#N/A'Expecting numeric in E409 / R409C5: got '#N/A'Expecting numeric in F409 / R409C6: got '#N/A'Expecting numeric in G409 / R409C7: got '#N/A'Expecting numeric in J409 / R409C10: got '#N/A'Expecting numeric in K409 / R409C11: got '#N/A'Expecting numeric in L409 / R409C12: got '#N/A'Expecting numeric in M409 / R409C13: got '#N/A'Expecting numeric in C410 / R410C3: got '#N/A'Expecting numeric in D410 / R410C4: got '#N/A'Expecting numeric in E410 / R410C5: got '#N/A'Expecting numeric in F410 / R410C6: got '#N/A'Expecting numeric in G410 / R410C7: got '#N/A'Expecting numeric in J410 / R410C10: got '#N/A'Expecting numeric in K410 / R410C11: got '#N/A'Expecting numeric in L410 / R410C12: got '#N/A'Expecting numeric in M410 / R410C13: got '#N/A'Expecting numeric in C411 / R411C3: got '#N/A'Expecting numeric in D411 / R411C4: got '#N/A'Expecting numeric in E411 / R411C5: got '#N/A'Expecting numeric in F411 / R411C6: got '#N/A'Expecting numeric in G411 / R411C7: got '#N/A'Expecting numeric in J411 / R411C10: got '#N/A'Expecting numeric in K411 / R411C11: got '#N/A'Expecting numeric in L411 / R411C12: got '#N/A'Expecting numeric in M411 / R411C13: got '#N/A'Expecting numeric in C412 / R412C3: got '#N/A'Expecting numeric in D412 / R412C4: got '#N/A'Expecting numeric in E412 / R412C5: got '#N/A'Expecting numeric in F412 / R412C6: got '#N/A'Expecting numeric in G412 / R412C7: got '#N/A'Expecting numeric in J412 / R412C10: got '#N/A'Expecting numeric in K412 / R412C11: got '#N/A'Expecting numeric in L412 / R412C12: got '#N/A'Expecting numeric in M412 / R412C13: got '#N/A'Expecting numeric in C413 / R413C3: got '#N/A'Expecting numeric in D413 / R413C4: got '#N/A'Expecting numeric in E413 / R413C5: got '#N/A'Expecting numeric in F413 / R413C6: got '#N/A'Expecting numeric in G413 / R413C7: got '#N/A'Expecting numeric in J413 / R413C10: got '#N/A'Expecting numeric in K413 / R413C11: got '#N/A'Expecting numeric in L413 / R413C12: got '#N/A'Expecting numeric in M413 / R413C13: got '#N/A'Expecting numeric in C414 / R414C3: got '#N/A'Expecting numeric in D414 / R414C4: got '#N/A'Expecting numeric in E414 / R414C5: got '#N/A'Expecting numeric in F414 / R414C6: got '#N/A'Expecting numeric in G414 / R414C7: got '#N/A'Expecting numeric in J414 / R414C10: got '#N/A'Expecting numeric in K414 / R414C11: got '#N/A'Expecting numeric in L414 / R414C12: got '#N/A'Expecting numeric in M414 / R414C13: got '#N/A'Expecting numeric in C415 / R415C3: got '#N/A'Expecting numeric in D415 / R415C4: got '#N/A'Expecting numeric in E415 / R415C5: got '#N/A'Expecting numeric in F415 / R415C6: got '#N/A'Expecting numeric in G415 / R415C7: got '#N/A'Expecting numeric in J415 / R415C10: got '#N/A'Expecting numeric in K415 / R415C11: got '#N/A'Expecting numeric in L415 / R415C12: got '#N/A'Expecting numeric in M415 / R415C13: got '#N/A'Expecting numeric in C416 / R416C3: got '#N/A'Expecting numeric in D416 / R416C4: got '#N/A'Expecting numeric in E416 / R416C5: got '#N/A'Expecting numeric in F416 / R416C6: got '#N/A'Expecting numeric in G416 / R416C7: got '#N/A'Expecting numeric in J416 / R416C10: got '#N/A'Expecting numeric in K416 / R416C11: got '#N/A'Expecting numeric in L416 / R416C12: got '#N/A'Expecting numeric in M416 / R416C13: got '#N/A'Expecting numeric in C417 / R417C3: got '#N/A'Expecting numeric in D417 / R417C4: got '#N/A'Expecting numeric in E417 / R417C5: got '#N/A'Expecting numeric in F417 / R417C6: got '#N/A'Expecting numeric in G417 / R417C7: got '#N/A'Expecting numeric in J417 / R417C10: got '#N/A'Expecting numeric in K417 / R417C11: got '#N/A'Expecting numeric in L417 / R417C12: got '#N/A'Expecting numeric in M417 / R417C13: got '#N/A'Expecting numeric in C418 / R418C3: got '#N/A'Expecting numeric in D418 / R418C4: got '#N/A'Expecting numeric in E418 / R418C5: got '#N/A'Expecting numeric in F418 / R418C6: got '#N/A'Expecting numeric in G418 / R418C7: got '#N/A'Expecting numeric in J418 / R418C10: got '#N/A'Expecting numeric in K418 / R418C11: got '#N/A'Expecting numeric in L418 / R418C12: got '#N/A'Expecting numeric in M418 / R418C13: got '#N/A'Expecting numeric in C419 / R419C3: got '#N/A'Expecting numeric in D419 / R419C4: got '#N/A'Expecting numeric in E419 / R419C5: got '#N/A'Expecting numeric in F419 / R419C6: got '#N/A'Expecting numeric in G419 / R419C7: got '#N/A'Expecting numeric in J419 / R419C10: got '#N/A'Expecting numeric in K419 / R419C11: got '#N/A'Expecting numeric in L419 / R419C12: got '#N/A'Expecting numeric in M419 / R419C13: got '#N/A'Expecting numeric in C420 / R420C3: got '#N/A'Expecting numeric in D420 / R420C4: got '#N/A'Expecting numeric in E420 / R420C5: got '#N/A'Expecting numeric in F420 / R420C6: got '#N/A'Expecting numeric in G420 / R420C7: got '#N/A'Expecting numeric in J420 / R420C10: got '#N/A'Expecting numeric in K420 / R420C11: got '#N/A'Expecting numeric in L420 / R420C12: got '#N/A'Expecting numeric in M420 / R420C13: got '#N/A'Expecting numeric in C421 / R421C3: got '#N/A'Expecting numeric in D421 / R421C4: got '#N/A'Expecting numeric in E421 / R421C5: got '#N/A'Expecting numeric in F421 / R421C6: got '#N/A'Expecting numeric in G421 / R421C7: got '#N/A'Expecting numeric in J421 / R421C10: got '#N/A'Expecting numeric in K421 / R421C11: got '#N/A'Expecting numeric in L421 / R421C12: got '#N/A'Expecting numeric in M421 / R421C13: got '#N/A'Expecting numeric in C422 / R422C3: got '#N/A'Expecting numeric in D422 / R422C4: got '#N/A'Expecting numeric in E422 / R422C5: got '#N/A'Expecting numeric in F422 / R422C6: got '#N/A'Expecting numeric in G422 / R422C7: got '#N/A'Expecting numeric in J422 / R422C10: got '#N/A'Expecting numeric in K422 / R422C11: got '#N/A'Expecting numeric in L422 / R422C12: got '#N/A'Expecting numeric in M422 / R422C13: got '#N/A'Expecting numeric in C423 / R423C3: got '#N/A'Expecting numeric in D423 / R423C4: got '#N/A'Expecting numeric in E423 / R423C5: got '#N/A'Expecting numeric in F423 / R423C6: got '#N/A'Expecting numeric in G423 / R423C7: got '#N/A'Expecting numeric in J423 / R423C10: got '#N/A'Expecting numeric in K423 / R423C11: got '#N/A'Expecting numeric in L423 / R423C12: got '#N/A'Expecting numeric in M423 / R423C13: got '#N/A'Expecting numeric in C424 / R424C3: got '#N/A'Expecting numeric in D424 / R424C4: got '#N/A'Expecting numeric in E424 / R424C5: got '#N/A'Expecting numeric in F424 / R424C6: got '#N/A'Expecting numeric in G424 / R424C7: got '#N/A'Expecting numeric in J424 / R424C10: got '#N/A'Expecting numeric in K424 / R424C11: got '#N/A'Expecting numeric in L424 / R424C12: got '#N/A'Expecting numeric in M424 / R424C13: got '#N/A'Expecting numeric in C425 / R425C3: got '#N/A'Expecting numeric in D425 / R425C4: got '#N/A'Expecting numeric in E425 / R425C5: got '#N/A'Expecting numeric in F425 / R425C6: got '#N/A'Expecting numeric in G425 / R425C7: got '#N/A'Expecting numeric in J425 / R425C10: got '#N/A'Expecting numeric in K425 / R425C11: got '#N/A'Expecting numeric in L425 / R425C12: got '#N/A'Expecting numeric in M425 / R425C13: got '#N/A'Expecting numeric in C426 / R426C3: got '#N/A'Expecting numeric in D426 / R426C4: got '#N/A'Expecting numeric in E426 / R426C5: got '#N/A'Expecting numeric in F426 / R426C6: got '#N/A'Expecting numeric in G426 / R426C7: got '#N/A'Expecting numeric in J426 / R426C10: got '#N/A'Expecting numeric in K426 / R426C11: got '#N/A'Expecting numeric in L426 / R426C12: got '#N/A'Expecting numeric in M426 / R426C13: got '#N/A'Expecting numeric in C427 / R427C3: got '#N/A'Expecting numeric in D427 / R427C4: got '#N/A'Expecting numeric in E427 / R427C5: got '#N/A'Expecting numeric in F427 / R427C6: got '#N/A'Expecting numeric in G427 / R427C7: got '#N/A'Expecting numeric in J427 / R427C10: got '#N/A'Expecting numeric in K427 / R427C11: got '#N/A'Expecting numeric in L427 / R427C12: got '#N/A'Expecting numeric in M427 / R427C13: got '#N/A'Expecting numeric in C428 / R428C3: got '#N/A'Expecting numeric in D428 / R428C4: got '#N/A'Expecting numeric in E428 / R428C5: got '#N/A'Expecting numeric in F428 / R428C6: got '#N/A'Expecting numeric in G428 / R428C7: got '#N/A'Expecting numeric in J428 / R428C10: got '#N/A'Expecting numeric in K428 / R428C11: got '#N/A'Expecting numeric in L428 / R428C12: got '#N/A'Expecting numeric in M428 / R428C13: got '#N/A'Expecting numeric in C429 / R429C3: got '#N/A'Expecting numeric in D429 / R429C4: got '#N/A'Expecting numeric in E429 / R429C5: got '#N/A'Expecting numeric in F429 / R429C6: got '#N/A'Expecting numeric in G429 / R429C7: got '#N/A'Expecting numeric in J429 / R429C10: got '#N/A'Expecting numeric in K429 / R429C11: got '#N/A'Expecting numeric in L429 / R429C12: got '#N/A'Expecting numeric in M429 / R429C13: got '#N/A'Expecting numeric in C430 / R430C3: got '#N/A'Expecting numeric in D430 / R430C4: got '#N/A'Expecting numeric in E430 / R430C5: got '#N/A'Expecting numeric in F430 / R430C6: got '#N/A'Expecting numeric in G430 / R430C7: got '#N/A'Expecting numeric in J430 / R430C10: got '#N/A'Expecting numeric in K430 / R430C11: got '#N/A'Expecting numeric in L430 / R430C12: got '#N/A'Expecting numeric in M430 / R430C13: got '#N/A'Expecting numeric in C431 / R431C3: got '#N/A'Expecting numeric in D431 / R431C4: got '#N/A'Expecting numeric in E431 / R431C5: got '#N/A'Expecting numeric in F431 / R431C6: got '#N/A'Expecting numeric in G431 / R431C7: got '#N/A'Expecting numeric in J431 / R431C10: got '#N/A'Expecting numeric in K431 / R431C11: got '#N/A'Expecting numeric in L431 / R431C12: got '#N/A'Expecting numeric in M431 / R431C13: got '#N/A'Expecting numeric in C432 / R432C3: got '#N/A'Expecting numeric in D432 / R432C4: got '#N/A'Expecting numeric in E432 / R432C5: got '#N/A'Expecting numeric in F432 / R432C6: got '#N/A'Expecting numeric in G432 / R432C7: got '#N/A'Expecting numeric in J432 / R432C10: got '#N/A'Expecting numeric in K432 / R432C11: got '#N/A'Expecting numeric in L432 / R432C12: got '#N/A'Expecting numeric in M432 / R432C13: got '#N/A'Expecting numeric in C433 / R433C3: got '#N/A'Expecting numeric in D433 / R433C4: got '#N/A'Expecting numeric in E433 / R433C5: got '#N/A'Expecting numeric in F433 / R433C6: got '#N/A'Expecting numeric in G433 / R433C7: got '#N/A'Expecting numeric in J433 / R433C10: got '#N/A'Expecting numeric in K433 / R433C11: got '#N/A'Expecting numeric in L433 / R433C12: got '#N/A'Expecting numeric in M433 / R433C13: got '#N/A'Expecting numeric in C434 / R434C3: got '#N/A'Expecting numeric in D434 / R434C4: got '#N/A'Expecting numeric in E434 / R434C5: got '#N/A'Expecting numeric in F434 / R434C6: got '#N/A'Expecting numeric in G434 / R434C7: got '#N/A'Expecting numeric in J434 / R434C10: got '#N/A'Expecting numeric in K434 / R434C11: got '#N/A'Expecting numeric in L434 / R434C12: got '#N/A'Expecting numeric in M434 / R434C13: got '#N/A'Expecting numeric in C435 / R435C3: got '#N/A'Expecting numeric in D435 / R435C4: got '#N/A'Expecting numeric in E435 / R435C5: got '#N/A'Expecting numeric in F435 / R435C6: got '#N/A'Expecting numeric in G435 / R435C7: got '#N/A'Expecting numeric in J435 / R435C10: got '#N/A'Expecting numeric in K435 / R435C11: got '#N/A'Expecting numeric in L435 / R435C12: got '#N/A'Expecting numeric in M435 / R435C13: got '#N/A'Expecting numeric in C436 / R436C3: got '#N/A'Expecting numeric in D436 / R436C4: got '#N/A'Expecting numeric in E436 / R436C5: got '#N/A'Expecting numeric in F436 / R436C6: got '#N/A'Expecting numeric in G436 / R436C7: got '#N/A'Expecting numeric in J436 / R436C10: got '#N/A'Expecting numeric in K436 / R436C11: got '#N/A'Expecting numeric in L436 / R436C12: got '#N/A'Expecting numeric in M436 / R436C13: got '#N/A'Expecting numeric in C437 / R437C3: got '#N/A'Expecting numeric in D437 / R437C4: got '#N/A'Expecting numeric in E437 / R437C5: got '#N/A'Expecting numeric in F437 / R437C6: got '#N/A'Expecting numeric in G437 / R437C7: got '#N/A'Expecting numeric in J437 / R437C10: got '#N/A'Expecting numeric in K437 / R437C11: got '#N/A'Expecting numeric in L437 / R437C12: got '#N/A'Expecting numeric in M437 / R437C13: got '#N/A'Expecting numeric in C438 / R438C3: got '#N/A'Expecting numeric in D438 / R438C4: got '#N/A'Expecting numeric in E438 / R438C5: got '#N/A'Expecting numeric in F438 / R438C6: got '#N/A'Expecting numeric in G438 / R438C7: got '#N/A'Expecting numeric in J438 / R438C10: got '#N/A'Expecting numeric in K438 / R438C11: got '#N/A'Expecting numeric in L438 / R438C12: got '#N/A'Expecting numeric in M438 / R438C13: got '#N/A'Expecting numeric in C439 / R439C3: got '#N/A'Expecting numeric in D439 / R439C4: got '#N/A'Expecting numeric in E439 / R439C5: got '#N/A'Expecting numeric in F439 / R439C6: got '#N/A'Expecting numeric in G439 / R439C7: got '#N/A'Expecting numeric in J439 / R439C10: got '#N/A'Expecting numeric in K439 / R439C11: got '#N/A'Expecting numeric in L439 / R439C12: got '#N/A'Expecting numeric in M439 / R439C13: got '#N/A'Expecting numeric in C440 / R440C3: got '#N/A'Expecting numeric in D440 / R440C4: got '#N/A'Expecting numeric in E440 / R440C5: got '#N/A'Expecting numeric in F440 / R440C6: got '#N/A'Expecting numeric in G440 / R440C7: got '#N/A'Expecting numeric in J440 / R440C10: got '#N/A'Expecting numeric in K440 / R440C11: got '#N/A'Expecting numeric in L440 / R440C12: got '#N/A'Expecting numeric in M440 / R440C13: got '#N/A'Expecting numeric in C441 / R441C3: got '#N/A'Expecting numeric in D441 / R441C4: got '#N/A'Expecting numeric in E441 / R441C5: got '#N/A'Expecting numeric in F441 / R441C6: got '#N/A'Expecting numeric in G441 / R441C7: got '#N/A'Expecting numeric in J441 / R441C10: got '#N/A'Expecting numeric in K441 / R441C11: got '#N/A'Expecting numeric in L441 / R441C12: got '#N/A'Expecting numeric in M441 / R441C13: got '#N/A'Expecting numeric in C442 / R442C3: got '#N/A'Expecting numeric in D442 / R442C4: got '#N/A'Expecting numeric in E442 / R442C5: got '#N/A'Expecting numeric in F442 / R442C6: got '#N/A'Expecting numeric in G442 / R442C7: got '#N/A'Expecting numeric in J442 / R442C10: got '#N/A'Expecting numeric in K442 / R442C11: got '#N/A'Expecting numeric in L442 / R442C12: got '#N/A'Expecting numeric in M442 / R442C13: got '#N/A'Expecting numeric in C443 / R443C3: got '#N/A'Expecting numeric in D443 / R443C4: got '#N/A'Expecting numeric in E443 / R443C5: got '#N/A'Expecting numeric in F443 / R443C6: got '#N/A'Expecting numeric in G443 / R443C7: got '#N/A'Expecting numeric in J443 / R443C10: got '#N/A'Expecting numeric in K443 / R443C11: got '#N/A'Expecting numeric in L443 / R443C12: got '#N/A'Expecting numeric in M443 / R443C13: got '#N/A'Expecting numeric in C444 / R444C3: got '#N/A'Expecting numeric in D444 / R444C4: got '#N/A'Expecting numeric in E444 / R444C5: got '#N/A'Expecting numeric in F444 / R444C6: got '#N/A'Expecting numeric in G444 / R444C7: got '#N/A'Expecting numeric in J444 / R444C10: got '#N/A'Expecting numeric in K444 / R444C11: got '#N/A'Expecting numeric in L444 / R444C12: got '#N/A'Expecting numeric in M444 / R444C13: got '#N/A'Expecting numeric in C445 / R445C3: got '#N/A'Expecting numeric in D445 / R445C4: got '#N/A'Expecting numeric in E445 / R445C5: got '#N/A'Expecting numeric in F445 / R445C6: got '#N/A'Expecting numeric in G445 / R445C7: got '#N/A'Expecting numeric in J445 / R445C10: got '#N/A'Expecting numeric in K445 / R445C11: got '#N/A'Expecting numeric in L445 / R445C12: got '#N/A'Expecting numeric in M445 / R445C13: got '#N/A'Expecting numeric in C446 / R446C3: got '#N/A'Expecting numeric in D446 / R446C4: got '#N/A'Expecting numeric in E446 / R446C5: got '#N/A'Expecting numeric in F446 / R446C6: got '#N/A'Expecting numeric in G446 / R446C7: got '#N/A'Expecting numeric in J446 / R446C10: got '#N/A'Expecting numeric in K446 / R446C11: got '#N/A'Expecting numeric in L446 / R446C12: got '#N/A'Expecting numeric in M446 / R446C13: got '#N/A'Expecting numeric in C447 / R447C3: got '#N/A'Expecting numeric in D447 / R447C4: got '#N/A'Expecting numeric in E447 / R447C5: got '#N/A'Expecting numeric in F447 / R447C6: got '#N/A'Expecting numeric in G447 / R447C7: got '#N/A'Expecting numeric in J447 / R447C10: got '#N/A'Expecting numeric in K447 / R447C11: got '#N/A'Expecting numeric in L447 / R447C12: got '#N/A'Expecting numeric in M447 / R447C13: got '#N/A'Expecting numeric in C448 / R448C3: got '#N/A'Expecting numeric in D448 / R448C4: got '#N/A'Expecting numeric in E448 / R448C5: got '#N/A'Expecting numeric in F448 / R448C6: got '#N/A'Expecting numeric in G448 / R448C7: got '#N/A'Expecting numeric in J448 / R448C10: got '#N/A'Expecting numeric in K448 / R448C11: got '#N/A'Expecting numeric in L448 / R448C12: got '#N/A'Expecting numeric in M448 / R448C13: got '#N/A'Expecting numeric in C449 / R449C3: got '#N/A'Expecting numeric in D449 / R449C4: got '#N/A'Expecting numeric in E449 / R449C5: got '#N/A'Expecting numeric in F449 / R449C6: got '#N/A'Expecting numeric in G449 / R449C7: got '#N/A'Expecting numeric in J449 / R449C10: got '#N/A'Expecting numeric in K449 / R449C11: got '#N/A'Expecting numeric in L449 / R449C12: got '#N/A'Expecting numeric in M449 / R449C13: got '#N/A'Expecting numeric in C450 / R450C3: got '#N/A'Expecting numeric in D450 / R450C4: got '#N/A'Expecting numeric in E450 / R450C5: got '#N/A'Expecting numeric in F450 / R450C6: got '#N/A'Expecting numeric in G450 / R450C7: got '#N/A'Expecting numeric in J450 / R450C10: got '#N/A'Expecting numeric in K450 / R450C11: got '#N/A'Expecting numeric in L450 / R450C12: got '#N/A'Expecting numeric in M450 / R450C13: got '#N/A'Expecting numeric in C451 / R451C3: got '#N/A'Expecting numeric in D451 / R451C4: got '#N/A'Expecting numeric in E451 / R451C5: got '#N/A'Expecting numeric in F451 / R451C6: got '#N/A'Expecting numeric in G451 / R451C7: got '#N/A'Expecting numeric in J451 / R451C10: got '#N/A'Expecting numeric in K451 / R451C11: got '#N/A'Expecting numeric in L451 / R451C12: got '#N/A'Expecting numeric in M451 / R451C13: got '#N/A'Expecting numeric in C452 / R452C3: got '#N/A'Expecting numeric in D452 / R452C4: got '#N/A'Expecting numeric in E452 / R452C5: got '#N/A'Expecting numeric in F452 / R452C6: got '#N/A'Expecting numeric in G452 / R452C7: got '#N/A'Expecting numeric in J452 / R452C10: got '#N/A'Expecting numeric in K452 / R452C11: got '#N/A'Expecting numeric in L452 / R452C12: got '#N/A'Expecting numeric in M452 / R452C13: got '#N/A'Expecting numeric in C453 / R453C3: got '#N/A'Expecting numeric in D453 / R453C4: got '#N/A'Expecting numeric in E453 / R453C5: got '#N/A'Expecting numeric in F453 / R453C6: got '#N/A'Expecting numeric in G453 / R453C7: got '#N/A'Expecting numeric in J453 / R453C10: got '#N/A'Expecting numeric in K453 / R453C11: got '#N/A'Expecting numeric in L453 / R453C12: got '#N/A'Expecting numeric in M453 / R453C13: got '#N/A'Expecting numeric in C454 / R454C3: got '#N/A'Expecting numeric in D454 / R454C4: got '#N/A'Expecting numeric in E454 / R454C5: got '#N/A'Expecting numeric in F454 / R454C6: got '#N/A'Expecting numeric in G454 / R454C7: got '#N/A'Expecting numeric in J454 / R454C10: got '#N/A'Expecting numeric in K454 / R454C11: got '#N/A'Expecting numeric in L454 / R454C12: got '#N/A'Expecting numeric in M454 / R454C13: got '#N/A'Expecting numeric in C455 / R455C3: got '#N/A'Expecting numeric in D455 / R455C4: got '#N/A'Expecting numeric in E455 / R455C5: got '#N/A'Expecting numeric in F455 / R455C6: got '#N/A'Expecting numeric in G455 / R455C7: got '#N/A'Expecting numeric in J455 / R455C10: got '#N/A'Expecting numeric in K455 / R455C11: got '#N/A'Expecting numeric in L455 / R455C12: got '#N/A'Expecting numeric in M455 / R455C13: got '#N/A'Expecting numeric in C456 / R456C3: got '#N/A'Expecting numeric in D456 / R456C4: got '#N/A'Expecting numeric in E456 / R456C5: got '#N/A'Expecting numeric in F456 / R456C6: got '#N/A'Expecting numeric in G456 / R456C7: got '#N/A'Expecting numeric in J456 / R456C10: got '#N/A'Expecting numeric in K456 / R456C11: got '#N/A'Expecting numeric in L456 / R456C12: got '#N/A'Expecting numeric in M456 / R456C13: got '#N/A'Expecting numeric in C457 / R457C3: got '#N/A'Expecting numeric in D457 / R457C4: got '#N/A'Expecting numeric in E457 / R457C5: got '#N/A'Expecting numeric in F457 / R457C6: got '#N/A'Expecting numeric in G457 / R457C7: got '#N/A'Expecting numeric in J457 / R457C10: got '#N/A'Expecting numeric in K457 / R457C11: got '#N/A'Expecting numeric in L457 / R457C12: got '#N/A'Expecting numeric in M457 / R457C13: got '#N/A'Expecting numeric in C458 / R458C3: got '#N/A'Expecting numeric in D458 / R458C4: got '#N/A'Expecting numeric in E458 / R458C5: got '#N/A'Expecting numeric in F458 / R458C6: got '#N/A'Expecting numeric in G458 / R458C7: got '#N/A'Expecting numeric in J458 / R458C10: got '#N/A'Expecting numeric in K458 / R458C11: got '#N/A'Expecting numeric in L458 / R458C12: got '#N/A'Expecting numeric in M458 / R458C13: got '#N/A'Expecting numeric in C459 / R459C3: got '#N/A'Expecting numeric in D459 / R459C4: got '#N/A'Expecting numeric in E459 / R459C5: got '#N/A'Expecting numeric in F459 / R459C6: got '#N/A'Expecting numeric in G459 / R459C7: got '#N/A'Expecting numeric in J459 / R459C10: got '#N/A'Expecting numeric in K459 / R459C11: got '#N/A'Expecting numeric in L459 / R459C12: got '#N/A'Expecting numeric in M459 / R459C13: got '#N/A'Expecting numeric in C460 / R460C3: got '#N/A'Expecting numeric in D460 / R460C4: got '#N/A'Expecting numeric in E460 / R460C5: got '#N/A'Expecting numeric in F460 / R460C6: got '#N/A'Expecting numeric in G460 / R460C7: got '#N/A'Expecting numeric in J460 / R460C10: got '#N/A'Expecting numeric in K460 / R460C11: got '#N/A'Expecting numeric in L460 / R460C12: got '#N/A'Expecting numeric in M460 / R460C13: got '#N/A'Expecting numeric in C461 / R461C3: got '#N/A'Expecting numeric in D461 / R461C4: got '#N/A'Expecting numeric in E461 / R461C5: got '#N/A'Expecting numeric in F461 / R461C6: got '#N/A'Expecting numeric in G461 / R461C7: got '#N/A'Expecting numeric in J461 / R461C10: got '#N/A'Expecting numeric in K461 / R461C11: got '#N/A'Expecting numeric in L461 / R461C12: got '#N/A'Expecting numeric in M461 / R461C13: got '#N/A'Expecting numeric in C462 / R462C3: got '#N/A'Expecting numeric in D462 / R462C4: got '#N/A'Expecting numeric in E462 / R462C5: got '#N/A'Expecting numeric in F462 / R462C6: got '#N/A'Expecting numeric in G462 / R462C7: got '#N/A'Expecting numeric in J462 / R462C10: got '#N/A'Expecting numeric in K462 / R462C11: got '#N/A'Expecting numeric in L462 / R462C12: got '#N/A'Expecting numeric in M462 / R462C13: got '#N/A'Expecting numeric in C463 / R463C3: got '#N/A'Expecting numeric in D463 / R463C4: got '#N/A'Expecting numeric in E463 / R463C5: got '#N/A'Expecting numeric in F463 / R463C6: got '#N/A'Expecting numeric in G463 / R463C7: got '#N/A'Expecting numeric in J463 / R463C10: got '#N/A'Expecting numeric in K463 / R463C11: got '#N/A'Expecting numeric in L463 / R463C12: got '#N/A'Expecting numeric in M463 / R463C13: got '#N/A'Expecting numeric in C464 / R464C3: got '#N/A'Expecting numeric in D464 / R464C4: got '#N/A'Expecting numeric in E464 / R464C5: got '#N/A'Expecting numeric in F464 / R464C6: got '#N/A'Expecting numeric in G464 / R464C7: got '#N/A'Expecting numeric in J464 / R464C10: got '#N/A'Expecting numeric in K464 / R464C11: got '#N/A'Expecting numeric in L464 / R464C12: got '#N/A'Expecting numeric in M464 / R464C13: got '#N/A'Expecting numeric in C465 / R465C3: got '#N/A'Expecting numeric in D465 / R465C4: got '#N/A'Expecting numeric in E465 / R465C5: got '#N/A'Expecting numeric in F465 / R465C6: got '#N/A'Expecting numeric in G465 / R465C7: got '#N/A'Expecting numeric in J465 / R465C10: got '#N/A'Expecting numeric in K465 / R465C11: got '#N/A'Expecting numeric in L465 / R465C12: got '#N/A'Expecting numeric in M465 / R465C13: got '#N/A'Expecting numeric in C466 / R466C3: got '#N/A'Expecting numeric in D466 / R466C4: got '#N/A'Expecting numeric in E466 / R466C5: got '#N/A'Expecting numeric in F466 / R466C6: got '#N/A'Expecting numeric in G466 / R466C7: got '#N/A'Expecting numeric in J466 / R466C10: got '#N/A'Expecting numeric in K466 / R466C11: got '#N/A'Expecting numeric in L466 / R466C12: got '#N/A'Expecting numeric in M466 / R466C13: got '#N/A'Expecting numeric in C467 / R467C3: got '#N/A'Expecting numeric in D467 / R467C4: got '#N/A'Expecting numeric in E467 / R467C5: got '#N/A'Expecting numeric in F467 / R467C6: got '#N/A'Expecting numeric in G467 / R467C7: got '#N/A'Expecting numeric in J467 / R467C10: got '#N/A'Expecting numeric in K467 / R467C11: got '#N/A'Expecting numeric in L467 / R467C12: got '#N/A'Expecting numeric in M467 / R467C13: got '#N/A'Expecting numeric in C468 / R468C3: got '#N/A'Expecting numeric in D468 / R468C4: got '#N/A'Expecting numeric in E468 / R468C5: got '#N/A'Expecting numeric in F468 / R468C6: got '#N/A'Expecting numeric in G468 / R468C7: got '#N/A'Expecting numeric in J468 / R468C10: got '#N/A'Expecting numeric in K468 / R468C11: got '#N/A'Expecting numeric in L468 / R468C12: got '#N/A'Expecting numeric in M468 / R468C13: got '#N/A'Expecting numeric in C469 / R469C3: got '#N/A'Expecting numeric in D469 / R469C4: got '#N/A'Expecting numeric in E469 / R469C5: got '#N/A'Expecting numeric in F469 / R469C6: got '#N/A'Expecting numeric in G469 / R469C7: got '#N/A'Expecting numeric in J469 / R469C10: got '#N/A'Expecting numeric in K469 / R469C11: got '#N/A'Expecting numeric in L469 / R469C12: got '#N/A'Expecting numeric in M469 / R469C13: got '#N/A'Expecting numeric in C470 / R470C3: got '#N/A'Expecting numeric in D470 / R470C4: got '#N/A'Expecting numeric in E470 / R470C5: got '#N/A'Expecting numeric in F470 / R470C6: got '#N/A'Expecting numeric in G470 / R470C7: got '#N/A'Expecting numeric in J470 / R470C10: got '#N/A'Expecting numeric in K470 / R470C11: got '#N/A'Expecting numeric in L470 / R470C12: got '#N/A'Expecting numeric in M470 / R470C13: got '#N/A'Expecting numeric in C471 / R471C3: got '#N/A'Expecting numeric in D471 / R471C4: got '#N/A'Expecting numeric in E471 / R471C5: got '#N/A'Expecting numeric in F471 / R471C6: got '#N/A'Expecting numeric in G471 / R471C7: got '#N/A'Expecting numeric in J471 / R471C10: got '#N/A'Expecting numeric in K471 / R471C11: got '#N/A'Expecting numeric in L471 / R471C12: got '#N/A'Expecting numeric in M471 / R471C13: got '#N/A'Expecting numeric in C472 / R472C3: got '#N/A'Expecting numeric in D472 / R472C4: got '#N/A'Expecting numeric in E472 / R472C5: got '#N/A'Expecting numeric in F472 / R472C6: got '#N/A'Expecting numeric in G472 / R472C7: got '#N/A'Expecting numeric in J472 / R472C10: got '#N/A'Expecting numeric in K472 / R472C11: got '#N/A'Expecting numeric in L472 / R472C12: got '#N/A'Expecting numeric in M472 / R472C13: got '#N/A'Expecting numeric in C473 / R473C3: got '#N/A'Expecting numeric in D473 / R473C4: got '#N/A'Expecting numeric in E473 / R473C5: got '#N/A'Expecting numeric in F473 / R473C6: got '#N/A'Expecting numeric in G473 / R473C7: got '#N/A'Expecting numeric in J473 / R473C10: got '#N/A'Expecting numeric in K473 / R473C11: got '#N/A'Expecting numeric in L473 / R473C12: got '#N/A'Expecting numeric in M473 / R473C13: got '#N/A'Expecting numeric in C474 / R474C3: got '#N/A'Expecting numeric in D474 / R474C4: got '#N/A'Expecting numeric in E474 / R474C5: got '#N/A'Expecting numeric in F474 / R474C6: got '#N/A'Expecting numeric in G474 / R474C7: got '#N/A'Expecting numeric in J474 / R474C10: got '#N/A'Expecting numeric in K474 / R474C11: got '#N/A'Expecting numeric in L474 / R474C12: got '#N/A'Expecting numeric in M474 / R474C13: got '#N/A'Expecting numeric in C475 / R475C3: got '#N/A'Expecting numeric in D475 / R475C4: got '#N/A'Expecting numeric in E475 / R475C5: got '#N/A'Expecting numeric in F475 / R475C6: got '#N/A'Expecting numeric in G475 / R475C7: got '#N/A'Expecting numeric in J475 / R475C10: got '#N/A'Expecting numeric in K475 / R475C11: got '#N/A'Expecting numeric in L475 / R475C12: got '#N/A'Expecting numeric in M475 / R475C13: got '#N/A'Expecting numeric in C476 / R476C3: got '#N/A'Expecting numeric in D476 / R476C4: got '#N/A'Expecting numeric in E476 / R476C5: got '#N/A'Expecting numeric in F476 / R476C6: got '#N/A'Expecting numeric in G476 / R476C7: got '#N/A'Expecting numeric in J476 / R476C10: got '#N/A'Expecting numeric in K476 / R476C11: got '#N/A'Expecting numeric in L476 / R476C12: got '#N/A'Expecting numeric in M476 / R476C13: got '#N/A'Expecting numeric in C477 / R477C3: got '#N/A'Expecting numeric in D477 / R477C4: got '#N/A'Expecting numeric in E477 / R477C5: got '#N/A'Expecting numeric in F477 / R477C6: got '#N/A'Expecting numeric in G477 / R477C7: got '#N/A'Expecting numeric in J477 / R477C10: got '#N/A'Expecting numeric in K477 / R477C11: got '#N/A'Expecting numeric in L477 / R477C12: got '#N/A'Expecting numeric in M477 / R477C13: got '#N/A'Expecting numeric in C478 / R478C3: got '#N/A'Expecting numeric in D478 / R478C4: got '#N/A'Expecting numeric in E478 / R478C5: got '#N/A'Expecting numeric in F478 / R478C6: got '#N/A'Expecting numeric in G478 / R478C7: got '#N/A'Expecting numeric in J478 / R478C10: got '#N/A'Expecting numeric in K478 / R478C11: got '#N/A'Expecting numeric in L478 / R478C12: got '#N/A'Expecting numeric in M478 / R478C13: got '#N/A'Expecting numeric in C479 / R479C3: got '#N/A'Expecting numeric in D479 / R479C4: got '#N/A'Expecting numeric in E479 / R479C5: got '#N/A'Expecting numeric in F479 / R479C6: got '#N/A'Expecting numeric in G479 / R479C7: got '#N/A'Expecting numeric in J479 / R479C10: got '#N/A'Expecting numeric in K479 / R479C11: got '#N/A'Expecting numeric in L479 / R479C12: got '#N/A'Expecting numeric in M479 / R479C13: got '#N/A'Expecting numeric in C480 / R480C3: got '#N/A'Expecting numeric in D480 / R480C4: got '#N/A'Expecting numeric in E480 / R480C5: got '#N/A'Expecting numeric in F480 / R480C6: got '#N/A'Expecting numeric in G480 / R480C7: got '#N/A'Expecting numeric in J480 / R480C10: got '#N/A'Expecting numeric in K480 / R480C11: got '#N/A'Expecting numeric in L480 / R480C12: got '#N/A'Expecting numeric in M480 / R480C13: got '#N/A'Expecting numeric in C481 / R481C3: got '#N/A'Expecting numeric in D481 / R481C4: got '#N/A'Expecting numeric in E481 / R481C5: got '#N/A'Expecting numeric in F481 / R481C6: got '#N/A'Expecting numeric in G481 / R481C7: got '#N/A'Expecting numeric in J481 / R481C10: got '#N/A'Expecting numeric in K481 / R481C11: got '#N/A'Expecting numeric in L481 / R481C12: got '#N/A'Expecting numeric in M481 / R481C13: got '#N/A'Expecting numeric in C482 / R482C3: got '#N/A'Expecting numeric in D482 / R482C4: got '#N/A'Expecting numeric in E482 / R482C5: got '#N/A'Expecting numeric in F482 / R482C6: got '#N/A'Expecting numeric in G482 / R482C7: got '#N/A'Expecting numeric in J482 / R482C10: got '#N/A'Expecting numeric in K482 / R482C11: got '#N/A'Expecting numeric in L482 / R482C12: got '#N/A'Expecting numeric in M482 / R482C13: got '#N/A'Expecting numeric in C483 / R483C3: got '#N/A'Expecting numeric in D483 / R483C4: got '#N/A'Expecting numeric in E483 / R483C5: got '#N/A'Expecting numeric in F483 / R483C6: got '#N/A'Expecting numeric in G483 / R483C7: got '#N/A'Expecting numeric in J483 / R483C10: got '#N/A'Expecting numeric in K483 / R483C11: got '#N/A'Expecting numeric in L483 / R483C12: got '#N/A'Expecting numeric in M483 / R483C13: got '#N/A'Expecting numeric in C484 / R484C3: got '#N/A'Expecting numeric in D484 / R484C4: got '#N/A'Expecting numeric in E484 / R484C5: got '#N/A'Expecting numeric in F484 / R484C6: got '#N/A'Expecting numeric in G484 / R484C7: got '#N/A'Expecting numeric in J484 / R484C10: got '#N/A'Expecting numeric in K484 / R484C11: got '#N/A'Expecting numeric in L484 / R484C12: got '#N/A'Expecting numeric in M484 / R484C13: got '#N/A'Expecting numeric in C485 / R485C3: got '#N/A'Expecting numeric in D485 / R485C4: got '#N/A'Expecting numeric in E485 / R485C5: got '#N/A'Expecting numeric in F485 / R485C6: got '#N/A'Expecting numeric in G485 / R485C7: got '#N/A'Expecting numeric in J485 / R485C10: got '#N/A'Expecting numeric in K485 / R485C11: got '#N/A'Expecting numeric in L485 / R485C12: got '#N/A'Expecting numeric in M485 / R485C13: got '#N/A'Expecting numeric in C486 / R486C3: got '#N/A'Expecting numeric in D486 / R486C4: got '#N/A'Expecting numeric in E486 / R486C5: got '#N/A'Expecting numeric in F486 / R486C6: got '#N/A'Expecting numeric in G486 / R486C7: got '#N/A'Expecting numeric in J486 / R486C10: got '#N/A'Expecting numeric in K486 / R486C11: got '#N/A'Expecting numeric in L486 / R486C12: got '#N/A'Expecting numeric in M486 / R486C13: got '#N/A'Expecting numeric in C487 / R487C3: got '#N/A'Expecting numeric in D487 / R487C4: got '#N/A'Expecting numeric in E487 / R487C5: got '#N/A'Expecting numeric in F487 / R487C6: got '#N/A'Expecting numeric in G487 / R487C7: got '#N/A'Expecting numeric in J487 / R487C10: got '#N/A'Expecting numeric in K487 / R487C11: got '#N/A'Expecting numeric in L487 / R487C12: got '#N/A'Expecting numeric in M487 / R487C13: got '#N/A'Expecting numeric in C488 / R488C3: got '#N/A'Expecting numeric in D488 / R488C4: got '#N/A'Expecting numeric in E488 / R488C5: got '#N/A'Expecting numeric in F488 / R488C6: got '#N/A'Expecting numeric in G488 / R488C7: got '#N/A'Expecting numeric in J488 / R488C10: got '#N/A'Expecting numeric in K488 / R488C11: got '#N/A'Expecting numeric in L488 / R488C12: got '#N/A'Expecting numeric in M488 / R488C13: got '#N/A'Expecting numeric in C489 / R489C3: got '#N/A'Expecting numeric in D489 / R489C4: got '#N/A'Expecting numeric in E489 / R489C5: got '#N/A'Expecting numeric in F489 / R489C6: got '#N/A'Expecting numeric in G489 / R489C7: got '#N/A'Expecting numeric in J489 / R489C10: got '#N/A'Expecting numeric in K489 / R489C11: got '#N/A'Expecting numeric in L489 / R489C12: got '#N/A'Expecting numeric in M489 / R489C13: got '#N/A'Expecting numeric in C490 / R490C3: got '#N/A'Expecting numeric in D490 / R490C4: got '#N/A'Expecting numeric in E490 / R490C5: got '#N/A'Expecting numeric in F490 / R490C6: got '#N/A'Expecting numeric in G490 / R490C7: got '#N/A'Expecting numeric in J490 / R490C10: got '#N/A'Expecting numeric in K490 / R490C11: got '#N/A'Expecting numeric in L490 / R490C12: got '#N/A'Expecting numeric in M490 / R490C13: got '#N/A'Expecting numeric in C491 / R491C3: got '#N/A'Expecting numeric in D491 / R491C4: got '#N/A'Expecting numeric in E491 / R491C5: got '#N/A'Expecting numeric in F491 / R491C6: got '#N/A'Expecting numeric in G491 / R491C7: got '#N/A'Expecting numeric in J491 / R491C10: got '#N/A'Expecting numeric in K491 / R491C11: got '#N/A'Expecting numeric in L491 / R491C12: got '#N/A'Expecting numeric in M491 / R491C13: got '#N/A'Expecting numeric in C492 / R492C3: got '#N/A'Expecting numeric in D492 / R492C4: got '#N/A'Expecting numeric in E492 / R492C5: got '#N/A'Expecting numeric in F492 / R492C6: got '#N/A'Expecting numeric in G492 / R492C7: got '#N/A'Expecting numeric in J492 / R492C10: got '#N/A'Expecting numeric in K492 / R492C11: got '#N/A'Expecting numeric in L492 / R492C12: got '#N/A'Expecting numeric in M492 / R492C13: got '#N/A'Expecting numeric in C493 / R493C3: got '#N/A'Expecting numeric in D493 / R493C4: got '#N/A'Expecting numeric in E493 / R493C5: got '#N/A'Expecting numeric in F493 / R493C6: got '#N/A'Expecting numeric in G493 / R493C7: got '#N/A'Expecting numeric in J493 / R493C10: got '#N/A'Expecting numeric in K493 / R493C11: got '#N/A'Expecting numeric in L493 / R493C12: got '#N/A'Expecting numeric in M493 / R493C13: got '#N/A'Expecting numeric in C494 / R494C3: got '#N/A'Expecting numeric in D494 / R494C4: got '#N/A'Expecting numeric in E494 / R494C5: got '#N/A'Expecting numeric in F494 / R494C6: got '#N/A'Expecting numeric in G494 / R494C7: got '#N/A'Expecting numeric in J494 / R494C10: got '#N/A'Expecting numeric in K494 / R494C11: got '#N/A'Expecting numeric in L494 / R494C12: got '#N/A'Expecting numeric in M494 / R494C13: got '#N/A'Expecting numeric in C495 / R495C3: got '#N/A'Expecting numeric in D495 / R495C4: got '#N/A'Expecting numeric in E495 / R495C5: got '#N/A'Expecting numeric in F495 / R495C6: got '#N/A'Expecting numeric in G495 / R495C7: got '#N/A'Expecting numeric in J495 / R495C10: got '#N/A'Expecting numeric in K495 / R495C11: got '#N/A'Expecting numeric in L495 / R495C12: got '#N/A'Expecting numeric in M495 / R495C13: got '#N/A'Expecting numeric in C496 / R496C3: got '#N/A'Expecting numeric in D496 / R496C4: got '#N/A'Expecting numeric in E496 / R496C5: got '#N/A'Expecting numeric in F496 / R496C6: got '#N/A'Expecting numeric in G496 / R496C7: got '#N/A'Expecting numeric in J496 / R496C10: got '#N/A'Expecting numeric in K496 / R496C11: got '#N/A'Expecting numeric in L496 / R496C12: got '#N/A'Expecting numeric in M496 / R496C13: got '#N/A'Expecting numeric in C497 / R497C3: got '#N/A'Expecting numeric in D497 / R497C4: got '#N/A'Expecting numeric in E497 / R497C5: got '#N/A'Expecting numeric in F497 / R497C6: got '#N/A'Expecting numeric in G497 / R497C7: got '#N/A'Expecting numeric in J497 / R497C10: got '#N/A'Expecting numeric in K497 / R497C11: got '#N/A'Expecting numeric in L497 / R497C12: got '#N/A'Expecting numeric in M497 / R497C13: got '#N/A'Expecting numeric in C498 / R498C3: got '#N/A'Expecting numeric in D498 / R498C4: got '#N/A'Expecting numeric in E498 / R498C5: got '#N/A'Expecting numeric in F498 / R498C6: got '#N/A'Expecting numeric in G498 / R498C7: got '#N/A'Expecting numeric in J498 / R498C10: got '#N/A'Expecting numeric in K498 / R498C11: got '#N/A'Expecting numeric in L498 / R498C12: got '#N/A'Expecting numeric in M498 / R498C13: got '#N/A'Expecting numeric in C499 / R499C3: got '#N/A'Expecting numeric in D499 / R499C4: got '#N/A'Expecting numeric in E499 / R499C5: got '#N/A'Expecting numeric in F499 / R499C6: got '#N/A'Expecting numeric in G499 / R499C7: got '#N/A'Expecting numeric in J499 / R499C10: got '#N/A'Expecting numeric in K499 / R499C11: got '#N/A'Expecting numeric in L499 / R499C12: got '#N/A'Expecting numeric in M499 / R499C13: got '#N/A'Expecting numeric in C500 / R500C3: got '#N/A'Expecting numeric in D500 / R500C4: got '#N/A'Expecting numeric in E500 / R500C5: got '#N/A'Expecting numeric in F500 / R500C6: got '#N/A'Expecting numeric in G500 / R500C7: got '#N/A'Expecting numeric in J500 / R500C10: got '#N/A'Expecting numeric in K500 / R500C11: got '#N/A'Expecting numeric in L500 / R500C12: got '#N/A'Expecting numeric in M500 / R500C13: got '#N/A'Expecting numeric in C501 / R501C3: got '#N/A'Expecting numeric in D501 / R501C4: got '#N/A'Expecting numeric in E501 / R501C5: got '#N/A'Expecting numeric in F501 / R501C6: got '#N/A'Expecting numeric in G501 / R501C7: got '#N/A'Expecting numeric in J501 / R501C10: got '#N/A'Expecting numeric in K501 / R501C11: got '#N/A'Expecting numeric in L501 / R501C12: got '#N/A'Expecting numeric in M501 / R501C13: got '#N/A'Expecting numeric in C502 / R502C3: got '#N/A'Expecting numeric in D502 / R502C4: got '#N/A'Expecting numeric in E502 / R502C5: got '#N/A'Expecting numeric in F502 / R502C6: got '#N/A'Expecting numeric in G502 / R502C7: got '#N/A'Expecting numeric in J502 / R502C10: got '#N/A'Expecting numeric in K502 / R502C11: got '#N/A'Expecting numeric in L502 / R502C12: got '#N/A'Expecting numeric in M502 / R502C13: got '#N/A'Expecting numeric in C503 / R503C3: got '#N/A'Expecting numeric in D503 / R503C4: got '#N/A'Expecting numeric in E503 / R503C5: got '#N/A'Expecting numeric in F503 / R503C6: got '#N/A'Expecting numeric in G503 / R503C7: got '#N/A'Expecting numeric in J503 / R503C10: got '#N/A'Expecting numeric in K503 / R503C11: got '#N/A'Expecting numeric in L503 / R503C12: got '#N/A'Expecting numeric in M503 / R503C13: got '#N/A'Expecting numeric in C504 / R504C3: got '#N/A'Expecting numeric in D504 / R504C4: got '#N/A'Expecting numeric in E504 / R504C5: got '#N/A'Expecting numeric in F504 / R504C6: got '#N/A'Expecting numeric in G504 / R504C7: got '#N/A'Expecting numeric in J504 / R504C10: got '#N/A'Expecting numeric in K504 / R504C11: got '#N/A'Expecting numeric in L504 / R504C12: got '#N/A'Expecting numeric in M504 / R504C13: got '#N/A'Expecting numeric in C505 / R505C3: got '#N/A'Expecting numeric in D505 / R505C4: got '#N/A'Expecting numeric in E505 / R505C5: got '#N/A'Expecting numeric in F505 / R505C6: got '#N/A'Expecting numeric in G505 / R505C7: got '#N/A'Expecting numeric in J505 / R505C10: got '#N/A'Expecting numeric in K505 / R505C11: got '#N/A'Expecting numeric in L505 / R505C12: got '#N/A'Expecting numeric in M505 / R505C13: got '#N/A'Expecting numeric in C506 / R506C3: got '#N/A'Expecting numeric in D506 / R506C4: got '#N/A'Expecting numeric in E506 / R506C5: got '#N/A'Expecting numeric in F506 / R506C6: got '#N/A'Expecting numeric in G506 / R506C7: got '#N/A'Expecting numeric in J506 / R506C10: got '#N/A'Expecting numeric in K506 / R506C11: got '#N/A'Expecting numeric in L506 / R506C12: got '#N/A'Expecting numeric in M506 / R506C13: got '#N/A'Expecting numeric in C507 / R507C3: got '#N/A'Expecting numeric in D507 / R507C4: got '#N/A'Expecting numeric in E507 / R507C5: got '#N/A'Expecting numeric in F507 / R507C6: got '#N/A'Expecting numeric in G507 / R507C7: got '#N/A'Expecting numeric in J507 / R507C10: got '#N/A'Expecting numeric in K507 / R507C11: got '#N/A'Expecting numeric in L507 / R507C12: got '#N/A'Expecting numeric in M507 / R507C13: got '#N/A'Expecting numeric in C508 / R508C3: got '#N/A'Expecting numeric in D508 / R508C4: got '#N/A'Expecting numeric in E508 / R508C5: got '#N/A'Expecting numeric in F508 / R508C6: got '#N/A'Expecting numeric in G508 / R508C7: got '#N/A'Expecting numeric in J508 / R508C10: got '#N/A'Expecting numeric in K508 / R508C11: got '#N/A'Expecting numeric in L508 / R508C12: got '#N/A'Expecting numeric in M508 / R508C13: got '#N/A'Expecting numeric in C509 / R509C3: got '#N/A'Expecting numeric in D509 / R509C4: got '#N/A'Expecting numeric in E509 / R509C5: got '#N/A'Expecting numeric in F509 / R509C6: got '#N/A'Expecting numeric in G509 / R509C7: got '#N/A'Expecting numeric in J509 / R509C10: got '#N/A'Expecting numeric in K509 / R509C11: got '#N/A'Expecting numeric in L509 / R509C12: got '#N/A'Expecting numeric in M509 / R509C13: got '#N/A'Expecting numeric in C510 / R510C3: got '#N/A'Expecting numeric in D510 / R510C4: got '#N/A'Expecting numeric in E510 / R510C5: got '#N/A'Expecting numeric in F510 / R510C6: got '#N/A'Expecting numeric in G510 / R510C7: got '#N/A'Expecting numeric in J510 / R510C10: got '#N/A'Expecting numeric in K510 / R510C11: got '#N/A'Expecting numeric in L510 / R510C12: got '#N/A'Expecting numeric in M510 / R510C13: got '#N/A'Expecting numeric in C511 / R511C3: got '#N/A'Expecting numeric in D511 / R511C4: got '#N/A'Expecting numeric in E511 / R511C5: got '#N/A'Expecting numeric in F511 / R511C6: got '#N/A'Expecting numeric in G511 / R511C7: got '#N/A'Expecting numeric in J511 / R511C10: got '#N/A'Expecting numeric in K511 / R511C11: got '#N/A'Expecting numeric in L511 / R511C12: got '#N/A'Expecting numeric in M511 / R511C13: got '#N/A'Expecting numeric in C512 / R512C3: got '#N/A'Expecting numeric in D512 / R512C4: got '#N/A'Expecting numeric in E512 / R512C5: got '#N/A'Expecting numeric in F512 / R512C6: got '#N/A'Expecting numeric in G512 / R512C7: got '#N/A'Expecting numeric in J512 / R512C10: got '#N/A'Expecting numeric in K512 / R512C11: got '#N/A'Expecting numeric in L512 / R512C12: got '#N/A'Expecting numeric in M512 / R512C13: got '#N/A'Expecting numeric in C513 / R513C3: got '#N/A'Expecting numeric in D513 / R513C4: got '#N/A'Expecting numeric in E513 / R513C5: got '#N/A'Expecting numeric in F513 / R513C6: got '#N/A'Expecting numeric in G513 / R513C7: got '#N/A'Expecting numeric in J513 / R513C10: got '#N/A'Expecting numeric in K513 / R513C11: got '#N/A'Expecting numeric in L513 / R513C12: got '#N/A'Expecting numeric in M513 / R513C13: got '#N/A'Expecting numeric in C514 / R514C3: got '#N/A'Expecting numeric in D514 / R514C4: got '#N/A'Expecting numeric in E514 / R514C5: got '#N/A'Expecting numeric in F514 / R514C6: got '#N/A'Expecting numeric in G514 / R514C7: got '#N/A'Expecting numeric in J514 / R514C10: got '#N/A'Expecting numeric in K514 / R514C11: got '#N/A'Expecting numeric in L514 / R514C12: got '#N/A'Expecting numeric in M514 / R514C13: got '#N/A'Expecting numeric in C515 / R515C3: got '#N/A'Expecting numeric in D515 / R515C4: got '#N/A'Expecting numeric in E515 / R515C5: got '#N/A'Expecting numeric in F515 / R515C6: got '#N/A'Expecting numeric in G515 / R515C7: got '#N/A'Expecting numeric in J515 / R515C10: got '#N/A'Expecting numeric in K515 / R515C11: got '#N/A'Expecting numeric in L515 / R515C12: got '#N/A'Expecting numeric in M515 / R515C13: got '#N/A'Expecting numeric in C516 / R516C3: got '#N/A'Expecting numeric in D516 / R516C4: got '#N/A'Expecting numeric in E516 / R516C5: got '#N/A'Expecting numeric in F516 / R516C6: got '#N/A'Expecting numeric in G516 / R516C7: got '#N/A'Expecting numeric in J516 / R516C10: got '#N/A'Expecting numeric in K516 / R516C11: got '#N/A'Expecting numeric in L516 / R516C12: got '#N/A'Expecting numeric in M516 / R516C13: got '#N/A'Expecting numeric in C517 / R517C3: got '#N/A'Expecting numeric in D517 / R517C4: got '#N/A'Expecting numeric in E517 / R517C5: got '#N/A'Expecting numeric in F517 / R517C6: got '#N/A'Expecting numeric in G517 / R517C7: got '#N/A'Expecting numeric in J517 / R517C10: got '#N/A'Expecting numeric in K517 / R517C11: got '#N/A'Expecting numeric in L517 / R517C12: got '#N/A'Expecting numeric in M517 / R517C13: got '#N/A'Expecting numeric in C518 / R518C3: got '#N/A'Expecting numeric in D518 / R518C4: got '#N/A'Expecting numeric in E518 / R518C5: got '#N/A'Expecting numeric in F518 / R518C6: got '#N/A'Expecting numeric in G518 / R518C7: got '#N/A'Expecting numeric in J518 / R518C10: got '#N/A'Expecting numeric in K518 / R518C11: got '#N/A'Expecting numeric in L518 / R518C12: got '#N/A'Expecting numeric in M518 / R518C13: got '#N/A'Expecting numeric in C519 / R519C3: got '#N/A'Expecting numeric in D519 / R519C4: got '#N/A'Expecting numeric in E519 / R519C5: got '#N/A'Expecting numeric in F519 / R519C6: got '#N/A'Expecting numeric in G519 / R519C7: got '#N/A'Expecting numeric in J519 / R519C10: got '#N/A'Expecting numeric in K519 / R519C11: got '#N/A'Expecting numeric in L519 / R519C12: got '#N/A'Expecting numeric in M519 / R519C13: got '#N/A'Expecting numeric in C520 / R520C3: got '#N/A'Expecting numeric in D520 / R520C4: got '#N/A'Expecting numeric in E520 / R520C5: got '#N/A'Expecting numeric in F520 / R520C6: got '#N/A'Expecting numeric in G520 / R520C7: got '#N/A'Expecting numeric in J520 / R520C10: got '#N/A'Expecting numeric in K520 / R520C11: got '#N/A'Expecting numeric in L520 / R520C12: got '#N/A'Expecting numeric in M520 / R520C13: got '#N/A'Expecting numeric in C521 / R521C3: got '#N/A'Expecting numeric in D521 / R521C4: got '#N/A'Expecting numeric in E521 / R521C5: got '#N/A'Expecting numeric in F521 / R521C6: got '#N/A'Expecting numeric in G521 / R521C7: got '#N/A'Expecting numeric in J521 / R521C10: got '#N/A'Expecting numeric in K521 / R521C11: got '#N/A'Expecting numeric in L521 / R521C12: got '#N/A'Expecting numeric in M521 / R521C13: got '#N/A'Expecting numeric in C522 / R522C3: got '#N/A'Expecting numeric in D522 / R522C4: got '#N/A'Expecting numeric in E522 / R522C5: got '#N/A'Expecting numeric in F522 / R522C6: got '#N/A'Expecting numeric in G522 / R522C7: got '#N/A'Expecting numeric in J522 / R522C10: got '#N/A'Expecting numeric in K522 / R522C11: got '#N/A'Expecting numeric in L522 / R522C12: got '#N/A'Expecting numeric in M522 / R522C13: got '#N/A'Expecting numeric in C523 / R523C3: got '#N/A'Expecting numeric in D523 / R523C4: got '#N/A'Expecting numeric in E523 / R523C5: got '#N/A'Expecting numeric in F523 / R523C6: got '#N/A'Expecting numeric in G523 / R523C7: got '#N/A'Expecting numeric in J523 / R523C10: got '#N/A'Expecting numeric in K523 / R523C11: got '#N/A'Expecting numeric in L523 / R523C12: got '#N/A'Expecting numeric in M523 / R523C13: got '#N/A'Expecting numeric in C524 / R524C3: got '#N/A'Expecting numeric in D524 / R524C4: got '#N/A'Expecting numeric in E524 / R524C5: got '#N/A'Expecting numeric in F524 / R524C6: got '#N/A'Expecting numeric in G524 / R524C7: got '#N/A'Expecting numeric in J524 / R524C10: got '#N/A'Expecting numeric in K524 / R524C11: got '#N/A'Expecting numeric in L524 / R524C12: got '#N/A'Expecting numeric in M524 / R524C13: got '#N/A'Expecting numeric in C525 / R525C3: got '#N/A'Expecting numeric in D525 / R525C4: got '#N/A'Expecting numeric in E525 / R525C5: got '#N/A'Expecting numeric in F525 / R525C6: got '#N/A'Expecting numeric in G525 / R525C7: got '#N/A'Expecting numeric in J525 / R525C10: got '#N/A'Expecting numeric in K525 / R525C11: got '#N/A'Expecting numeric in L525 / R525C12: got '#N/A'Expecting numeric in M525 / R525C13: got '#N/A'Expecting numeric in C526 / R526C3: got '#N/A'Expecting numeric in D526 / R526C4: got '#N/A'Expecting numeric in E526 / R526C5: got '#N/A'Expecting numeric in F526 / R526C6: got '#N/A'Expecting numeric in G526 / R526C7: got '#N/A'Expecting numeric in J526 / R526C10: got '#N/A'Expecting numeric in K526 / R526C11: got '#N/A'Expecting numeric in L526 / R526C12: got '#N/A'Expecting numeric in M526 / R526C13: got '#N/A'Expecting numeric in C527 / R527C3: got '#N/A'Expecting numeric in D527 / R527C4: got '#N/A'Expecting numeric in E527 / R527C5: got '#N/A'Expecting numeric in F527 / R527C6: got '#N/A'Expecting numeric in G527 / R527C7: got '#N/A'Expecting numeric in J527 / R527C10: got '#N/A'Expecting numeric in K527 / R527C11: got '#N/A'Expecting numeric in L527 / R527C12: got '#N/A'Expecting numeric in M527 / R527C13: got '#N/A'Expecting numeric in C528 / R528C3: got '#N/A'Expecting numeric in D528 / R528C4: got '#N/A'Expecting numeric in E528 / R528C5: got '#N/A'Expecting numeric in F528 / R528C6: got '#N/A'Expecting numeric in G528 / R528C7: got '#N/A'Expecting numeric in J528 / R528C10: got '#N/A'Expecting numeric in K528 / R528C11: got '#N/A'Expecting numeric in L528 / R528C12: got '#N/A'Expecting numeric in M528 / R528C13: got '#N/A'Expecting numeric in C529 / R529C3: got '#N/A'Expecting numeric in D529 / R529C4: got '#N/A'Expecting numeric in E529 / R529C5: got '#N/A'Expecting numeric in F529 / R529C6: got '#N/A'Expecting numeric in G529 / R529C7: got '#N/A'Expecting numeric in J529 / R529C10: got '#N/A'Expecting numeric in K529 / R529C11: got '#N/A'Expecting numeric in L529 / R529C12: got '#N/A'Expecting numeric in M529 / R529C13: got '#N/A'Expecting numeric in C530 / R530C3: got '#N/A'Expecting numeric in D530 / R530C4: got '#N/A'Expecting numeric in E530 / R530C5: got '#N/A'Expecting numeric in F530 / R530C6: got '#N/A'Expecting numeric in G530 / R530C7: got '#N/A'Expecting numeric in J530 / R530C10: got '#N/A'Expecting numeric in K530 / R530C11: got '#N/A'Expecting numeric in L530 / R530C12: got '#N/A'Expecting numeric in M530 / R530C13: got '#N/A'Expecting numeric in C531 / R531C3: got '#N/A'Expecting numeric in D531 / R531C4: got '#N/A'Expecting numeric in E531 / R531C5: got '#N/A'Expecting numeric in F531 / R531C6: got '#N/A'Expecting numeric in G531 / R531C7: got '#N/A'Expecting numeric in J531 / R531C10: got '#N/A'Expecting numeric in K531 / R531C11: got '#N/A'Expecting numeric in L531 / R531C12: got '#N/A'Expecting numeric in M531 / R531C13: got '#N/A'Expecting numeric in C532 / R532C3: got '#N/A'Expecting numeric in D532 / R532C4: got '#N/A'Expecting numeric in E532 / R532C5: got '#N/A'Expecting numeric in F532 / R532C6: got '#N/A'Expecting numeric in G532 / R532C7: got '#N/A'Expecting numeric in J532 / R532C10: got '#N/A'Expecting numeric in K532 / R532C11: got '#N/A'Expecting numeric in L532 / R532C12: got '#N/A'Expecting numeric in M532 / R532C13: got '#N/A'Expecting numeric in C533 / R533C3: got '#N/A'Expecting numeric in D533 / R533C4: got '#N/A'Expecting numeric in E533 / R533C5: got '#N/A'Expecting numeric in F533 / R533C6: got '#N/A'Expecting numeric in G533 / R533C7: got '#N/A'Expecting numeric in J533 / R533C10: got '#N/A'Expecting numeric in K533 / R533C11: got '#N/A'Expecting numeric in L533 / R533C12: got '#N/A'Expecting numeric in M533 / R533C13: got '#N/A'Expecting numeric in C534 / R534C3: got '#N/A'Expecting numeric in D534 / R534C4: got '#N/A'Expecting numeric in E534 / R534C5: got '#N/A'Expecting numeric in F534 / R534C6: got '#N/A'Expecting numeric in G534 / R534C7: got '#N/A'Expecting numeric in J534 / R534C10: got '#N/A'Expecting numeric in K534 / R534C11: got '#N/A'Expecting numeric in L534 / R534C12: got '#N/A'Expecting numeric in M534 / R534C13: got '#N/A'Expecting numeric in C535 / R535C3: got '#N/A'Expecting numeric in D535 / R535C4: got '#N/A'Expecting numeric in E535 / R535C5: got '#N/A'Expecting numeric in F535 / R535C6: got '#N/A'Expecting numeric in G535 / R535C7: got '#N/A'Expecting numeric in J535 / R535C10: got '#N/A'Expecting numeric in K535 / R535C11: got '#N/A'Expecting numeric in L535 / R535C12: got '#N/A'Expecting numeric in M535 / R535C13: got '#N/A'Expecting numeric in C536 / R536C3: got '#N/A'Expecting numeric in D536 / R536C4: got '#N/A'Expecting numeric in E536 / R536C5: got '#N/A'Expecting numeric in F536 / R536C6: got '#N/A'Expecting numeric in G536 / R536C7: got '#N/A'Expecting numeric in J536 / R536C10: got '#N/A'Expecting numeric in K536 / R536C11: got '#N/A'Expecting numeric in L536 / R536C12: got '#N/A'Expecting numeric in M536 / R536C13: got '#N/A'Expecting numeric in C537 / R537C3: got '#N/A'Expecting numeric in D537 / R537C4: got '#N/A'Expecting numeric in E537 / R537C5: got '#N/A'Expecting numeric in F537 / R537C6: got '#N/A'Expecting numeric in G537 / R537C7: got '#N/A'Expecting numeric in J537 / R537C10: got '#N/A'Expecting numeric in K537 / R537C11: got '#N/A'Expecting numeric in L537 / R537C12: got '#N/A'Expecting numeric in M537 / R537C13: got '#N/A'Expecting numeric in C538 / R538C3: got '#N/A'Expecting numeric in D538 / R538C4: got '#N/A'Expecting numeric in E538 / R538C5: got '#N/A'Expecting numeric in F538 / R538C6: got '#N/A'Expecting numeric in G538 / R538C7: got '#N/A'Expecting numeric in J538 / R538C10: got '#N/A'Expecting numeric in K538 / R538C11: got '#N/A'Expecting numeric in L538 / R538C12: got '#N/A'Expecting numeric in M538 / R538C13: got '#N/A'Expecting numeric in C539 / R539C3: got '#N/A'Expecting numeric in D539 / R539C4: got '#N/A'Expecting numeric in E539 / R539C5: got '#N/A'Expecting numeric in F539 / R539C6: got '#N/A'Expecting numeric in G539 / R539C7: got '#N/A'Expecting numeric in J539 / R539C10: got '#N/A'Expecting numeric in K539 / R539C11: got '#N/A'Expecting numeric in L539 / R539C12: got '#N/A'Expecting numeric in M539 / R539C13: got '#N/A'Expecting numeric in C540 / R540C3: got '#N/A'Expecting numeric in D540 / R540C4: got '#N/A'Expecting numeric in E540 / R540C5: got '#N/A'Expecting numeric in F540 / R540C6: got '#N/A'Expecting numeric in G540 / R540C7: got '#N/A'Expecting numeric in J540 / R540C10: got '#N/A'Expecting numeric in K540 / R540C11: got '#N/A'Expecting numeric in L540 / R540C12: got '#N/A'Expecting numeric in M540 / R540C13: got '#N/A'Expecting numeric in C541 / R541C3: got '#N/A'Expecting numeric in D541 / R541C4: got '#N/A'Expecting numeric in E541 / R541C5: got '#N/A'Expecting numeric in F541 / R541C6: got '#N/A'Expecting numeric in G541 / R541C7: got '#N/A'Expecting numeric in J541 / R541C10: got '#N/A'Expecting numeric in K541 / R541C11: got '#N/A'Expecting numeric in L541 / R541C12: got '#N/A'Expecting numeric in M541 / R541C13: got '#N/A'Expecting numeric in C542 / R542C3: got '#N/A'Expecting numeric in D542 / R542C4: got '#N/A'Expecting numeric in E542 / R542C5: got '#N/A'Expecting numeric in F542 / R542C6: got '#N/A'Expecting numeric in G542 / R542C7: got '#N/A'Expecting numeric in J542 / R542C10: got '#N/A'Expecting numeric in K542 / R542C11: got '#N/A'Expecting numeric in L542 / R542C12: got '#N/A'Expecting numeric in M542 / R542C13: got '#N/A'Expecting numeric in C543 / R543C3: got '#N/A'Expecting numeric in D543 / R543C4: got '#N/A'Expecting numeric in E543 / R543C5: got '#N/A'Expecting numeric in F543 / R543C6: got '#N/A'Expecting numeric in G543 / R543C7: got '#N/A'Expecting numeric in J543 / R543C10: got '#N/A'Expecting numeric in K543 / R543C11: got '#N/A'Expecting numeric in L543 / R543C12: got '#N/A'Expecting numeric in M543 / R543C13: got '#N/A'Expecting numeric in C544 / R544C3: got '#N/A'Expecting numeric in D544 / R544C4: got '#N/A'Expecting numeric in E544 / R544C5: got '#N/A'Expecting numeric in F544 / R544C6: got '#N/A'Expecting numeric in G544 / R544C7: got '#N/A'Expecting numeric in J544 / R544C10: got '#N/A'Expecting numeric in K544 / R544C11: got '#N/A'Expecting numeric in L544 / R544C12: got '#N/A'Expecting numeric in M544 / R544C13: got '#N/A'Expecting numeric in C545 / R545C3: got '#N/A'Expecting numeric in D545 / R545C4: got '#N/A'Expecting numeric in E545 / R545C5: got '#N/A'Expecting numeric in F545 / R545C6: got '#N/A'Expecting numeric in G545 / R545C7: got '#N/A'Expecting numeric in J545 / R545C10: got '#N/A'Expecting numeric in K545 / R545C11: got '#N/A'Expecting numeric in L545 / R545C12: got '#N/A'Expecting numeric in M545 / R545C13: got '#N/A'Expecting numeric in C546 / R546C3: got '#N/A'Expecting numeric in D546 / R546C4: got '#N/A'Expecting numeric in E546 / R546C5: got '#N/A'Expecting numeric in F546 / R546C6: got '#N/A'Expecting numeric in G546 / R546C7: got '#N/A'Expecting numeric in J546 / R546C10: got '#N/A'Expecting numeric in K546 / R546C11: got '#N/A'Expecting numeric in L546 / R546C12: got '#N/A'Expecting numeric in M546 / R546C13: got '#N/A'Expecting numeric in C547 / R547C3: got '#N/A'Expecting numeric in D547 / R547C4: got '#N/A'Expecting numeric in E547 / R547C5: got '#N/A'Expecting numeric in F547 / R547C6: got '#N/A'Expecting numeric in G547 / R547C7: got '#N/A'Expecting numeric in J547 / R547C10: got '#N/A'Expecting numeric in K547 / R547C11: got '#N/A'Expecting numeric in L547 / R547C12: got '#N/A'Expecting numeric in M547 / R547C13: got '#N/A'Expecting numeric in C548 / R548C3: got '#N/A'Expecting numeric in D548 / R548C4: got '#N/A'Expecting numeric in E548 / R548C5: got '#N/A'Expecting numeric in F548 / R548C6: got '#N/A'Expecting numeric in G548 / R548C7: got '#N/A'Expecting numeric in J548 / R548C10: got '#N/A'Expecting numeric in K548 / R548C11: got '#N/A'Expecting numeric in L548 / R548C12: got '#N/A'Expecting numeric in M548 / R548C13: got '#N/A'Expecting numeric in C549 / R549C3: got '#N/A'Expecting numeric in D549 / R549C4: got '#N/A'Expecting numeric in E549 / R549C5: got '#N/A'Expecting numeric in F549 / R549C6: got '#N/A'Expecting numeric in G549 / R549C7: got '#N/A'Expecting numeric in J549 / R549C10: got '#N/A'Expecting numeric in K549 / R549C11: got '#N/A'Expecting numeric in L549 / R549C12: got '#N/A'Expecting numeric in M549 / R549C13: got '#N/A'Expecting numeric in C550 / R550C3: got '#N/A'Expecting numeric in D550 / R550C4: got '#N/A'Expecting numeric in E550 / R550C5: got '#N/A'Expecting numeric in F550 / R550C6: got '#N/A'Expecting numeric in G550 / R550C7: got '#N/A'Expecting numeric in J550 / R550C10: got '#N/A'Expecting numeric in K550 / R550C11: got '#N/A'Expecting numeric in L550 / R550C12: got '#N/A'Expecting numeric in M550 / R550C13: got '#N/A'Expecting numeric in C551 / R551C3: got '#N/A'Expecting numeric in D551 / R551C4: got '#N/A'Expecting numeric in E551 / R551C5: got '#N/A'Expecting numeric in F551 / R551C6: got '#N/A'Expecting numeric in G551 / R551C7: got '#N/A'Expecting numeric in J551 / R551C10: got '#N/A'Expecting numeric in K551 / R551C11: got '#N/A'Expecting numeric in L551 / R551C12: got '#N/A'Expecting numeric in M551 / R551C13: got '#N/A'Expecting numeric in C552 / R552C3: got '#N/A'Expecting numeric in D552 / R552C4: got '#N/A'Expecting numeric in E552 / R552C5: got '#N/A'Expecting numeric in F552 / R552C6: got '#N/A'Expecting numeric in G552 / R552C7: got '#N/A'Expecting numeric in J552 / R552C10: got '#N/A'Expecting numeric in K552 / R552C11: got '#N/A'Expecting numeric in L552 / R552C12: got '#N/A'Expecting numeric in M552 / R552C13: got '#N/A'Expecting numeric in C553 / R553C3: got '#N/A'Expecting numeric in D553 / R553C4: got '#N/A'Expecting numeric in E553 / R553C5: got '#N/A'Expecting numeric in F553 / R553C6: got '#N/A'Expecting numeric in G553 / R553C7: got '#N/A'Expecting numeric in J553 / R553C10: got '#N/A'Expecting numeric in K553 / R553C11: got '#N/A'Expecting numeric in L553 / R553C12: got '#N/A'Expecting numeric in M553 / R553C13: got '#N/A'Expecting numeric in C554 / R554C3: got '#N/A'Expecting numeric in D554 / R554C4: got '#N/A'Expecting numeric in E554 / R554C5: got '#N/A'Expecting numeric in F554 / R554C6: got '#N/A'Expecting numeric in G554 / R554C7: got '#N/A'Expecting numeric in J554 / R554C10: got '#N/A'Expecting numeric in K554 / R554C11: got '#N/A'Expecting numeric in L554 / R554C12: got '#N/A'Expecting numeric in M554 / R554C13: got '#N/A'Expecting numeric in C555 / R555C3: got '#N/A'Expecting numeric in D555 / R555C4: got '#N/A'Expecting numeric in E555 / R555C5: got '#N/A'Expecting numeric in F555 / R555C6: got '#N/A'Expecting numeric in G555 / R555C7: got '#N/A'Expecting numeric in J555 / R555C10: got '#N/A'Expecting numeric in K555 / R555C11: got '#N/A'Expecting numeric in L555 / R555C12: got '#N/A'Expecting numeric in M555 / R555C13: got '#N/A'Expecting numeric in C556 / R556C3: got '#N/A'Expecting numeric in D556 / R556C4: got '#N/A'Expecting numeric in E556 / R556C5: got '#N/A'Expecting numeric in F556 / R556C6: got '#N/A'Expecting numeric in G556 / R556C7: got '#N/A'Expecting numeric in J556 / R556C10: got '#N/A'Expecting numeric in K556 / R556C11: got '#N/A'Expecting numeric in L556 / R556C12: got '#N/A'Expecting numeric in M556 / R556C13: got '#N/A'Expecting numeric in C557 / R557C3: got '#N/A'Expecting numeric in D557 / R557C4: got '#N/A'Expecting numeric in E557 / R557C5: got '#N/A'Expecting numeric in F557 / R557C6: got '#N/A'Expecting numeric in G557 / R557C7: got '#N/A'Expecting numeric in J557 / R557C10: got '#N/A'Expecting numeric in K557 / R557C11: got '#N/A'Expecting numeric in L557 / R557C12: got '#N/A'Expecting numeric in M557 / R557C13: got '#N/A'Expecting numeric in C558 / R558C3: got '#N/A'Expecting numeric in D558 / R558C4: got '#N/A'Expecting numeric in E558 / R558C5: got '#N/A'Expecting numeric in F558 / R558C6: got '#N/A'Expecting numeric in G558 / R558C7: got '#N/A'Expecting numeric in J558 / R558C10: got '#N/A'Expecting numeric in K558 / R558C11: got '#N/A'Expecting numeric in L558 / R558C12: got '#N/A'Expecting numeric in M558 / R558C13: got '#N/A'Expecting numeric in C559 / R559C3: got '#N/A'Expecting numeric in D559 / R559C4: got '#N/A'Expecting numeric in E559 / R559C5: got '#N/A'Expecting numeric in F559 / R559C6: got '#N/A'Expecting numeric in G559 / R559C7: got '#N/A'Expecting numeric in J559 / R559C10: got '#N/A'Expecting numeric in K559 / R559C11: got '#N/A'Expecting numeric in L559 / R559C12: got '#N/A'Expecting numeric in M559 / R559C13: got '#N/A'Expecting numeric in C560 / R560C3: got '#N/A'Expecting numeric in D560 / R560C4: got '#N/A'Expecting numeric in E560 / R560C5: got '#N/A'Expecting numeric in F560 / R560C6: got '#N/A'Expecting numeric in G560 / R560C7: got '#N/A'Expecting numeric in J560 / R560C10: got '#N/A'Expecting numeric in K560 / R560C11: got '#N/A'Expecting numeric in L560 / R560C12: got '#N/A'Expecting numeric in M560 / R560C13: got '#N/A'Expecting numeric in C561 / R561C3: got '#N/A'Expecting numeric in D561 / R561C4: got '#N/A'Expecting numeric in E561 / R561C5: got '#N/A'Expecting numeric in F561 / R561C6: got '#N/A'Expecting numeric in G561 / R561C7: got '#N/A'Expecting numeric in J561 / R561C10: got '#N/A'Expecting numeric in K561 / R561C11: got '#N/A'Expecting numeric in L561 / R561C12: got '#N/A'Expecting numeric in M561 / R561C13: got '#N/A'Expecting numeric in C562 / R562C3: got '#N/A'Expecting numeric in D562 / R562C4: got '#N/A'Expecting numeric in E562 / R562C5: got '#N/A'Expecting numeric in F562 / R562C6: got '#N/A'Expecting numeric in G562 / R562C7: got '#N/A'Expecting numeric in J562 / R562C10: got '#N/A'Expecting numeric in K562 / R562C11: got '#N/A'Expecting numeric in L562 / R562C12: got '#N/A'Expecting numeric in M562 / R562C13: got '#N/A'Expecting numeric in C563 / R563C3: got '#N/A'Expecting numeric in D563 / R563C4: got '#N/A'Expecting numeric in E563 / R563C5: got '#N/A'Expecting numeric in F563 / R563C6: got '#N/A'Expecting numeric in G563 / R563C7: got '#N/A'Expecting numeric in J563 / R563C10: got '#N/A'Expecting numeric in K563 / R563C11: got '#N/A'Expecting numeric in L563 / R563C12: got '#N/A'Expecting numeric in M563 / R563C13: got '#N/A'Expecting numeric in C564 / R564C3: got '#N/A'Expecting numeric in D564 / R564C4: got '#N/A'Expecting numeric in E564 / R564C5: got '#N/A'Expecting numeric in F564 / R564C6: got '#N/A'Expecting numeric in G564 / R564C7: got '#N/A'Expecting numeric in J564 / R564C10: got '#N/A'Expecting numeric in K564 / R564C11: got '#N/A'Expecting numeric in L564 / R564C12: got '#N/A'Expecting numeric in M564 / R564C13: got '#N/A'Expecting numeric in C565 / R565C3: got '#N/A'Expecting numeric in D565 / R565C4: got '#N/A'Expecting numeric in E565 / R565C5: got '#N/A'Expecting numeric in F565 / R565C6: got '#N/A'Expecting numeric in G565 / R565C7: got '#N/A'Expecting numeric in J565 / R565C10: got '#N/A'Expecting numeric in K565 / R565C11: got '#N/A'Expecting numeric in L565 / R565C12: got '#N/A'Expecting numeric in M565 / R565C13: got '#N/A'Expecting numeric in C566 / R566C3: got '#N/A'Expecting numeric in D566 / R566C4: got '#N/A'Expecting numeric in E566 / R566C5: got '#N/A'Expecting numeric in F566 / R566C6: got '#N/A'Expecting numeric in G566 / R566C7: got '#N/A'Expecting numeric in J566 / R566C10: got '#N/A'Expecting numeric in K566 / R566C11: got '#N/A'Expecting numeric in L566 / R566C12: got '#N/A'Expecting numeric in M566 / R566C13: got '#N/A'Expecting numeric in C567 / R567C3: got '#N/A'Expecting numeric in D567 / R567C4: got '#N/A'Expecting numeric in E567 / R567C5: got '#N/A'Expecting numeric in F567 / R567C6: got '#N/A'Expecting numeric in G567 / R567C7: got '#N/A'Expecting numeric in J567 / R567C10: got '#N/A'Expecting numeric in K567 / R567C11: got '#N/A'Expecting numeric in L567 / R567C12: got '#N/A'Expecting numeric in M567 / R567C13: got '#N/A'Expecting numeric in C568 / R568C3: got '#N/A'Expecting numeric in D568 / R568C4: got '#N/A'Expecting numeric in E568 / R568C5: got '#N/A'Expecting numeric in F568 / R568C6: got '#N/A'Expecting numeric in G568 / R568C7: got '#N/A'Expecting numeric in J568 / R568C10: got '#N/A'Expecting numeric in K568 / R568C11: got '#N/A'Expecting numeric in L568 / R568C12: got '#N/A'Expecting numeric in M568 / R568C13: got '#N/A'Expecting numeric in C569 / R569C3: got '#N/A'Expecting numeric in D569 / R569C4: got '#N/A'Expecting numeric in E569 / R569C5: got '#N/A'Expecting numeric in F569 / R569C6: got '#N/A'Expecting numeric in G569 / R569C7: got '#N/A'Expecting numeric in J569 / R569C10: got '#N/A'Expecting numeric in K569 / R569C11: got '#N/A'Expecting numeric in L569 / R569C12: got '#N/A'Expecting numeric in M569 / R569C13: got '#N/A'Expecting numeric in C570 / R570C3: got '#N/A'Expecting numeric in D570 / R570C4: got '#N/A'Expecting numeric in E570 / R570C5: got '#N/A'Expecting numeric in F570 / R570C6: got '#N/A'Expecting numeric in G570 / R570C7: got '#N/A'Expecting numeric in J570 / R570C10: got '#N/A'Expecting numeric in K570 / R570C11: got '#N/A'Expecting numeric in L570 / R570C12: got '#N/A'Expecting numeric in M570 / R570C13: got '#N/A'Expecting numeric in C571 / R571C3: got '#N/A'Expecting numeric in D571 / R571C4: got '#N/A'Expecting numeric in E571 / R571C5: got '#N/A'Expecting numeric in F571 / R571C6: got '#N/A'Expecting numeric in G571 / R571C7: got '#N/A'Expecting numeric in J571 / R571C10: got '#N/A'Expecting numeric in K571 / R571C11: got '#N/A'Expecting numeric in L571 / R571C12: got '#N/A'Expecting numeric in M571 / R571C13: got '#N/A'Expecting numeric in C572 / R572C3: got '#N/A'Expecting numeric in D572 / R572C4: got '#N/A'Expecting numeric in E572 / R572C5: got '#N/A'Expecting numeric in F572 / R572C6: got '#N/A'Expecting numeric in G572 / R572C7: got '#N/A'Expecting numeric in J572 / R572C10: got '#N/A'Expecting numeric in K572 / R572C11: got '#N/A'Expecting numeric in L572 / R572C12: got '#N/A'Expecting numeric in M572 / R572C13: got '#N/A'Expecting numeric in C573 / R573C3: got '#N/A'Expecting numeric in D573 / R573C4: got '#N/A'Expecting numeric in E573 / R573C5: got '#N/A'Expecting numeric in F573 / R573C6: got '#N/A'Expecting numeric in G573 / R573C7: got '#N/A'Expecting numeric in J573 / R573C10: got '#N/A'Expecting numeric in K573 / R573C11: got '#N/A'Expecting numeric in L573 / R573C12: got '#N/A'Expecting numeric in M573 / R573C13: got '#N/A'Expecting numeric in C574 / R574C3: got '#N/A'Expecting numeric in D574 / R574C4: got '#N/A'Expecting numeric in E574 / R574C5: got '#N/A'Expecting numeric in F574 / R574C6: got '#N/A'Expecting numeric in G574 / R574C7: got '#N/A'Expecting numeric in J574 / R574C10: got '#N/A'Expecting numeric in K574 / R574C11: got '#N/A'Expecting numeric in L574 / R574C12: got '#N/A'Expecting numeric in M574 / R574C13: got '#N/A'Expecting numeric in C575 / R575C3: got '#N/A'Expecting numeric in D575 / R575C4: got '#N/A'Expecting numeric in E575 / R575C5: got '#N/A'Expecting numeric in F575 / R575C6: got '#N/A'Expecting numeric in G575 / R575C7: got '#N/A'Expecting numeric in J575 / R575C10: got '#N/A'Expecting numeric in K575 / R575C11: got '#N/A'Expecting numeric in L575 / R575C12: got '#N/A'Expecting numeric in M575 / R575C13: got '#N/A'Expecting numeric in C576 / R576C3: got '#N/A'Expecting numeric in D576 / R576C4: got '#N/A'Expecting numeric in E576 / R576C5: got '#N/A'Expecting numeric in F576 / R576C6: got '#N/A'Expecting numeric in G576 / R576C7: got '#N/A'Expecting numeric in J576 / R576C10: got '#N/A'Expecting numeric in K576 / R576C11: got '#N/A'Expecting numeric in L576 / R576C12: got '#N/A'Expecting numeric in M576 / R576C13: got '#N/A'Expecting numeric in C577 / R577C3: got '#N/A'Expecting numeric in D577 / R577C4: got '#N/A'Expecting numeric in E577 / R577C5: got '#N/A'Expecting numeric in F577 / R577C6: got '#N/A'Expecting numeric in G577 / R577C7: got '#N/A'Expecting numeric in J577 / R577C10: got '#N/A'Expecting numeric in K577 / R577C11: got '#N/A'Expecting numeric in L577 / R577C12: got '#N/A'Expecting numeric in M577 / R577C13: got '#N/A'Expecting numeric in C578 / R578C3: got '#N/A'Expecting numeric in D578 / R578C4: got '#N/A'Expecting numeric in E578 / R578C5: got '#N/A'Expecting numeric in F578 / R578C6: got '#N/A'Expecting numeric in G578 / R578C7: got '#N/A'Expecting numeric in J578 / R578C10: got '#N/A'Expecting numeric in K578 / R578C11: got '#N/A'Expecting numeric in L578 / R578C12: got '#N/A'Expecting numeric in M578 / R578C13: got '#N/A'Expecting numeric in C579 / R579C3: got '#N/A'Expecting numeric in D579 / R579C4: got '#N/A'Expecting numeric in E579 / R579C5: got '#N/A'Expecting numeric in F579 / R579C6: got '#N/A'Expecting numeric in G579 / R579C7: got '#N/A'Expecting numeric in J579 / R579C10: got '#N/A'Expecting numeric in K579 / R579C11: got '#N/A'Expecting numeric in L579 / R579C12: got '#N/A'Expecting numeric in M579 / R579C13: got '#N/A'Expecting numeric in C580 / R580C3: got '#N/A'Expecting numeric in D580 / R580C4: got '#N/A'Expecting numeric in E580 / R580C5: got '#N/A'Expecting numeric in F580 / R580C6: got '#N/A'Expecting numeric in G580 / R580C7: got '#N/A'Expecting numeric in J580 / R580C10: got '#N/A'Expecting numeric in K580 / R580C11: got '#N/A'Expecting numeric in L580 / R580C12: got '#N/A'Expecting numeric in M580 / R580C13: got '#N/A'Expecting numeric in C581 / R581C3: got '#N/A'Expecting numeric in D581 / R581C4: got '#N/A'Expecting numeric in E581 / R581C5: got '#N/A'Expecting numeric in F581 / R581C6: got '#N/A'Expecting numeric in G581 / R581C7: got '#N/A'Expecting numeric in J581 / R581C10: got '#N/A'Expecting numeric in K581 / R581C11: got '#N/A'Expecting numeric in L581 / R581C12: got '#N/A'Expecting numeric in M581 / R581C13: got '#N/A'Expecting numeric in C582 / R582C3: got '#N/A'Expecting numeric in D582 / R582C4: got '#N/A'Expecting numeric in E582 / R582C5: got '#N/A'Expecting numeric in F582 / R582C6: got '#N/A'Expecting numeric in G582 / R582C7: got '#N/A'Expecting numeric in J582 / R582C10: got '#N/A'Expecting numeric in K582 / R582C11: got '#N/A'Expecting numeric in L582 / R582C12: got '#N/A'Expecting numeric in M582 / R582C13: got '#N/A'Expecting numeric in C583 / R583C3: got '#N/A'Expecting numeric in D583 / R583C4: got '#N/A'Expecting numeric in E583 / R583C5: got '#N/A'Expecting numeric in F583 / R583C6: got '#N/A'Expecting numeric in G583 / R583C7: got '#N/A'Expecting numeric in J583 / R583C10: got '#N/A'Expecting numeric in K583 / R583C11: got '#N/A'Expecting numeric in L583 / R583C12: got '#N/A'Expecting numeric in M583 / R583C13: got '#N/A'Expecting numeric in C584 / R584C3: got '#N/A'Expecting numeric in D584 / R584C4: got '#N/A'Expecting numeric in E584 / R584C5: got '#N/A'Expecting numeric in F584 / R584C6: got '#N/A'Expecting numeric in G584 / R584C7: got '#N/A'Expecting numeric in J584 / R584C10: got '#N/A'Expecting numeric in K584 / R584C11: got '#N/A'Expecting numeric in L584 / R584C12: got '#N/A'Expecting numeric in M584 / R584C13: got '#N/A'Expecting numeric in C585 / R585C3: got '#N/A'Expecting numeric in D585 / R585C4: got '#N/A'Expecting numeric in E585 / R585C5: got '#N/A'Expecting numeric in F585 / R585C6: got '#N/A'Expecting numeric in G585 / R585C7: got '#N/A'Expecting numeric in J585 / R585C10: got '#N/A'Expecting numeric in K585 / R585C11: got '#N/A'Expecting numeric in L585 / R585C12: got '#N/A'Expecting numeric in M585 / R585C13: got '#N/A'Expecting numeric in C586 / R586C3: got '#N/A'Expecting numeric in D586 / R586C4: got '#N/A'Expecting numeric in E586 / R586C5: got '#N/A'Expecting numeric in F586 / R586C6: got '#N/A'Expecting numeric in G586 / R586C7: got '#N/A'Expecting numeric in J586 / R586C10: got '#N/A'Expecting numeric in K586 / R586C11: got '#N/A'Expecting numeric in L586 / R586C12: got '#N/A'Expecting numeric in M586 / R586C13: got '#N/A'Expecting numeric in C587 / R587C3: got '#N/A'Expecting numeric in D587 / R587C4: got '#N/A'Expecting numeric in E587 / R587C5: got '#N/A'Expecting numeric in F587 / R587C6: got '#N/A'Expecting numeric in G587 / R587C7: got '#N/A'Expecting numeric in J587 / R587C10: got '#N/A'Expecting numeric in K587 / R587C11: got '#N/A'Expecting numeric in L587 / R587C12: got '#N/A'Expecting numeric in M587 / R587C13: got '#N/A'Expecting numeric in C588 / R588C3: got '#N/A'Expecting numeric in D588 / R588C4: got '#N/A'Expecting numeric in E588 / R588C5: got '#N/A'Expecting numeric in F588 / R588C6: got '#N/A'Expecting numeric in G588 / R588C7: got '#N/A'Expecting numeric in J588 / R588C10: got '#N/A'Expecting numeric in K588 / R588C11: got '#N/A'Expecting numeric in L588 / R588C12: got '#N/A'Expecting numeric in M588 / R588C13: got '#N/A'Expecting numeric in C589 / R589C3: got '#N/A'Expecting numeric in D589 / R589C4: got '#N/A'Expecting numeric in E589 / R589C5: got '#N/A'Expecting numeric in F589 / R589C6: got '#N/A'Expecting numeric in G589 / R589C7: got '#N/A'Expecting numeric in J589 / R589C10: got '#N/A'Expecting numeric in K589 / R589C11: got '#N/A'Expecting numeric in L589 / R589C12: got '#N/A'Expecting numeric in M589 / R589C13: got '#N/A'Expecting numeric in C590 / R590C3: got '#N/A'Expecting numeric in D590 / R590C4: got '#N/A'Expecting numeric in E590 / R590C5: got '#N/A'Expecting numeric in F590 / R590C6: got '#N/A'Expecting numeric in G590 / R590C7: got '#N/A'Expecting numeric in J590 / R590C10: got '#N/A'Expecting numeric in K590 / R590C11: got '#N/A'Expecting numeric in L590 / R590C12: got '#N/A'Expecting numeric in M590 / R590C13: got '#N/A'Expecting numeric in C591 / R591C3: got '#N/A'Expecting numeric in D591 / R591C4: got '#N/A'Expecting numeric in E591 / R591C5: got '#N/A'Expecting numeric in F591 / R591C6: got '#N/A'Expecting numeric in G591 / R591C7: got '#N/A'Expecting numeric in J591 / R591C10: got '#N/A'Expecting numeric in K591 / R591C11: got '#N/A'Expecting numeric in L591 / R591C12: got '#N/A'Expecting numeric in M591 / R591C13: got '#N/A'Expecting numeric in C592 / R592C3: got '#N/A'Expecting numeric in D592 / R592C4: got '#N/A'Expecting numeric in E592 / R592C5: got '#N/A'Expecting numeric in F592 / R592C6: got '#N/A'Expecting numeric in G592 / R592C7: got '#N/A'Expecting numeric in J592 / R592C10: got '#N/A'Expecting numeric in K592 / R592C11: got '#N/A'Expecting numeric in L592 / R592C12: got '#N/A'Expecting numeric in M592 / R592C13: got '#N/A'Expecting numeric in C593 / R593C3: got '#N/A'Expecting numeric in D593 / R593C4: got '#N/A'Expecting numeric in E593 / R593C5: got '#N/A'Expecting numeric in F593 / R593C6: got '#N/A'Expecting numeric in G593 / R593C7: got '#N/A'Expecting numeric in J593 / R593C10: got '#N/A'Expecting numeric in K593 / R593C11: got '#N/A'Expecting numeric in L593 / R593C12: got '#N/A'Expecting numeric in M593 / R593C13: got '#N/A'Expecting numeric in C594 / R594C3: got '#N/A'Expecting numeric in D594 / R594C4: got '#N/A'Expecting numeric in E594 / R594C5: got '#N/A'Expecting numeric in F594 / R594C6: got '#N/A'Expecting numeric in G594 / R594C7: got '#N/A'Expecting numeric in J594 / R594C10: got '#N/A'Expecting numeric in K594 / R594C11: got '#N/A'Expecting numeric in L594 / R594C12: got '#N/A'Expecting numeric in M594 / R594C13: got '#N/A'Expecting numeric in C595 / R595C3: got '#N/A'Expecting numeric in D595 / R595C4: got '#N/A'Expecting numeric in E595 / R595C5: got '#N/A'Expecting numeric in F595 / R595C6: got '#N/A'Expecting numeric in G595 / R595C7: got '#N/A'Expecting numeric in J595 / R595C10: got '#N/A'Expecting numeric in K595 / R595C11: got '#N/A'Expecting numeric in L595 / R595C12: got '#N/A'Expecting numeric in M595 / R595C13: got '#N/A'Expecting numeric in C596 / R596C3: got '#N/A'Expecting numeric in D596 / R596C4: got '#N/A'Expecting numeric in E596 / R596C5: got '#N/A'Expecting numeric in F596 / R596C6: got '#N/A'Expecting numeric in G596 / R596C7: got '#N/A'Expecting numeric in J596 / R596C10: got '#N/A'Expecting numeric in K596 / R596C11: got '#N/A'Expecting numeric in L596 / R596C12: got '#N/A'Expecting numeric in M596 / R596C13: got '#N/A'Expecting numeric in C597 / R597C3: got '#N/A'Expecting numeric in D597 / R597C4: got '#N/A'Expecting numeric in E597 / R597C5: got '#N/A'Expecting numeric in F597 / R597C6: got '#N/A'Expecting numeric in G597 / R597C7: got '#N/A'Expecting numeric in J597 / R597C10: got '#N/A'Expecting numeric in K597 / R597C11: got '#N/A'Expecting numeric in L597 / R597C12: got '#N/A'Expecting numeric in M597 / R597C13: got '#N/A'Expecting numeric in C598 / R598C3: got '#N/A'Expecting numeric in D598 / R598C4: got '#N/A'Expecting numeric in E598 / R598C5: got '#N/A'Expecting numeric in F598 / R598C6: got '#N/A'Expecting numeric in G598 / R598C7: got '#N/A'Expecting numeric in J598 / R598C10: got '#N/A'Expecting numeric in K598 / R598C11: got '#N/A'Expecting numeric in L598 / R598C12: got '#N/A'Expecting numeric in M598 / R598C13: got '#N/A'Expecting numeric in C599 / R599C3: got '#N/A'Expecting numeric in D599 / R599C4: got '#N/A'Expecting numeric in E599 / R599C5: got '#N/A'Expecting numeric in F599 / R599C6: got '#N/A'Expecting numeric in G599 / R599C7: got '#N/A'Expecting numeric in J599 / R599C10: got '#N/A'Expecting numeric in K599 / R599C11: got '#N/A'Expecting numeric in L599 / R599C12: got '#N/A'Expecting numeric in M599 / R599C13: got '#N/A'Expecting numeric in C600 / R600C3: got '#N/A'Expecting numeric in D600 / R600C4: got '#N/A'Expecting numeric in E600 / R600C5: got '#N/A'Expecting numeric in F600 / R600C6: got '#N/A'Expecting numeric in G600 / R600C7: got '#N/A'Expecting numeric in J600 / R600C10: got '#N/A'Expecting numeric in K600 / R600C11: got '#N/A'Expecting numeric in L600 / R600C12: got '#N/A'Expecting numeric in M600 / R600C13: got '#N/A'Expecting numeric in C601 / R601C3: got '#N/A'Expecting numeric in D601 / R601C4: got '#N/A'Expecting numeric in E601 / R601C5: got '#N/A'Expecting numeric in F601 / R601C6: got '#N/A'Expecting numeric in G601 / R601C7: got '#N/A'Expecting numeric in J601 / R601C10: got '#N/A'Expecting numeric in K601 / R601C11: got '#N/A'Expecting numeric in L601 / R601C12: got '#N/A'Expecting numeric in M601 / R601C13: got '#N/A'Expecting numeric in C602 / R602C3: got '#N/A'Expecting numeric in D602 / R602C4: got '#N/A'Expecting numeric in E602 / R602C5: got '#N/A'Expecting numeric in F602 / R602C6: got '#N/A'Expecting numeric in G602 / R602C7: got '#N/A'Expecting numeric in J602 / R602C10: got '#N/A'Expecting numeric in K602 / R602C11: got '#N/A'Expecting numeric in L602 / R602C12: got '#N/A'Expecting numeric in M602 / R602C13: got '#N/A'Expecting numeric in C603 / R603C3: got '#N/A'Expecting numeric in D603 / R603C4: got '#N/A'Expecting numeric in E603 / R603C5: got '#N/A'Expecting numeric in F603 / R603C6: got '#N/A'Expecting numeric in G603 / R603C7: got '#N/A'Expecting numeric in J603 / R603C10: got '#N/A'Expecting numeric in K603 / R603C11: got '#N/A'Expecting numeric in L603 / R603C12: got '#N/A'Expecting numeric in M603 / R603C13: got '#N/A'Expecting numeric in C604 / R604C3: got '#N/A'Expecting numeric in D604 / R604C4: got '#N/A'Expecting numeric in E604 / R604C5: got '#N/A'Expecting numeric in F604 / R604C6: got '#N/A'Expecting numeric in G604 / R604C7: got '#N/A'Expecting numeric in J604 / R604C10: got '#N/A'Expecting numeric in K604 / R604C11: got '#N/A'Expecting numeric in L604 / R604C12: got '#N/A'Expecting numeric in M604 / R604C13: got '#N/A'Expecting numeric in C605 / R605C3: got '#N/A'Expecting numeric in D605 / R605C4: got '#N/A'Expecting numeric in E605 / R605C5: got '#N/A'Expecting numeric in F605 / R605C6: got '#N/A'Expecting numeric in G605 / R605C7: got '#N/A'Expecting numeric in J605 / R605C10: got '#N/A'Expecting numeric in K605 / R605C11: got '#N/A'Expecting numeric in L605 / R605C12: got '#N/A'Expecting numeric in M605 / R605C13: got '#N/A'Expecting numeric in C606 / R606C3: got '#N/A'Expecting numeric in D606 / R606C4: got '#N/A'Expecting numeric in E606 / R606C5: got '#N/A'Expecting numeric in F606 / R606C6: got '#N/A'Expecting numeric in G606 / R606C7: got '#N/A'Expecting numeric in J606 / R606C10: got '#N/A'Expecting numeric in K606 / R606C11: got '#N/A'Expecting numeric in L606 / R606C12: got '#N/A'Expecting numeric in M606 / R606C13: got '#N/A'Expecting numeric in C607 / R607C3: got '#N/A'Expecting numeric in D607 / R607C4: got '#N/A'Expecting numeric in E607 / R607C5: got '#N/A'Expecting numeric in F607 / R607C6: got '#N/A'Expecting numeric in G607 / R607C7: got '#N/A'Expecting numeric in J607 / R607C10: got '#N/A'Expecting numeric in K607 / R607C11: got '#N/A'Expecting numeric in L607 / R607C12: got '#N/A'Expecting numeric in M607 / R607C13: got '#N/A'Expecting numeric in C608 / R608C3: got '#N/A'Expecting numeric in D608 / R608C4: got '#N/A'Expecting numeric in E608 / R608C5: got '#N/A'Expecting numeric in F608 / R608C6: got '#N/A'Expecting numeric in G608 / R608C7: got '#N/A'Expecting numeric in J608 / R608C10: got '#N/A'Expecting numeric in K608 / R608C11: got '#N/A'Expecting numeric in L608 / R608C12: got '#N/A'Expecting numeric in M608 / R608C13: got '#N/A'Expecting numeric in C609 / R609C3: got '#N/A'Expecting numeric in D609 / R609C4: got '#N/A'Expecting numeric in E609 / R609C5: got '#N/A'Expecting numeric in F609 / R609C6: got '#N/A'Expecting numeric in G609 / R609C7: got '#N/A'Expecting numeric in J609 / R609C10: got '#N/A'Expecting numeric in K609 / R609C11: got '#N/A'Expecting numeric in L609 / R609C12: got '#N/A'Expecting numeric in M609 / R609C13: got '#N/A'Expecting numeric in C610 / R610C3: got '#N/A'Expecting numeric in D610 / R610C4: got '#N/A'Expecting numeric in E610 / R610C5: got '#N/A'Expecting numeric in F610 / R610C6: got '#N/A'Expecting numeric in G610 / R610C7: got '#N/A'Expecting numeric in J610 / R610C10: got '#N/A'Expecting numeric in K610 / R610C11: got '#N/A'Expecting numeric in L610 / R610C12: got '#N/A'Expecting numeric in M610 / R610C13: got '#N/A'Expecting numeric in C611 / R611C3: got '#N/A'Expecting numeric in D611 / R611C4: got '#N/A'Expecting numeric in E611 / R611C5: got '#N/A'Expecting numeric in F611 / R611C6: got '#N/A'Expecting numeric in G611 / R611C7: got '#N/A'Expecting numeric in J611 / R611C10: got '#N/A'Expecting numeric in K611 / R611C11: got '#N/A'Expecting numeric in L611 / R611C12: got '#N/A'Expecting numeric in M611 / R611C13: got '#N/A'Expecting numeric in C612 / R612C3: got '#N/A'Expecting numeric in D612 / R612C4: got '#N/A'Expecting numeric in E612 / R612C5: got '#N/A'Expecting numeric in F612 / R612C6: got '#N/A'Expecting numeric in G612 / R612C7: got '#N/A'Expecting numeric in J612 / R612C10: got '#N/A'Expecting numeric in K612 / R612C11: got '#N/A'Expecting numeric in L612 / R612C12: got '#N/A'Expecting numeric in M612 / R612C13: got '#N/A'Expecting numeric in C613 / R613C3: got '#N/A'Expecting numeric in D613 / R613C4: got '#N/A'Expecting numeric in E613 / R613C5: got '#N/A'Expecting numeric in F613 / R613C6: got '#N/A'Expecting numeric in G613 / R613C7: got '#N/A'Expecting numeric in J613 / R613C10: got '#N/A'Expecting numeric in K613 / R613C11: got '#N/A'Expecting numeric in L613 / R613C12: got '#N/A'Expecting numeric in M613 / R613C13: got '#N/A'Expecting numeric in C614 / R614C3: got '#N/A'Expecting numeric in D614 / R614C4: got '#N/A'Expecting numeric in E614 / R614C5: got '#N/A'Expecting numeric in F614 / R614C6: got '#N/A'Expecting numeric in G614 / R614C7: got '#N/A'Expecting numeric in J614 / R614C10: got '#N/A'Expecting numeric in K614 / R614C11: got '#N/A'Expecting numeric in L614 / R614C12: got '#N/A'Expecting numeric in M614 / R614C13: got '#N/A'Expecting numeric in C615 / R615C3: got '#N/A'Expecting numeric in D615 / R615C4: got '#N/A'Expecting numeric in E615 / R615C5: got '#N/A'Expecting numeric in F615 / R615C6: got '#N/A'Expecting numeric in G615 / R615C7: got '#N/A'Expecting numeric in J615 / R615C10: got '#N/A'Expecting numeric in K615 / R615C11: got '#N/A'Expecting numeric in L615 / R615C12: got '#N/A'Expecting numeric in M615 / R615C13: got '#N/A'Expecting numeric in C616 / R616C3: got '#N/A'Expecting numeric in D616 / R616C4: got '#N/A'Expecting numeric in E616 / R616C5: got '#N/A'Expecting numeric in F616 / R616C6: got '#N/A'Expecting numeric in G616 / R616C7: got '#N/A'Expecting numeric in J616 / R616C10: got '#N/A'Expecting numeric in K616 / R616C11: got '#N/A'Expecting numeric in L616 / R616C12: got '#N/A'Expecting numeric in M616 / R616C13: got '#N/A'Expecting numeric in C617 / R617C3: got '#N/A'Expecting numeric in D617 / R617C4: got '#N/A'Expecting numeric in E617 / R617C5: got '#N/A'Expecting numeric in F617 / R617C6: got '#N/A'Expecting numeric in G617 / R617C7: got '#N/A'Expecting numeric in J617 / R617C10: got '#N/A'Expecting numeric in K617 / R617C11: got '#N/A'Expecting numeric in L617 / R617C12: got '#N/A'Expecting numeric in M617 / R617C13: got '#N/A'Expecting numeric in C618 / R618C3: got '#N/A'Expecting numeric in D618 / R618C4: got '#N/A'Expecting numeric in E618 / R618C5: got '#N/A'Expecting numeric in F618 / R618C6: got '#N/A'Expecting numeric in G618 / R618C7: got '#N/A'Expecting numeric in J618 / R618C10: got '#N/A'Expecting numeric in K618 / R618C11: got '#N/A'Expecting numeric in L618 / R618C12: got '#N/A'Expecting numeric in M618 / R618C13: got '#N/A'Expecting numeric in C619 / R619C3: got '#N/A'Expecting numeric in D619 / R619C4: got '#N/A'Expecting numeric in E619 / R619C5: got '#N/A'Expecting numeric in F619 / R619C6: got '#N/A'Expecting numeric in G619 / R619C7: got '#N/A'Expecting numeric in J619 / R619C10: got '#N/A'Expecting numeric in K619 / R619C11: got '#N/A'Expecting numeric in L619 / R619C12: got '#N/A'Expecting numeric in M619 / R619C13: got '#N/A'Expecting numeric in C620 / R620C3: got '#N/A'Expecting numeric in D620 / R620C4: got '#N/A'Expecting numeric in E620 / R620C5: got '#N/A'Expecting numeric in F620 / R620C6: got '#N/A'Expecting numeric in G620 / R620C7: got '#N/A'Expecting numeric in J620 / R620C10: got '#N/A'Expecting numeric in K620 / R620C11: got '#N/A'Expecting numeric in L620 / R620C12: got '#N/A'Expecting numeric in M620 / R620C13: got '#N/A'Expecting numeric in C621 / R621C3: got '#N/A'Expecting numeric in D621 / R621C4: got '#N/A'Expecting numeric in E621 / R621C5: got '#N/A'Expecting numeric in F621 / R621C6: got '#N/A'Expecting numeric in G621 / R621C7: got '#N/A'Expecting numeric in J621 / R621C10: got '#N/A'Expecting numeric in K621 / R621C11: got '#N/A'Expecting numeric in L621 / R621C12: got '#N/A'Expecting numeric in M621 / R621C13: got '#N/A'Expecting numeric in C622 / R622C3: got '#N/A'Expecting numeric in D622 / R622C4: got '#N/A'Expecting numeric in E622 / R622C5: got '#N/A'Expecting numeric in F622 / R622C6: got '#N/A'Expecting numeric in G622 / R622C7: got '#N/A'Expecting numeric in J622 / R622C10: got '#N/A'Expecting numeric in K622 / R622C11: got '#N/A'Expecting numeric in L622 / R622C12: got '#N/A'Expecting numeric in M622 / R622C13: got '#N/A'Expecting numeric in C623 / R623C3: got '#N/A'Expecting numeric in D623 / R623C4: got '#N/A'Expecting numeric in E623 / R623C5: got '#N/A'Expecting numeric in F623 / R623C6: got '#N/A'Expecting numeric in G623 / R623C7: got '#N/A'Expecting numeric in J623 / R623C10: got '#N/A'Expecting numeric in K623 / R623C11: got '#N/A'Expecting numeric in L623 / R623C12: got '#N/A'Expecting numeric in M623 / R623C13: got '#N/A'Expecting numeric in C624 / R624C3: got '#N/A'Expecting numeric in D624 / R624C4: got '#N/A'Expecting numeric in E624 / R624C5: got '#N/A'Expecting numeric in F624 / R624C6: got '#N/A'Expecting numeric in G624 / R624C7: got '#N/A'Expecting numeric in J624 / R624C10: got '#N/A'Expecting numeric in K624 / R624C11: got '#N/A'Expecting numeric in L624 / R624C12: got '#N/A'Expecting numeric in M624 / R624C13: got '#N/A'Expecting numeric in C625 / R625C3: got '#N/A'Expecting numeric in D625 / R625C4: got '#N/A'Expecting numeric in E625 / R625C5: got '#N/A'Expecting numeric in F625 / R625C6: got '#N/A'Expecting numeric in G625 / R625C7: got '#N/A'Expecting numeric in J625 / R625C10: got '#N/A'Expecting numeric in K625 / R625C11: got '#N/A'Expecting numeric in L625 / R625C12: got '#N/A'Expecting numeric in M625 / R625C13: got '#N/A'Expecting numeric in C626 / R626C3: got '#N/A'Expecting numeric in D626 / R626C4: got '#N/A'Expecting numeric in E626 / R626C5: got '#N/A'Expecting numeric in F626 / R626C6: got '#N/A'Expecting numeric in G626 / R626C7: got '#N/A'Expecting numeric in J626 / R626C10: got '#N/A'Expecting numeric in K626 / R626C11: got '#N/A'Expecting numeric in L626 / R626C12: got '#N/A'Expecting numeric in M626 / R626C13: got '#N/A'Expecting numeric in C627 / R627C3: got '#N/A'Expecting numeric in D627 / R627C4: got '#N/A'Expecting numeric in E627 / R627C5: got '#N/A'Expecting numeric in F627 / R627C6: got '#N/A'Expecting numeric in G627 / R627C7: got '#N/A'Expecting numeric in J627 / R627C10: got '#N/A'Expecting numeric in K627 / R627C11: got '#N/A'Expecting numeric in L627 / R627C12: got '#N/A'Expecting numeric in M627 / R627C13: got '#N/A'Expecting numeric in C628 / R628C3: got '#N/A'Expecting numeric in D628 / R628C4: got '#N/A'Expecting numeric in E628 / R628C5: got '#N/A'Expecting numeric in F628 / R628C6: got '#N/A'Expecting numeric in G628 / R628C7: got '#N/A'Expecting numeric in J628 / R628C10: got '#N/A'Expecting numeric in K628 / R628C11: got '#N/A'Expecting numeric in L628 / R628C12: got '#N/A'Expecting numeric in M628 / R628C13: got '#N/A'Expecting numeric in C629 / R629C3: got '#N/A'Expecting numeric in D629 / R629C4: got '#N/A'Expecting numeric in E629 / R629C5: got '#N/A'Expecting numeric in F629 / R629C6: got '#N/A'Expecting numeric in G629 / R629C7: got '#N/A'Expecting numeric in J629 / R629C10: got '#N/A'Expecting numeric in K629 / R629C11: got '#N/A'Expecting numeric in L629 / R629C12: got '#N/A'Expecting numeric in M629 / R629C13: got '#N/A'Expecting numeric in C630 / R630C3: got '#N/A'Expecting numeric in D630 / R630C4: got '#N/A'Expecting numeric in E630 / R630C5: got '#N/A'Expecting numeric in F630 / R630C6: got '#N/A'Expecting numeric in G630 / R630C7: got '#N/A'Expecting numeric in J630 / R630C10: got '#N/A'Expecting numeric in K630 / R630C11: got '#N/A'Expecting numeric in L630 / R630C12: got '#N/A'Expecting numeric in M630 / R630C13: got '#N/A'Expecting numeric in C631 / R631C3: got '#N/A'Expecting numeric in D631 / R631C4: got '#N/A'Expecting numeric in E631 / R631C5: got '#N/A'Expecting numeric in F631 / R631C6: got '#N/A'Expecting numeric in G631 / R631C7: got '#N/A'Expecting numeric in J631 / R631C10: got '#N/A'Expecting numeric in K631 / R631C11: got '#N/A'Expecting numeric in L631 / R631C12: got '#N/A'Expecting numeric in M631 / R631C13: got '#N/A'Expecting numeric in C632 / R632C3: got '#N/A'Expecting numeric in D632 / R632C4: got '#N/A'Expecting numeric in E632 / R632C5: got '#N/A'Expecting numeric in F632 / R632C6: got '#N/A'Expecting numeric in G632 / R632C7: got '#N/A'Expecting numeric in J632 / R632C10: got '#N/A'Expecting numeric in K632 / R632C11: got '#N/A'Expecting numeric in L632 / R632C12: got '#N/A'Expecting numeric in M632 / R632C13: got '#N/A'Expecting numeric in C633 / R633C3: got '#N/A'Expecting numeric in D633 / R633C4: got '#N/A'Expecting numeric in E633 / R633C5: got '#N/A'Expecting numeric in F633 / R633C6: got '#N/A'Expecting numeric in G633 / R633C7: got '#N/A'Expecting numeric in J633 / R633C10: got '#N/A'Expecting numeric in K633 / R633C11: got '#N/A'Expecting numeric in L633 / R633C12: got '#N/A'Expecting numeric in M633 / R633C13: got '#N/A'Expecting numeric in C634 / R634C3: got '#N/A'Expecting numeric in D634 / R634C4: got '#N/A'Expecting numeric in E634 / R634C5: got '#N/A'Expecting numeric in F634 / R634C6: got '#N/A'Expecting numeric in G634 / R634C7: got '#N/A'Expecting numeric in J634 / R634C10: got '#N/A'Expecting numeric in K634 / R634C11: got '#N/A'Expecting numeric in L634 / R634C12: got '#N/A'Expecting numeric in M634 / R634C13: got '#N/A'Expecting numeric in C635 / R635C3: got '#N/A'Expecting numeric in D635 / R635C4: got '#N/A'Expecting numeric in E635 / R635C5: got '#N/A'Expecting numeric in F635 / R635C6: got '#N/A'Expecting numeric in G635 / R635C7: got '#N/A'Expecting numeric in J635 / R635C10: got '#N/A'Expecting numeric in K635 / R635C11: got '#N/A'Expecting numeric in L635 / R635C12: got '#N/A'Expecting numeric in M635 / R635C13: got '#N/A'Expecting numeric in C636 / R636C3: got '#N/A'Expecting numeric in D636 / R636C4: got '#N/A'Expecting numeric in E636 / R636C5: got '#N/A'Expecting numeric in F636 / R636C6: got '#N/A'Expecting numeric in G636 / R636C7: got '#N/A'Expecting numeric in J636 / R636C10: got '#N/A'Expecting numeric in K636 / R636C11: got '#N/A'Expecting numeric in L636 / R636C12: got '#N/A'Expecting numeric in M636 / R636C13: got '#N/A'Expecting numeric in C637 / R637C3: got '#N/A'Expecting numeric in D637 / R637C4: got '#N/A'Expecting numeric in E637 / R637C5: got '#N/A'Expecting numeric in F637 / R637C6: got '#N/A'Expecting numeric in G637 / R637C7: got '#N/A'Expecting numeric in J637 / R637C10: got '#N/A'Expecting numeric in K637 / R637C11: got '#N/A'Expecting numeric in L637 / R637C12: got '#N/A'Expecting numeric in M637 / R637C13: got '#N/A'Expecting numeric in C638 / R638C3: got '#N/A'Expecting numeric in D638 / R638C4: got '#N/A'Expecting numeric in E638 / R638C5: got '#N/A'Expecting numeric in F638 / R638C6: got '#N/A'Expecting numeric in G638 / R638C7: got '#N/A'Expecting numeric in J638 / R638C10: got '#N/A'Expecting numeric in K638 / R638C11: got '#N/A'Expecting numeric in L638 / R638C12: got '#N/A'Expecting numeric in M638 / R638C13: got '#N/A'Expecting numeric in C639 / R639C3: got '#N/A'Expecting numeric in D639 / R639C4: got '#N/A'Expecting numeric in E639 / R639C5: got '#N/A'Expecting numeric in F639 / R639C6: got '#N/A'Expecting numeric in G639 / R639C7: got '#N/A'Expecting numeric in J639 / R639C10: got '#N/A'Expecting numeric in K639 / R639C11: got '#N/A'Expecting numeric in L639 / R639C12: got '#N/A'Expecting numeric in M639 / R639C13: got '#N/A'Expecting numeric in C640 / R640C3: got '#N/A'Expecting numeric in D640 / R640C4: got '#N/A'Expecting numeric in E640 / R640C5: got '#N/A'Expecting numeric in F640 / R640C6: got '#N/A'Expecting numeric in G640 / R640C7: got '#N/A'Expecting numeric in J640 / R640C10: got '#N/A'Expecting numeric in K640 / R640C11: got '#N/A'Expecting numeric in L640 / R640C12: got '#N/A'Expecting numeric in M640 / R640C13: got '#N/A'Expecting numeric in C641 / R641C3: got '#N/A'Expecting numeric in D641 / R641C4: got '#N/A'Expecting numeric in E641 / R641C5: got '#N/A'Expecting numeric in F641 / R641C6: got '#N/A'Expecting numeric in G641 / R641C7: got '#N/A'Expecting numeric in J641 / R641C10: got '#N/A'Expecting numeric in K641 / R641C11: got '#N/A'Expecting numeric in L641 / R641C12: got '#N/A'Expecting numeric in M641 / R641C13: got '#N/A'Expecting numeric in C642 / R642C3: got '#N/A'Expecting numeric in D642 / R642C4: got '#N/A'Expecting numeric in E642 / R642C5: got '#N/A'Expecting numeric in F642 / R642C6: got '#N/A'Expecting numeric in G642 / R642C7: got '#N/A'Expecting numeric in J642 / R642C10: got '#N/A'Expecting numeric in K642 / R642C11: got '#N/A'Expecting numeric in L642 / R642C12: got '#N/A'Expecting numeric in M642 / R642C13: got '#N/A'Expecting numeric in C643 / R643C3: got '#N/A'Expecting numeric in D643 / R643C4: got '#N/A'Expecting numeric in E643 / R643C5: got '#N/A'Expecting numeric in F643 / R643C6: got '#N/A'Expecting numeric in G643 / R643C7: got '#N/A'Expecting numeric in J643 / R643C10: got '#N/A'Expecting numeric in K643 / R643C11: got '#N/A'Expecting numeric in L643 / R643C12: got '#N/A'Expecting numeric in M643 / R643C13: got '#N/A'Expecting numeric in C644 / R644C3: got '#N/A'Expecting numeric in D644 / R644C4: got '#N/A'Expecting numeric in E644 / R644C5: got '#N/A'Expecting numeric in F644 / R644C6: got '#N/A'Expecting numeric in G644 / R644C7: got '#N/A'Expecting numeric in J644 / R644C10: got '#N/A'Expecting numeric in K644 / R644C11: got '#N/A'Expecting numeric in L644 / R644C12: got '#N/A'Expecting numeric in M644 / R644C13: got '#N/A'Expecting numeric in C645 / R645C3: got '#N/A'Expecting numeric in D645 / R645C4: got '#N/A'Expecting numeric in E645 / R645C5: got '#N/A'Expecting numeric in F645 / R645C6: got '#N/A'Expecting numeric in G645 / R645C7: got '#N/A'Expecting numeric in J645 / R645C10: got '#N/A'Expecting numeric in K645 / R645C11: got '#N/A'Expecting numeric in L645 / R645C12: got '#N/A'Expecting numeric in M645 / R645C13: got '#N/A'Expecting numeric in C646 / R646C3: got '#N/A'Expecting numeric in D646 / R646C4: got '#N/A'Expecting numeric in E646 / R646C5: got '#N/A'Expecting numeric in F646 / R646C6: got '#N/A'Expecting numeric in G646 / R646C7: got '#N/A'Expecting numeric in J646 / R646C10: got '#N/A'Expecting numeric in K646 / R646C11: got '#N/A'Expecting numeric in L646 / R646C12: got '#N/A'Expecting numeric in M646 / R646C13: got '#N/A'Expecting numeric in C647 / R647C3: got '#N/A'Expecting numeric in D647 / R647C4: got '#N/A'Expecting numeric in E647 / R647C5: got '#N/A'Expecting numeric in F647 / R647C6: got '#N/A'Expecting numeric in G647 / R647C7: got '#N/A'Expecting numeric in J647 / R647C10: got '#N/A'Expecting numeric in K647 / R647C11: got '#N/A'Expecting numeric in L647 / R647C12: got '#N/A'Expecting numeric in M647 / R647C13: got '#N/A'Expecting numeric in C648 / R648C3: got '#N/A'Expecting numeric in D648 / R648C4: got '#N/A'Expecting numeric in E648 / R648C5: got '#N/A'Expecting numeric in F648 / R648C6: got '#N/A'Expecting numeric in G648 / R648C7: got '#N/A'Expecting numeric in J648 / R648C10: got '#N/A'Expecting numeric in K648 / R648C11: got '#N/A'Expecting numeric in L648 / R648C12: got '#N/A'Expecting numeric in M648 / R648C13: got '#N/A'Expecting numeric in C649 / R649C3: got '#N/A'Expecting numeric in D649 / R649C4: got '#N/A'Expecting numeric in E649 / R649C5: got '#N/A'Expecting numeric in F649 / R649C6: got '#N/A'Expecting numeric in G649 / R649C7: got '#N/A'Expecting numeric in J649 / R649C10: got '#N/A'Expecting numeric in K649 / R649C11: got '#N/A'Expecting numeric in L649 / R649C12: got '#N/A'Expecting numeric in M649 / R649C13: got '#N/A'Expecting numeric in C650 / R650C3: got '#N/A'Expecting numeric in D650 / R650C4: got '#N/A'Expecting numeric in E650 / R650C5: got '#N/A'Expecting numeric in F650 / R650C6: got '#N/A'Expecting numeric in G650 / R650C7: got '#N/A'Expecting numeric in J650 / R650C10: got '#N/A'Expecting numeric in K650 / R650C11: got '#N/A'Expecting numeric in L650 / R650C12: got '#N/A'Expecting numeric in M650 / R650C13: got '#N/A'Expecting numeric in C651 / R651C3: got '#N/A'Expecting numeric in D651 / R651C4: got '#N/A'Expecting numeric in E651 / R651C5: got '#N/A'Expecting numeric in F651 / R651C6: got '#N/A'Expecting numeric in G651 / R651C7: got '#N/A'Expecting numeric in J651 / R651C10: got '#N/A'Expecting numeric in K651 / R651C11: got '#N/A'Expecting numeric in L651 / R651C12: got '#N/A'Expecting numeric in M651 / R651C13: got '#N/A'Expecting numeric in C652 / R652C3: got '#N/A'Expecting numeric in D652 / R652C4: got '#N/A'Expecting numeric in E652 / R652C5: got '#N/A'Expecting numeric in F652 / R652C6: got '#N/A'Expecting numeric in G652 / R652C7: got '#N/A'Expecting numeric in J652 / R652C10: got '#N/A'Expecting numeric in K652 / R652C11: got '#N/A'Expecting numeric in L652 / R652C12: got '#N/A'Expecting numeric in M652 / R652C13: got '#N/A'Expecting numeric in C653 / R653C3: got '#N/A'Expecting numeric in D653 / R653C4: got '#N/A'Expecting numeric in E653 / R653C5: got '#N/A'Expecting numeric in F653 / R653C6: got '#N/A'Expecting numeric in G653 / R653C7: got '#N/A'Expecting numeric in J653 / R653C10: got '#N/A'Expecting numeric in K653 / R653C11: got '#N/A'Expecting numeric in L653 / R653C12: got '#N/A'Expecting numeric in M653 / R653C13: got '#N/A'Expecting numeric in C654 / R654C3: got '#N/A'Expecting numeric in D654 / R654C4: got '#N/A'Expecting numeric in E654 / R654C5: got '#N/A'Expecting numeric in F654 / R654C6: got '#N/A'Expecting numeric in G654 / R654C7: got '#N/A'Expecting numeric in J654 / R654C10: got '#N/A'Expecting numeric in K654 / R654C11: got '#N/A'Expecting numeric in L654 / R654C12: got '#N/A'Expecting numeric in M654 / R654C13: got '#N/A'Expecting numeric in C655 / R655C3: got '#N/A'Expecting numeric in D655 / R655C4: got '#N/A'Expecting numeric in E655 / R655C5: got '#N/A'Expecting numeric in F655 / R655C6: got '#N/A'Expecting numeric in G655 / R655C7: got '#N/A'Expecting numeric in J655 / R655C10: got '#N/A'Expecting numeric in K655 / R655C11: got '#N/A'Expecting numeric in L655 / R655C12: got '#N/A'Expecting numeric in M655 / R655C13: got '#N/A'Expecting numeric in C656 / R656C3: got '#N/A'Expecting numeric in D656 / R656C4: got '#N/A'Expecting numeric in E656 / R656C5: got '#N/A'Expecting numeric in F656 / R656C6: got '#N/A'Expecting numeric in G656 / R656C7: got '#N/A'Expecting numeric in J656 / R656C10: got '#N/A'Expecting numeric in K656 / R656C11: got '#N/A'Expecting numeric in L656 / R656C12: got '#N/A'Expecting numeric in M656 / R656C13: got '#N/A'Expecting numeric in C657 / R657C3: got '#N/A'Expecting numeric in D657 / R657C4: got '#N/A'Expecting numeric in E657 / R657C5: got '#N/A'Expecting numeric in F657 / R657C6: got '#N/A'Expecting numeric in G657 / R657C7: got '#N/A'Expecting numeric in J657 / R657C10: got '#N/A'Expecting numeric in K657 / R657C11: got '#N/A'Expecting numeric in L657 / R657C12: got '#N/A'Expecting numeric in M657 / R657C13: got '#N/A'Expecting numeric in C658 / R658C3: got '#N/A'Expecting numeric in D658 / R658C4: got '#N/A'Expecting numeric in E658 / R658C5: got '#N/A'Expecting numeric in F658 / R658C6: got '#N/A'Expecting numeric in G658 / R658C7: got '#N/A'Expecting numeric in J658 / R658C10: got '#N/A'Expecting numeric in K658 / R658C11: got '#N/A'Expecting numeric in L658 / R658C12: got '#N/A'Expecting numeric in M658 / R658C13: got '#N/A'Expecting numeric in C659 / R659C3: got '#N/A'Expecting numeric in D659 / R659C4: got '#N/A'Expecting numeric in E659 / R659C5: got '#N/A'Expecting numeric in F659 / R659C6: got '#N/A'Expecting numeric in G659 / R659C7: got '#N/A'Expecting numeric in J659 / R659C10: got '#N/A'Expecting numeric in K659 / R659C11: got '#N/A'Expecting numeric in L659 / R659C12: got '#N/A'Expecting numeric in M659 / R659C13: got '#N/A'Expecting numeric in C660 / R660C3: got '#N/A'Expecting numeric in D660 / R660C4: got '#N/A'Expecting numeric in E660 / R660C5: got '#N/A'Expecting numeric in F660 / R660C6: got '#N/A'Expecting numeric in G660 / R660C7: got '#N/A'Expecting numeric in J660 / R660C10: got '#N/A'Expecting numeric in K660 / R660C11: got '#N/A'Expecting numeric in L660 / R660C12: got '#N/A'Expecting numeric in M660 / R660C13: got '#N/A'Expecting numeric in C661 / R661C3: got '#N/A'Expecting numeric in D661 / R661C4: got '#N/A'Expecting numeric in E661 / R661C5: got '#N/A'Expecting numeric in F661 / R661C6: got '#N/A'Expecting numeric in G661 / R661C7: got '#N/A'Expecting numeric in J661 / R661C10: got '#N/A'Expecting numeric in K661 / R661C11: got '#N/A'Expecting numeric in L661 / R661C12: got '#N/A'Expecting numeric in M661 / R661C13: got '#N/A'Expecting numeric in C662 / R662C3: got '#N/A'Expecting numeric in D662 / R662C4: got '#N/A'Expecting numeric in E662 / R662C5: got '#N/A'Expecting numeric in F662 / R662C6: got '#N/A'Expecting numeric in G662 / R662C7: got '#N/A'Expecting numeric in J662 / R662C10: got '#N/A'Expecting numeric in K662 / R662C11: got '#N/A'Expecting numeric in L662 / R662C12: got '#N/A'Expecting numeric in M662 / R662C13: got '#N/A'Expecting numeric in C663 / R663C3: got '#N/A'Expecting numeric in D663 / R663C4: got '#N/A'Expecting numeric in E663 / R663C5: got '#N/A'Expecting numeric in F663 / R663C6: got '#N/A'Expecting numeric in G663 / R663C7: got '#N/A'Expecting numeric in J663 / R663C10: got '#N/A'Expecting numeric in K663 / R663C11: got '#N/A'Expecting numeric in L663 / R663C12: got '#N/A'Expecting numeric in M663 / R663C13: got '#N/A'Expecting numeric in C664 / R664C3: got '#N/A'Expecting numeric in D664 / R664C4: got '#N/A'Expecting numeric in E664 / R664C5: got '#N/A'Expecting numeric in F664 / R664C6: got '#N/A'Expecting numeric in G664 / R664C7: got '#N/A'Expecting numeric in J664 / R664C10: got '#N/A'Expecting numeric in K664 / R664C11: got '#N/A'Expecting numeric in L664 / R664C12: got '#N/A'Expecting numeric in M664 / R664C13: got '#N/A'Expecting numeric in C665 / R665C3: got '#N/A'Expecting numeric in D665 / R665C4: got '#N/A'Expecting numeric in E665 / R665C5: got '#N/A'Expecting numeric in F665 / R665C6: got '#N/A'Expecting numeric in G665 / R665C7: got '#N/A'Expecting numeric in J665 / R665C10: got '#N/A'Expecting numeric in K665 / R665C11: got '#N/A'Expecting numeric in L665 / R665C12: got '#N/A'Expecting numeric in M665 / R665C13: got '#N/A'Expecting numeric in C666 / R666C3: got '#N/A'Expecting numeric in D666 / R666C4: got '#N/A'Expecting numeric in E666 / R666C5: got '#N/A'Expecting numeric in F666 / R666C6: got '#N/A'Expecting numeric in G666 / R666C7: got '#N/A'Expecting numeric in J666 / R666C10: got '#N/A'Expecting numeric in K666 / R666C11: got '#N/A'Expecting numeric in L666 / R666C12: got '#N/A'Expecting numeric in M666 / R666C13: got '#N/A'Expecting numeric in C667 / R667C3: got '#N/A'Expecting numeric in D667 / R667C4: got '#N/A'Expecting numeric in E667 / R667C5: got '#N/A'Expecting numeric in F667 / R667C6: got '#N/A'Expecting numeric in G667 / R667C7: got '#N/A'Expecting numeric in J667 / R667C10: got '#N/A'Expecting numeric in K667 / R667C11: got '#N/A'Expecting numeric in L667 / R667C12: got '#N/A'Expecting numeric in M667 / R667C13: got '#N/A'Expecting numeric in C668 / R668C3: got '#N/A'Expecting numeric in D668 / R668C4: got '#N/A'Expecting numeric in E668 / R668C5: got '#N/A'Expecting numeric in F668 / R668C6: got '#N/A'Expecting numeric in G668 / R668C7: got '#N/A'Expecting numeric in J668 / R668C10: got '#N/A'Expecting numeric in K668 / R668C11: got '#N/A'Expecting numeric in L668 / R668C12: got '#N/A'Expecting numeric in M668 / R668C13: got '#N/A'Expecting numeric in C669 / R669C3: got '#N/A'Expecting numeric in D669 / R669C4: got '#N/A'Expecting numeric in E669 / R669C5: got '#N/A'Expecting numeric in F669 / R669C6: got '#N/A'Expecting numeric in G669 / R669C7: got '#N/A'Expecting numeric in J669 / R669C10: got '#N/A'Expecting numeric in K669 / R669C11: got '#N/A'Expecting numeric in L669 / R669C12: got '#N/A'Expecting numeric in M669 / R669C13: got '#N/A'Expecting numeric in C670 / R670C3: got '#N/A'Expecting numeric in D670 / R670C4: got '#N/A'Expecting numeric in E670 / R670C5: got '#N/A'Expecting numeric in F670 / R670C6: got '#N/A'Expecting numeric in G670 / R670C7: got '#N/A'Expecting numeric in J670 / R670C10: got '#N/A'Expecting numeric in K670 / R670C11: got '#N/A'Expecting numeric in L670 / R670C12: got '#N/A'Expecting numeric in M670 / R670C13: got '#N/A'Expecting numeric in C671 / R671C3: got '#N/A'Expecting numeric in D671 / R671C4: got '#N/A'Expecting numeric in E671 / R671C5: got '#N/A'Expecting numeric in F671 / R671C6: got '#N/A'Expecting numeric in G671 / R671C7: got '#N/A'Expecting numeric in J671 / R671C10: got '#N/A'Expecting numeric in K671 / R671C11: got '#N/A'Expecting numeric in L671 / R671C12: got '#N/A'Expecting numeric in M671 / R671C13: got '#N/A'Expecting numeric in C672 / R672C3: got '#N/A'Expecting numeric in D672 / R672C4: got '#N/A'Expecting numeric in E672 / R672C5: got '#N/A'Expecting numeric in F672 / R672C6: got '#N/A'Expecting numeric in G672 / R672C7: got '#N/A'Expecting numeric in J672 / R672C10: got '#N/A'Expecting numeric in K672 / R672C11: got '#N/A'Expecting numeric in L672 / R672C12: got '#N/A'Expecting numeric in M672 / R672C13: got '#N/A'Expecting numeric in C673 / R673C3: got '#N/A'Expecting numeric in D673 / R673C4: got '#N/A'Expecting numeric in E673 / R673C5: got '#N/A'Expecting numeric in F673 / R673C6: got '#N/A'Expecting numeric in G673 / R673C7: got '#N/A'Expecting numeric in J673 / R673C10: got '#N/A'Expecting numeric in K673 / R673C11: got '#N/A'Expecting numeric in L673 / R673C12: got '#N/A'Expecting numeric in M673 / R673C13: got '#N/A'Expecting numeric in C674 / R674C3: got '#N/A'Expecting numeric in D674 / R674C4: got '#N/A'Expecting numeric in E674 / R674C5: got '#N/A'Expecting numeric in F674 / R674C6: got '#N/A'Expecting numeric in G674 / R674C7: got '#N/A'Expecting numeric in J674 / R674C10: got '#N/A'Expecting numeric in K674 / R674C11: got '#N/A'Expecting numeric in L674 / R674C12: got '#N/A'Expecting numeric in M674 / R674C13: got '#N/A'Expecting numeric in C675 / R675C3: got '#N/A'Expecting numeric in D675 / R675C4: got '#N/A'Expecting numeric in E675 / R675C5: got '#N/A'Expecting numeric in F675 / R675C6: got '#N/A'Expecting numeric in G675 / R675C7: got '#N/A'Expecting numeric in J675 / R675C10: got '#N/A'Expecting numeric in K675 / R675C11: got '#N/A'Expecting numeric in L675 / R675C12: got '#N/A'Expecting numeric in M675 / R675C13: got '#N/A'Expecting numeric in C676 / R676C3: got '#N/A'Expecting numeric in D676 / R676C4: got '#N/A'Expecting numeric in E676 / R676C5: got '#N/A'Expecting numeric in F676 / R676C6: got '#N/A'Expecting numeric in G676 / R676C7: got '#N/A'Expecting numeric in J676 / R676C10: got '#N/A'Expecting numeric in K676 / R676C11: got '#N/A'Expecting numeric in L676 / R676C12: got '#N/A'Expecting numeric in M676 / R676C13: got '#N/A'Expecting numeric in C677 / R677C3: got '#N/A'Expecting numeric in D677 / R677C4: got '#N/A'Expecting numeric in E677 / R677C5: got '#N/A'Expecting numeric in F677 / R677C6: got '#N/A'Expecting numeric in G677 / R677C7: got '#N/A'Expecting numeric in J677 / R677C10: got '#N/A'Expecting numeric in K677 / R677C11: got '#N/A'Expecting numeric in L677 / R677C12: got '#N/A'Expecting numeric in M677 / R677C13: got '#N/A'Expecting numeric in C678 / R678C3: got '#N/A'Expecting numeric in D678 / R678C4: got '#N/A'Expecting numeric in E678 / R678C5: got '#N/A'Expecting numeric in F678 / R678C6: got '#N/A'Expecting numeric in G678 / R678C7: got '#N/A'Expecting numeric in J678 / R678C10: got '#N/A'Expecting numeric in K678 / R678C11: got '#N/A'Expecting numeric in L678 / R678C12: got '#N/A'Expecting numeric in M678 / R678C13: got '#N/A'Expecting numeric in C679 / R679C3: got '#N/A'Expecting numeric in D679 / R679C4: got '#N/A'Expecting numeric in E679 / R679C5: got '#N/A'Expecting numeric in F679 / R679C6: got '#N/A'Expecting numeric in G679 / R679C7: got '#N/A'Expecting numeric in J679 / R679C10: got '#N/A'Expecting numeric in K679 / R679C11: got '#N/A'Expecting numeric in L679 / R679C12: got '#N/A'Expecting numeric in M679 / R679C13: got '#N/A'Expecting numeric in C680 / R680C3: got '#N/A'Expecting numeric in D680 / R680C4: got '#N/A'Expecting numeric in E680 / R680C5: got '#N/A'Expecting numeric in F680 / R680C6: got '#N/A'Expecting numeric in G680 / R680C7: got '#N/A'Expecting numeric in J680 / R680C10: got '#N/A'Expecting numeric in K680 / R680C11: got '#N/A'Expecting numeric in L680 / R680C12: got '#N/A'Expecting numeric in M680 / R680C13: got '#N/A'Expecting numeric in C681 / R681C3: got '#N/A'Expecting numeric in D681 / R681C4: got '#N/A'Expecting numeric in E681 / R681C5: got '#N/A'Expecting numeric in F681 / R681C6: got '#N/A'Expecting numeric in G681 / R681C7: got '#N/A'Expecting numeric in J681 / R681C10: got '#N/A'Expecting numeric in K681 / R681C11: got '#N/A'Expecting numeric in L681 / R681C12: got '#N/A'Expecting numeric in M681 / R681C13: got '#N/A'Expecting numeric in C682 / R682C3: got '#N/A'Expecting numeric in D682 / R682C4: got '#N/A'Expecting numeric in E682 / R682C5: got '#N/A'Expecting numeric in F682 / R682C6: got '#N/A'Expecting numeric in G682 / R682C7: got '#N/A'Expecting numeric in J682 / R682C10: got '#N/A'Expecting numeric in K682 / R682C11: got '#N/A'Expecting numeric in L682 / R682C12: got '#N/A'Expecting numeric in M682 / R682C13: got '#N/A'Expecting numeric in C683 / R683C3: got '#N/A'Expecting numeric in D683 / R683C4: got '#N/A'Expecting numeric in E683 / R683C5: got '#N/A'Expecting numeric in F683 / R683C6: got '#N/A'Expecting numeric in G683 / R683C7: got '#N/A'Expecting numeric in J683 / R683C10: got '#N/A'Expecting numeric in K683 / R683C11: got '#N/A'Expecting numeric in L683 / R683C12: got '#N/A'Expecting numeric in M683 / R683C13: got '#N/A'Expecting numeric in C684 / R684C3: got '#N/A'Expecting numeric in D684 / R684C4: got '#N/A'Expecting numeric in E684 / R684C5: got '#N/A'Expecting numeric in F684 / R684C6: got '#N/A'Expecting numeric in G684 / R684C7: got '#N/A'Expecting numeric in J684 / R684C10: got '#N/A'Expecting numeric in K684 / R684C11: got '#N/A'Expecting numeric in L684 / R684C12: got '#N/A'Expecting numeric in M684 / R684C13: got '#N/A'Expecting numeric in C685 / R685C3: got '#N/A'Expecting numeric in D685 / R685C4: got '#N/A'Expecting numeric in E685 / R685C5: got '#N/A'Expecting numeric in F685 / R685C6: got '#N/A'Expecting numeric in G685 / R685C7: got '#N/A'Expecting numeric in J685 / R685C10: got '#N/A'Expecting numeric in K685 / R685C11: got '#N/A'Expecting numeric in L685 / R685C12: got '#N/A'Expecting numeric in M685 / R685C13: got '#N/A'Expecting numeric in C686 / R686C3: got '#N/A'Expecting numeric in D686 / R686C4: got '#N/A'Expecting numeric in E686 / R686C5: got '#N/A'Expecting numeric in F686 / R686C6: got '#N/A'Expecting numeric in G686 / R686C7: got '#N/A'Expecting numeric in J686 / R686C10: got '#N/A'Expecting numeric in K686 / R686C11: got '#N/A'Expecting numeric in L686 / R686C12: got '#N/A'Expecting numeric in M686 / R686C13: got '#N/A'Expecting numeric in C687 / R687C3: got '#N/A'Expecting numeric in D687 / R687C4: got '#N/A'Expecting numeric in E687 / R687C5: got '#N/A'Expecting numeric in F687 / R687C6: got '#N/A'Expecting numeric in G687 / R687C7: got '#N/A'Expecting numeric in J687 / R687C10: got '#N/A'Expecting numeric in K687 / R687C11: got '#N/A'Expecting numeric in L687 / R687C12: got '#N/A'Expecting numeric in M687 / R687C13: got '#N/A'Expecting numeric in C688 / R688C3: got '#N/A'Expecting numeric in D688 / R688C4: got '#N/A'Expecting numeric in E688 / R688C5: got '#N/A'Expecting numeric in F688 / R688C6: got '#N/A'Expecting numeric in G688 / R688C7: got '#N/A'Expecting numeric in J688 / R688C10: got '#N/A'Expecting numeric in K688 / R688C11: got '#N/A'Expecting numeric in L688 / R688C12: got '#N/A'Expecting numeric in M688 / R688C13: got '#N/A'Expecting numeric in C689 / R689C3: got '#N/A'Expecting numeric in D689 / R689C4: got '#N/A'Expecting numeric in E689 / R689C5: got '#N/A'Expecting numeric in F689 / R689C6: got '#N/A'Expecting numeric in G689 / R689C7: got '#N/A'Expecting numeric in J689 / R689C10: got '#N/A'Expecting numeric in K689 / R689C11: got '#N/A'Expecting numeric in L689 / R689C12: got '#N/A'Expecting numeric in M689 / R689C13: got '#N/A'Expecting numeric in C690 / R690C3: got '#N/A'Expecting numeric in D690 / R690C4: got '#N/A'Expecting numeric in E690 / R690C5: got '#N/A'Expecting numeric in F690 / R690C6: got '#N/A'Expecting numeric in G690 / R690C7: got '#N/A'Expecting numeric in J690 / R690C10: got '#N/A'Expecting numeric in K690 / R690C11: got '#N/A'Expecting numeric in L690 / R690C12: got '#N/A'Expecting numeric in M690 / R690C13: got '#N/A'Expecting numeric in C691 / R691C3: got '#N/A'Expecting numeric in D691 / R691C4: got '#N/A'Expecting numeric in E691 / R691C5: got '#N/A'Expecting numeric in F691 / R691C6: got '#N/A'Expecting numeric in G691 / R691C7: got '#N/A'Expecting numeric in J691 / R691C10: got '#N/A'Expecting numeric in K691 / R691C11: got '#N/A'Expecting numeric in L691 / R691C12: got '#N/A'Expecting numeric in M691 / R691C13: got '#N/A'Expecting numeric in C692 / R692C3: got '#N/A'Expecting numeric in D692 / R692C4: got '#N/A'Expecting numeric in E692 / R692C5: got '#N/A'Expecting numeric in F692 / R692C6: got '#N/A'Expecting numeric in G692 / R692C7: got '#N/A'Expecting numeric in J692 / R692C10: got '#N/A'Expecting numeric in K692 / R692C11: got '#N/A'Expecting numeric in L692 / R692C12: got '#N/A'Expecting numeric in M692 / R692C13: got '#N/A'Expecting numeric in C693 / R693C3: got '#N/A'Expecting numeric in D693 / R693C4: got '#N/A'Expecting numeric in E693 / R693C5: got '#N/A'Expecting numeric in F693 / R693C6: got '#N/A'Expecting numeric in G693 / R693C7: got '#N/A'Expecting numeric in J693 / R693C10: got '#N/A'Expecting numeric in K693 / R693C11: got '#N/A'Expecting numeric in L693 / R693C12: got '#N/A'Expecting numeric in M693 / R693C13: got '#N/A'Expecting numeric in C694 / R694C3: got '#N/A'Expecting numeric in D694 / R694C4: got '#N/A'Expecting numeric in E694 / R694C5: got '#N/A'Expecting numeric in F694 / R694C6: got '#N/A'Expecting numeric in G694 / R694C7: got '#N/A'Expecting numeric in J694 / R694C10: got '#N/A'Expecting numeric in K694 / R694C11: got '#N/A'Expecting numeric in L694 / R694C12: got '#N/A'Expecting numeric in M694 / R694C13: got '#N/A'Expecting numeric in C695 / R695C3: got '#N/A'Expecting numeric in D695 / R695C4: got '#N/A'Expecting numeric in E695 / R695C5: got '#N/A'Expecting numeric in F695 / R695C6: got '#N/A'Expecting numeric in G695 / R695C7: got '#N/A'Expecting numeric in J695 / R695C10: got '#N/A'Expecting numeric in K695 / R695C11: got '#N/A'Expecting numeric in L695 / R695C12: got '#N/A'Expecting numeric in M695 / R695C13: got '#N/A'Expecting numeric in C696 / R696C3: got '#N/A'Expecting numeric in D696 / R696C4: got '#N/A'Expecting numeric in E696 / R696C5: got '#N/A'Expecting numeric in F696 / R696C6: got '#N/A'Expecting numeric in G696 / R696C7: got '#N/A'Expecting numeric in J696 / R696C10: got '#N/A'Expecting numeric in K696 / R696C11: got '#N/A'Expecting numeric in L696 / R696C12: got '#N/A'Expecting numeric in M696 / R696C13: got '#N/A'Expecting numeric in C697 / R697C3: got '#N/A'Expecting numeric in D697 / R697C4: got '#N/A'Expecting numeric in E697 / R697C5: got '#N/A'Expecting numeric in F697 / R697C6: got '#N/A'Expecting numeric in G697 / R697C7: got '#N/A'Expecting numeric in J697 / R697C10: got '#N/A'Expecting numeric in K697 / R697C11: got '#N/A'Expecting numeric in L697 / R697C12: got '#N/A'Expecting numeric in M697 / R697C13: got '#N/A'Expecting numeric in C698 / R698C3: got '#N/A'Expecting numeric in D698 / R698C4: got '#N/A'Expecting numeric in E698 / R698C5: got '#N/A'Expecting numeric in F698 / R698C6: got '#N/A'Expecting numeric in G698 / R698C7: got '#N/A'Expecting numeric in J698 / R698C10: got '#N/A'Expecting numeric in K698 / R698C11: got '#N/A'Expecting numeric in L698 / R698C12: got '#N/A'Expecting numeric in M698 / R698C13: got '#N/A'Expecting numeric in C699 / R699C3: got '#N/A'Expecting numeric in D699 / R699C4: got '#N/A'Expecting numeric in E699 / R699C5: got '#N/A'Expecting numeric in F699 / R699C6: got '#N/A'Expecting numeric in G699 / R699C7: got '#N/A'Expecting numeric in J699 / R699C10: got '#N/A'Expecting numeric in K699 / R699C11: got '#N/A'Expecting numeric in L699 / R699C12: got '#N/A'Expecting numeric in M699 / R699C13: got '#N/A'Expecting numeric in C700 / R700C3: got '#N/A'Expecting numeric in D700 / R700C4: got '#N/A'Expecting numeric in E700 / R700C5: got '#N/A'Expecting numeric in F700 / R700C6: got '#N/A'Expecting numeric in G700 / R700C7: got '#N/A'Expecting numeric in J700 / R700C10: got '#N/A'Expecting numeric in K700 / R700C11: got '#N/A'Expecting numeric in L700 / R700C12: got '#N/A'Expecting numeric in M700 / R700C13: got '#N/A'Expecting numeric in C701 / R701C3: got '#N/A'Expecting numeric in D701 / R701C4: got '#N/A'Expecting numeric in E701 / R701C5: got '#N/A'Expecting numeric in F701 / R701C6: got '#N/A'Expecting numeric in G701 / R701C7: got '#N/A'Expecting numeric in J701 / R701C10: got '#N/A'Expecting numeric in K701 / R701C11: got '#N/A'Expecting numeric in L701 / R701C12: got '#N/A'Expecting numeric in M701 / R701C13: got '#N/A'Expecting numeric in C702 / R702C3: got '#N/A'Expecting numeric in D702 / R702C4: got '#N/A'Expecting numeric in E702 / R702C5: got '#N/A'Expecting numeric in F702 / R702C6: got '#N/A'Expecting numeric in G702 / R702C7: got '#N/A'Expecting numeric in J702 / R702C10: got '#N/A'Expecting numeric in K702 / R702C11: got '#N/A'Expecting numeric in L702 / R702C12: got '#N/A'Expecting numeric in M702 / R702C13: got '#N/A'Expecting numeric in C703 / R703C3: got '#N/A'Expecting numeric in D703 / R703C4: got '#N/A'Expecting numeric in E703 / R703C5: got '#N/A'Expecting numeric in F703 / R703C6: got '#N/A'Expecting numeric in G703 / R703C7: got '#N/A'Expecting numeric in J703 / R703C10: got '#N/A'Expecting numeric in K703 / R703C11: got '#N/A'Expecting numeric in L703 / R703C12: got '#N/A'Expecting numeric in M703 / R703C13: got '#N/A'Expecting numeric in C704 / R704C3: got '#N/A'Expecting numeric in D704 / R704C4: got '#N/A'Expecting numeric in E704 / R704C5: got '#N/A'Expecting numeric in F704 / R704C6: got '#N/A'Expecting numeric in G704 / R704C7: got '#N/A'Expecting numeric in J704 / R704C10: got '#N/A'Expecting numeric in K704 / R704C11: got '#N/A'Expecting numeric in L704 / R704C12: got '#N/A'Expecting numeric in M704 / R704C13: got '#N/A'Expecting numeric in C705 / R705C3: got '#N/A'Expecting numeric in D705 / R705C4: got '#N/A'Expecting numeric in E705 / R705C5: got '#N/A'Expecting numeric in F705 / R705C6: got '#N/A'Expecting numeric in G705 / R705C7: got '#N/A'Expecting numeric in J705 / R705C10: got '#N/A'Expecting numeric in K705 / R705C11: got '#N/A'Expecting numeric in L705 / R705C12: got '#N/A'Expecting numeric in M705 / R705C13: got '#N/A'Expecting numeric in C706 / R706C3: got '#N/A'Expecting numeric in D706 / R706C4: got '#N/A'Expecting numeric in E706 / R706C5: got '#N/A'Expecting numeric in F706 / R706C6: got '#N/A'Expecting numeric in G706 / R706C7: got '#N/A'Expecting numeric in J706 / R706C10: got '#N/A'Expecting numeric in K706 / R706C11: got '#N/A'Expecting numeric in L706 / R706C12: got '#N/A'Expecting numeric in M706 / R706C13: got '#N/A'Expecting numeric in C707 / R707C3: got '#N/A'Expecting numeric in D707 / R707C4: got '#N/A'Expecting numeric in E707 / R707C5: got '#N/A'Expecting numeric in F707 / R707C6: got '#N/A'Expecting numeric in G707 / R707C7: got '#N/A'Expecting numeric in J707 / R707C10: got '#N/A'Expecting numeric in K707 / R707C11: got '#N/A'Expecting numeric in L707 / R707C12: got '#N/A'Expecting numeric in M707 / R707C13: got '#N/A'Expecting numeric in C708 / R708C3: got '#N/A'Expecting numeric in D708 / R708C4: got '#N/A'Expecting numeric in E708 / R708C5: got '#N/A'Expecting numeric in F708 / R708C6: got '#N/A'Expecting numeric in G708 / R708C7: got '#N/A'Expecting numeric in J708 / R708C10: got '#N/A'Expecting numeric in K708 / R708C11: got '#N/A'Expecting numeric in L708 / R708C12: got '#N/A'Expecting numeric in M708 / R708C13: got '#N/A'Expecting numeric in C709 / R709C3: got '#N/A'Expecting numeric in D709 / R709C4: got '#N/A'Expecting numeric in E709 / R709C5: got '#N/A'Expecting numeric in F709 / R709C6: got '#N/A'Expecting numeric in G709 / R709C7: got '#N/A'Expecting numeric in J709 / R709C10: got '#N/A'Expecting numeric in K709 / R709C11: got '#N/A'Expecting numeric in L709 / R709C12: got '#N/A'Expecting numeric in M709 / R709C13: got '#N/A'Expecting numeric in C710 / R710C3: got '#N/A'Expecting numeric in D710 / R710C4: got '#N/A'Expecting numeric in E710 / R710C5: got '#N/A'Expecting numeric in F710 / R710C6: got '#N/A'Expecting numeric in G710 / R710C7: got '#N/A'Expecting numeric in J710 / R710C10: got '#N/A'Expecting numeric in K710 / R710C11: got '#N/A'Expecting numeric in L710 / R710C12: got '#N/A'Expecting numeric in M710 / R710C13: got '#N/A'Expecting numeric in C711 / R711C3: got '#N/A'Expecting numeric in D711 / R711C4: got '#N/A'Expecting numeric in E711 / R711C5: got '#N/A'Expecting numeric in F711 / R711C6: got '#N/A'Expecting numeric in G711 / R711C7: got '#N/A'Expecting numeric in J711 / R711C10: got '#N/A'Expecting numeric in K711 / R711C11: got '#N/A'Expecting numeric in L711 / R711C12: got '#N/A'Expecting numeric in M711 / R711C13: got '#N/A'Expecting numeric in C712 / R712C3: got '#N/A'Expecting numeric in D712 / R712C4: got '#N/A'Expecting numeric in E712 / R712C5: got '#N/A'Expecting numeric in F712 / R712C6: got '#N/A'Expecting numeric in G712 / R712C7: got '#N/A'Expecting numeric in J712 / R712C10: got '#N/A'Expecting numeric in K712 / R712C11: got '#N/A'Expecting numeric in L712 / R712C12: got '#N/A'Expecting numeric in M712 / R712C13: got '#N/A'Expecting numeric in C713 / R713C3: got '#N/A'Expecting numeric in D713 / R713C4: got '#N/A'Expecting numeric in E713 / R713C5: got '#N/A'Expecting numeric in F713 / R713C6: got '#N/A'Expecting numeric in G713 / R713C7: got '#N/A'Expecting numeric in J713 / R713C10: got '#N/A'Expecting numeric in K713 / R713C11: got '#N/A'Expecting numeric in L713 / R713C12: got '#N/A'Expecting numeric in M713 / R713C13: got '#N/A'Expecting numeric in C714 / R714C3: got '#N/A'Expecting numeric in D714 / R714C4: got '#N/A'Expecting numeric in E714 / R714C5: got '#N/A'Expecting numeric in F714 / R714C6: got '#N/A'Expecting numeric in G714 / R714C7: got '#N/A'Expecting numeric in J714 / R714C10: got '#N/A'Expecting numeric in K714 / R714C11: got '#N/A'Expecting numeric in L714 / R714C12: got '#N/A'Expecting numeric in M714 / R714C13: got '#N/A'Expecting numeric in C715 / R715C3: got '#N/A'Expecting numeric in D715 / R715C4: got '#N/A'Expecting numeric in E715 / R715C5: got '#N/A'Expecting numeric in F715 / R715C6: got '#N/A'Expecting numeric in G715 / R715C7: got '#N/A'Expecting numeric in J715 / R715C10: got '#N/A'Expecting numeric in K715 / R715C11: got '#N/A'Expecting numeric in L715 / R715C12: got '#N/A'Expecting numeric in M715 / R715C13: got '#N/A'Expecting numeric in C716 / R716C3: got '#N/A'Expecting numeric in D716 / R716C4: got '#N/A'Expecting numeric in E716 / R716C5: got '#N/A'Expecting numeric in F716 / R716C6: got '#N/A'Expecting numeric in G716 / R716C7: got '#N/A'Expecting numeric in J716 / R716C10: got '#N/A'Expecting numeric in K716 / R716C11: got '#N/A'Expecting numeric in L716 / R716C12: got '#N/A'Expecting numeric in M716 / R716C13: got '#N/A'Expecting numeric in C717 / R717C3: got '#N/A'Expecting numeric in D717 / R717C4: got '#N/A'Expecting numeric in E717 / R717C5: got '#N/A'Expecting numeric in F717 / R717C6: got '#N/A'Expecting numeric in G717 / R717C7: got '#N/A'Expecting numeric in J717 / R717C10: got '#N/A'Expecting numeric in K717 / R717C11: got '#N/A'Expecting numeric in L717 / R717C12: got '#N/A'Expecting numeric in M717 / R717C13: got '#N/A'Expecting numeric in C718 / R718C3: got '#N/A'Expecting numeric in D718 / R718C4: got '#N/A'Expecting numeric in E718 / R718C5: got '#N/A'Expecting numeric in F718 / R718C6: got '#N/A'Expecting numeric in G718 / R718C7: got '#N/A'Expecting numeric in J718 / R718C10: got '#N/A'Expecting numeric in K718 / R718C11: got '#N/A'Expecting numeric in L718 / R718C12: got '#N/A'Expecting numeric in M718 / R718C13: got '#N/A'Expecting numeric in C719 / R719C3: got '#N/A'Expecting numeric in D719 / R719C4: got '#N/A'Expecting numeric in E719 / R719C5: got '#N/A'Expecting numeric in F719 / R719C6: got '#N/A'Expecting numeric in G719 / R719C7: got '#N/A'Expecting numeric in J719 / R719C10: got '#N/A'Expecting numeric in K719 / R719C11: got '#N/A'Expecting numeric in L719 / R719C12: got '#N/A'Expecting numeric in M719 / R719C13: got '#N/A'Expecting numeric in C720 / R720C3: got '#N/A'Expecting numeric in D720 / R720C4: got '#N/A'Expecting numeric in E720 / R720C5: got '#N/A'Expecting numeric in F720 / R720C6: got '#N/A'Expecting numeric in G720 / R720C7: got '#N/A'Expecting numeric in J720 / R720C10: got '#N/A'Expecting numeric in K720 / R720C11: got '#N/A'Expecting numeric in L720 / R720C12: got '#N/A'Expecting numeric in M720 / R720C13: got '#N/A'Expecting numeric in C721 / R721C3: got '#N/A'Expecting numeric in D721 / R721C4: got '#N/A'Expecting numeric in E721 / R721C5: got '#N/A'Expecting numeric in F721 / R721C6: got '#N/A'Expecting numeric in G721 / R721C7: got '#N/A'Expecting numeric in J721 / R721C10: got '#N/A'Expecting numeric in K721 / R721C11: got '#N/A'Expecting numeric in L721 / R721C12: got '#N/A'Expecting numeric in M721 / R721C13: got '#N/A'Expecting numeric in C722 / R722C3: got '#N/A'Expecting numeric in D722 / R722C4: got '#N/A'Expecting numeric in E722 / R722C5: got '#N/A'Expecting numeric in F722 / R722C6: got '#N/A'Expecting numeric in G722 / R722C7: got '#N/A'Expecting numeric in J722 / R722C10: got '#N/A'Expecting numeric in K722 / R722C11: got '#N/A'Expecting numeric in L722 / R722C12: got '#N/A'Expecting numeric in M722 / R722C13: got '#N/A'Expecting numeric in C723 / R723C3: got '#N/A'Expecting numeric in D723 / R723C4: got '#N/A'Expecting numeric in E723 / R723C5: got '#N/A'Expecting numeric in F723 / R723C6: got '#N/A'Expecting numeric in G723 / R723C7: got '#N/A'Expecting numeric in J723 / R723C10: got '#N/A'Expecting numeric in K723 / R723C11: got '#N/A'Expecting numeric in L723 / R723C12: got '#N/A'Expecting numeric in M723 / R723C13: got '#N/A'Expecting numeric in C724 / R724C3: got '#N/A'Expecting numeric in D724 / R724C4: got '#N/A'Expecting numeric in E724 / R724C5: got '#N/A'Expecting numeric in F724 / R724C6: got '#N/A'Expecting numeric in G724 / R724C7: got '#N/A'Expecting numeric in J724 / R724C10: got '#N/A'Expecting numeric in K724 / R724C11: got '#N/A'Expecting numeric in L724 / R724C12: got '#N/A'Expecting numeric in M724 / R724C13: got '#N/A'Expecting numeric in C725 / R725C3: got '#N/A'Expecting numeric in D725 / R725C4: got '#N/A'Expecting numeric in E725 / R725C5: got '#N/A'Expecting numeric in F725 / R725C6: got '#N/A'Expecting numeric in G725 / R725C7: got '#N/A'Expecting numeric in J725 / R725C10: got '#N/A'Expecting numeric in K725 / R725C11: got '#N/A'Expecting numeric in L725 / R725C12: got '#N/A'Expecting numeric in M725 / R725C13: got '#N/A'Expecting numeric in C726 / R726C3: got '#N/A'Expecting numeric in D726 / R726C4: got '#N/A'Expecting numeric in E726 / R726C5: got '#N/A'Expecting numeric in F726 / R726C6: got '#N/A'Expecting numeric in G726 / R726C7: got '#N/A'Expecting numeric in J726 / R726C10: got '#N/A'Expecting numeric in K726 / R726C11: got '#N/A'Expecting numeric in L726 / R726C12: got '#N/A'Expecting numeric in M726 / R726C13: got '#N/A'Expecting numeric in C727 / R727C3: got '#N/A'Expecting numeric in D727 / R727C4: got '#N/A'Expecting numeric in E727 / R727C5: got '#N/A'Expecting numeric in F727 / R727C6: got '#N/A'Expecting numeric in G727 / R727C7: got '#N/A'Expecting numeric in J727 / R727C10: got '#N/A'Expecting numeric in K727 / R727C11: got '#N/A'Expecting numeric in L727 / R727C12: got '#N/A'Expecting numeric in M727 / R727C13: got '#N/A'Expecting numeric in C728 / R728C3: got '#N/A'Expecting numeric in D728 / R728C4: got '#N/A'Expecting numeric in E728 / R728C5: got '#N/A'Expecting numeric in F728 / R728C6: got '#N/A'Expecting numeric in G728 / R728C7: got '#N/A'Expecting numeric in J728 / R728C10: got '#N/A'Expecting numeric in K728 / R728C11: got '#N/A'Expecting numeric in L728 / R728C12: got '#N/A'Expecting numeric in M728 / R728C13: got '#N/A'Expecting numeric in C729 / R729C3: got '#N/A'Expecting numeric in D729 / R729C4: got '#N/A'Expecting numeric in E729 / R729C5: got '#N/A'Expecting numeric in F729 / R729C6: got '#N/A'Expecting numeric in G729 / R729C7: got '#N/A'Expecting numeric in J729 / R729C10: got '#N/A'Expecting numeric in K729 / R729C11: got '#N/A'Expecting numeric in L729 / R729C12: got '#N/A'Expecting numeric in M729 / R729C13: got '#N/A'Expecting numeric in C730 / R730C3: got '#N/A'Expecting numeric in D730 / R730C4: got '#N/A'Expecting numeric in E730 / R730C5: got '#N/A'Expecting numeric in F730 / R730C6: got '#N/A'Expecting numeric in G730 / R730C7: got '#N/A'Expecting numeric in J730 / R730C10: got '#N/A'Expecting numeric in K730 / R730C11: got '#N/A'Expecting numeric in L730 / R730C12: got '#N/A'Expecting numeric in M730 / R730C13: got '#N/A'Expecting numeric in C731 / R731C3: got '#N/A'Expecting numeric in D731 / R731C4: got '#N/A'Expecting numeric in E731 / R731C5: got '#N/A'Expecting numeric in F731 / R731C6: got '#N/A'Expecting numeric in G731 / R731C7: got '#N/A'Expecting numeric in J731 / R731C10: got '#N/A'Expecting numeric in K731 / R731C11: got '#N/A'Expecting numeric in L731 / R731C12: got '#N/A'Expecting numeric in M731 / R731C13: got '#N/A'Expecting numeric in C732 / R732C3: got '#N/A'Expecting numeric in D732 / R732C4: got '#N/A'Expecting numeric in E732 / R732C5: got '#N/A'Expecting numeric in F732 / R732C6: got '#N/A'Expecting numeric in G732 / R732C7: got '#N/A'Expecting numeric in J732 / R732C10: got '#N/A'Expecting numeric in K732 / R732C11: got '#N/A'Expecting numeric in L732 / R732C12: got '#N/A'Expecting numeric in M732 / R732C13: got '#N/A'Expecting numeric in C733 / R733C3: got '#N/A'Expecting numeric in D733 / R733C4: got '#N/A'Expecting numeric in E733 / R733C5: got '#N/A'Expecting numeric in F733 / R733C6: got '#N/A'Expecting numeric in G733 / R733C7: got '#N/A'Expecting numeric in J733 / R733C10: got '#N/A'Expecting numeric in K733 / R733C11: got '#N/A'Expecting numeric in L733 / R733C12: got '#N/A'Expecting numeric in M733 / R733C13: got '#N/A'Expecting numeric in C734 / R734C3: got '#N/A'Expecting numeric in D734 / R734C4: got '#N/A'Expecting numeric in E734 / R734C5: got '#N/A'Expecting numeric in F734 / R734C6: got '#N/A'Expecting numeric in G734 / R734C7: got '#N/A'Expecting numeric in J734 / R734C10: got '#N/A'Expecting numeric in K734 / R734C11: got '#N/A'Expecting numeric in L734 / R734C12: got '#N/A'Expecting numeric in M734 / R734C13: got '#N/A'Expecting numeric in C735 / R735C3: got '#N/A'Expecting numeric in D735 / R735C4: got '#N/A'Expecting numeric in E735 / R735C5: got '#N/A'Expecting numeric in F735 / R735C6: got '#N/A'Expecting numeric in G735 / R735C7: got '#N/A'Expecting numeric in J735 / R735C10: got '#N/A'Expecting numeric in K735 / R735C11: got '#N/A'Expecting numeric in L735 / R735C12: got '#N/A'Expecting numeric in M735 / R735C13: got '#N/A'Expecting numeric in C736 / R736C3: got '#N/A'Expecting numeric in D736 / R736C4: got '#N/A'Expecting numeric in E736 / R736C5: got '#N/A'Expecting numeric in F736 / R736C6: got '#N/A'Expecting numeric in G736 / R736C7: got '#N/A'Expecting numeric in J736 / R736C10: got '#N/A'Expecting numeric in K736 / R736C11: got '#N/A'Expecting numeric in L736 / R736C12: got '#N/A'Expecting numeric in M736 / R736C13: got '#N/A'Expecting numeric in C737 / R737C3: got '#N/A'Expecting numeric in D737 / R737C4: got '#N/A'Expecting numeric in E737 / R737C5: got '#N/A'Expecting numeric in F737 / R737C6: got '#N/A'Expecting numeric in G737 / R737C7: got '#N/A'Expecting numeric in J737 / R737C10: got '#N/A'Expecting numeric in K737 / R737C11: got '#N/A'Expecting numeric in L737 / R737C12: got '#N/A'Expecting numeric in M737 / R737C13: got '#N/A'Expecting numeric in C738 / R738C3: got '#N/A'Expecting numeric in D738 / R738C4: got '#N/A'Expecting numeric in E738 / R738C5: got '#N/A'Expecting numeric in F738 / R738C6: got '#N/A'Expecting numeric in G738 / R738C7: got '#N/A'Expecting numeric in J738 / R738C10: got '#N/A'Expecting numeric in K738 / R738C11: got '#N/A'Expecting numeric in L738 / R738C12: got '#N/A'Expecting numeric in M738 / R738C13: got '#N/A'Expecting numeric in C739 / R739C3: got '#N/A'Expecting numeric in D739 / R739C4: got '#N/A'Expecting numeric in E739 / R739C5: got '#N/A'Expecting numeric in F739 / R739C6: got '#N/A'Expecting numeric in G739 / R739C7: got '#N/A'Expecting numeric in J739 / R739C10: got '#N/A'Expecting numeric in K739 / R739C11: got '#N/A'Expecting numeric in L739 / R739C12: got '#N/A'Expecting numeric in M739 / R739C13: got '#N/A'Expecting numeric in C740 / R740C3: got '#N/A'Expecting numeric in D740 / R740C4: got '#N/A'Expecting numeric in E740 / R740C5: got '#N/A'Expecting numeric in F740 / R740C6: got '#N/A'Expecting numeric in G740 / R740C7: got '#N/A'Expecting numeric in J740 / R740C10: got '#N/A'Expecting numeric in K740 / R740C11: got '#N/A'Expecting numeric in L740 / R740C12: got '#N/A'Expecting numeric in M740 / R740C13: got '#N/A'Expecting numeric in C741 / R741C3: got '#N/A'Expecting numeric in D741 / R741C4: got '#N/A'Expecting numeric in E741 / R741C5: got '#N/A'Expecting numeric in F741 / R741C6: got '#N/A'Expecting numeric in G741 / R741C7: got '#N/A'Expecting numeric in J741 / R741C10: got '#N/A'Expecting numeric in K741 / R741C11: got '#N/A'Expecting numeric in L741 / R741C12: got '#N/A'Expecting numeric in M741 / R741C13: got '#N/A'Expecting numeric in C742 / R742C3: got '#N/A'Expecting numeric in D742 / R742C4: got '#N/A'Expecting numeric in E742 / R742C5: got '#N/A'Expecting numeric in F742 / R742C6: got '#N/A'Expecting numeric in G742 / R742C7: got '#N/A'Expecting numeric in J742 / R742C10: got '#N/A'Expecting numeric in K742 / R742C11: got '#N/A'Expecting numeric in L742 / R742C12: got '#N/A'Expecting numeric in M742 / R742C13: got '#N/A'Expecting numeric in C743 / R743C3: got '#N/A'Expecting numeric in D743 / R743C4: got '#N/A'Expecting numeric in E743 / R743C5: got '#N/A'Expecting numeric in F743 / R743C6: got '#N/A'Expecting numeric in G743 / R743C7: got '#N/A'Expecting numeric in J743 / R743C10: got '#N/A'Expecting numeric in K743 / R743C11: got '#N/A'Expecting numeric in L743 / R743C12: got '#N/A'Expecting numeric in M743 / R743C13: got '#N/A'Expecting numeric in C744 / R744C3: got '#N/A'Expecting numeric in D744 / R744C4: got '#N/A'Expecting numeric in E744 / R744C5: got '#N/A'Expecting numeric in F744 / R744C6: got '#N/A'Expecting numeric in G744 / R744C7: got '#N/A'Expecting numeric in J744 / R744C10: got '#N/A'Expecting numeric in K744 / R744C11: got '#N/A'Expecting numeric in L744 / R744C12: got '#N/A'Expecting numeric in M744 / R744C13: got '#N/A'Expecting numeric in C745 / R745C3: got '#N/A'Expecting numeric in D745 / R745C4: got '#N/A'Expecting numeric in E745 / R745C5: got '#N/A'Expecting numeric in F745 / R745C6: got '#N/A'Expecting numeric in G745 / R745C7: got '#N/A'Expecting numeric in J745 / R745C10: got '#N/A'Expecting numeric in K745 / R745C11: got '#N/A'Expecting numeric in L745 / R745C12: got '#N/A'Expecting numeric in M745 / R745C13: got '#N/A'Expecting numeric in C746 / R746C3: got '#N/A'Expecting numeric in D746 / R746C4: got '#N/A'Expecting numeric in E746 / R746C5: got '#N/A'Expecting numeric in F746 / R746C6: got '#N/A'Expecting numeric in G746 / R746C7: got '#N/A'Expecting numeric in J746 / R746C10: got '#N/A'Expecting numeric in K746 / R746C11: got '#N/A'Expecting numeric in L746 / R746C12: got '#N/A'Expecting numeric in M746 / R746C13: got '#N/A'Expecting numeric in C747 / R747C3: got '#N/A'Expecting numeric in D747 / R747C4: got '#N/A'Expecting numeric in E747 / R747C5: got '#N/A'Expecting numeric in F747 / R747C6: got '#N/A'Expecting numeric in G747 / R747C7: got '#N/A'Expecting numeric in J747 / R747C10: got '#N/A'Expecting numeric in K747 / R747C11: got '#N/A'Expecting numeric in L747 / R747C12: got '#N/A'Expecting numeric in M747 / R747C13: got '#N/A'Expecting numeric in C748 / R748C3: got '#N/A'Expecting numeric in D748 / R748C4: got '#N/A'Expecting numeric in E748 / R748C5: got '#N/A'Expecting numeric in F748 / R748C6: got '#N/A'Expecting numeric in G748 / R748C7: got '#N/A'Expecting numeric in J748 / R748C10: got '#N/A'Expecting numeric in K748 / R748C11: got '#N/A'Expecting numeric in L748 / R748C12: got '#N/A'Expecting numeric in M748 / R748C13: got '#N/A'Expecting numeric in C749 / R749C3: got '#N/A'Expecting numeric in D749 / R749C4: got '#N/A'Expecting numeric in E749 / R749C5: got '#N/A'Expecting numeric in F749 / R749C6: got '#N/A'Expecting numeric in G749 / R749C7: got '#N/A'Expecting numeric in J749 / R749C10: got '#N/A'Expecting numeric in K749 / R749C11: got '#N/A'Expecting numeric in L749 / R749C12: got '#N/A'Expecting numeric in M749 / R749C13: got '#N/A'Expecting numeric in C750 / R750C3: got '#N/A'Expecting numeric in D750 / R750C4: got '#N/A'Expecting numeric in E750 / R750C5: got '#N/A'Expecting numeric in F750 / R750C6: got '#N/A'Expecting numeric in G750 / R750C7: got '#N/A'Expecting numeric in J750 / R750C10: got '#N/A'Expecting numeric in K750 / R750C11: got '#N/A'Expecting numeric in L750 / R750C12: got '#N/A'Expecting numeric in M750 / R750C13: got '#N/A'Expecting numeric in C751 / R751C3: got '#N/A'Expecting numeric in D751 / R751C4: got '#N/A'Expecting numeric in E751 / R751C5: got '#N/A'Expecting numeric in F751 / R751C6: got '#N/A'Expecting numeric in G751 / R751C7: got '#N/A'Expecting numeric in J751 / R751C10: got '#N/A'Expecting numeric in K751 / R751C11: got '#N/A'Expecting numeric in L751 / R751C12: got '#N/A'Expecting numeric in M751 / R751C13: got '#N/A'Expecting numeric in C752 / R752C3: got '#N/A'Expecting numeric in D752 / R752C4: got '#N/A'Expecting numeric in E752 / R752C5: got '#N/A'Expecting numeric in F752 / R752C6: got '#N/A'Expecting numeric in G752 / R752C7: got '#N/A'Expecting numeric in J752 / R752C10: got '#N/A'Expecting numeric in K752 / R752C11: got '#N/A'Expecting numeric in L752 / R752C12: got '#N/A'Expecting numeric in M752 / R752C13: got '#N/A'Expecting numeric in C753 / R753C3: got '#N/A'Expecting numeric in D753 / R753C4: got '#N/A'Expecting numeric in E753 / R753C5: got '#N/A'Expecting numeric in F753 / R753C6: got '#N/A'Expecting numeric in G753 / R753C7: got '#N/A'Expecting numeric in J753 / R753C10: got '#N/A'Expecting numeric in K753 / R753C11: got '#N/A'Expecting numeric in L753 / R753C12: got '#N/A'Expecting numeric in M753 / R753C13: got '#N/A'Expecting numeric in C754 / R754C3: got '#N/A'Expecting numeric in D754 / R754C4: got '#N/A'Expecting numeric in E754 / R754C5: got '#N/A'Expecting numeric in F754 / R754C6: got '#N/A'Expecting numeric in G754 / R754C7: got '#N/A'Expecting numeric in J754 / R754C10: got '#N/A'Expecting numeric in K754 / R754C11: got '#N/A'Expecting numeric in L754 / R754C12: got '#N/A'Expecting numeric in M754 / R754C13: got '#N/A'Expecting numeric in C755 / R755C3: got '#N/A'Expecting numeric in D755 / R755C4: got '#N/A'Expecting numeric in E755 / R755C5: got '#N/A'Expecting numeric in F755 / R755C6: got '#N/A'Expecting numeric in G755 / R755C7: got '#N/A'Expecting numeric in J755 / R755C10: got '#N/A'Expecting numeric in K755 / R755C11: got '#N/A'Expecting numeric in L755 / R755C12: got '#N/A'Expecting numeric in M755 / R755C13: got '#N/A'Expecting numeric in C756 / R756C3: got '#N/A'Expecting numeric in D756 / R756C4: got '#N/A'Expecting numeric in E756 / R756C5: got '#N/A'Expecting numeric in F756 / R756C6: got '#N/A'Expecting numeric in G756 / R756C7: got '#N/A'Expecting numeric in J756 / R756C10: got '#N/A'Expecting numeric in K756 / R756C11: got '#N/A'Expecting numeric in L756 / R756C12: got '#N/A'Expecting numeric in M756 / R756C13: got '#N/A'Expecting numeric in C757 / R757C3: got '#N/A'Expecting numeric in D757 / R757C4: got '#N/A'Expecting numeric in E757 / R757C5: got '#N/A'Expecting numeric in F757 / R757C6: got '#N/A'Expecting numeric in G757 / R757C7: got '#N/A'Expecting numeric in J757 / R757C10: got '#N/A'Expecting numeric in K757 / R757C11: got '#N/A'Expecting numeric in L757 / R757C12: got '#N/A'Expecting numeric in M757 / R757C13: got '#N/A'Expecting numeric in C758 / R758C3: got '#N/A'Expecting numeric in D758 / R758C4: got '#N/A'Expecting numeric in E758 / R758C5: got '#N/A'Expecting numeric in F758 / R758C6: got '#N/A'Expecting numeric in G758 / R758C7: got '#N/A'Expecting numeric in J758 / R758C10: got '#N/A'Expecting numeric in K758 / R758C11: got '#N/A'Expecting numeric in L758 / R758C12: got '#N/A'Expecting numeric in M758 / R758C13: got '#N/A'Expecting numeric in C759 / R759C3: got '#N/A'Expecting numeric in D759 / R759C4: got '#N/A'Expecting numeric in E759 / R759C5: got '#N/A'Expecting numeric in F759 / R759C6: got '#N/A'Expecting numeric in G759 / R759C7: got '#N/A'Expecting numeric in J759 / R759C10: got '#N/A'Expecting numeric in K759 / R759C11: got '#N/A'Expecting numeric in L759 / R759C12: got '#N/A'Expecting numeric in M759 / R759C13: got '#N/A'Expecting numeric in C760 / R760C3: got '#N/A'Expecting numeric in D760 / R760C4: got '#N/A'Expecting numeric in E760 / R760C5: got '#N/A'Expecting numeric in F760 / R760C6: got '#N/A'Expecting numeric in G760 / R760C7: got '#N/A'Expecting numeric in J760 / R760C10: got '#N/A'Expecting numeric in K760 / R760C11: got '#N/A'Expecting numeric in L760 / R760C12: got '#N/A'Expecting numeric in M760 / R760C13: got '#N/A'Expecting numeric in C761 / R761C3: got '#N/A'Expecting numeric in D761 / R761C4: got '#N/A'Expecting numeric in E761 / R761C5: got '#N/A'Expecting numeric in F761 / R761C6: got '#N/A'Expecting numeric in G761 / R761C7: got '#N/A'Expecting numeric in J761 / R761C10: got '#N/A'Expecting numeric in K761 / R761C11: got '#N/A'Expecting numeric in L761 / R761C12: got '#N/A'Expecting numeric in M761 / R761C13: got '#N/A'Expecting numeric in C762 / R762C3: got '#N/A'Expecting numeric in D762 / R762C4: got '#N/A'Expecting numeric in E762 / R762C5: got '#N/A'Expecting numeric in F762 / R762C6: got '#N/A'Expecting numeric in G762 / R762C7: got '#N/A'Expecting numeric in J762 / R762C10: got '#N/A'Expecting numeric in K762 / R762C11: got '#N/A'Expecting numeric in L762 / R762C12: got '#N/A'Expecting numeric in M762 / R762C13: got '#N/A'Expecting numeric in C763 / R763C3: got '#N/A'Expecting numeric in D763 / R763C4: got '#N/A'Expecting numeric in E763 / R763C5: got '#N/A'Expecting numeric in F763 / R763C6: got '#N/A'Expecting numeric in G763 / R763C7: got '#N/A'Expecting numeric in J763 / R763C10: got '#N/A'Expecting numeric in K763 / R763C11: got '#N/A'Expecting numeric in L763 / R763C12: got '#N/A'Expecting numeric in M763 / R763C13: got '#N/A'Expecting numeric in C764 / R764C3: got '#N/A'Expecting numeric in D764 / R764C4: got '#N/A'Expecting numeric in E764 / R764C5: got '#N/A'Expecting numeric in F764 / R764C6: got '#N/A'Expecting numeric in G764 / R764C7: got '#N/A'Expecting numeric in J764 / R764C10: got '#N/A'Expecting numeric in K764 / R764C11: got '#N/A'Expecting numeric in L764 / R764C12: got '#N/A'Expecting numeric in M764 / R764C13: got '#N/A'Expecting numeric in C765 / R765C3: got '#N/A'Expecting numeric in D765 / R765C4: got '#N/A'Expecting numeric in E765 / R765C5: got '#N/A'Expecting numeric in F765 / R765C6: got '#N/A'Expecting numeric in G765 / R765C7: got '#N/A'Expecting numeric in J765 / R765C10: got '#N/A'Expecting numeric in K765 / R765C11: got '#N/A'Expecting numeric in L765 / R765C12: got '#N/A'Expecting numeric in M765 / R765C13: got '#N/A'Expecting numeric in C766 / R766C3: got '#N/A'Expecting numeric in D766 / R766C4: got '#N/A'Expecting numeric in E766 / R766C5: got '#N/A'Expecting numeric in F766 / R766C6: got '#N/A'Expecting numeric in G766 / R766C7: got '#N/A'Expecting numeric in J766 / R766C10: got '#N/A'Expecting numeric in K766 / R766C11: got '#N/A'Expecting numeric in L766 / R766C12: got '#N/A'Expecting numeric in M766 / R766C13: got '#N/A'Expecting numeric in C767 / R767C3: got '#N/A'Expecting numeric in D767 / R767C4: got '#N/A'Expecting numeric in E767 / R767C5: got '#N/A'Expecting numeric in F767 / R767C6: got '#N/A'Expecting numeric in G767 / R767C7: got '#N/A'Expecting numeric in J767 / R767C10: got '#N/A'Expecting numeric in K767 / R767C11: got '#N/A'Expecting numeric in L767 / R767C12: got '#N/A'Expecting numeric in M767 / R767C13: got '#N/A'Expecting numeric in C768 / R768C3: got '#N/A'Expecting numeric in D768 / R768C4: got '#N/A'Expecting numeric in E768 / R768C5: got '#N/A'Expecting numeric in F768 / R768C6: got '#N/A'Expecting numeric in G768 / R768C7: got '#N/A'Expecting numeric in J768 / R768C10: got '#N/A'Expecting numeric in K768 / R768C11: got '#N/A'Expecting numeric in L768 / R768C12: got '#N/A'Expecting numeric in M768 / R768C13: got '#N/A'Expecting numeric in C769 / R769C3: got '#N/A'Expecting numeric in D769 / R769C4: got '#N/A'Expecting numeric in E769 / R769C5: got '#N/A'Expecting numeric in F769 / R769C6: got '#N/A'Expecting numeric in G769 / R769C7: got '#N/A'Expecting numeric in J769 / R769C10: got '#N/A'Expecting numeric in K769 / R769C11: got '#N/A'Expecting numeric in L769 / R769C12: got '#N/A'Expecting numeric in M769 / R769C13: got '#N/A'Expecting numeric in C770 / R770C3: got '#N/A'Expecting numeric in D770 / R770C4: got '#N/A'Expecting numeric in E770 / R770C5: got '#N/A'Expecting numeric in F770 / R770C6: got '#N/A'Expecting numeric in G770 / R770C7: got '#N/A'Expecting numeric in J770 / R770C10: got '#N/A'Expecting numeric in K770 / R770C11: got '#N/A'Expecting numeric in L770 / R770C12: got '#N/A'Expecting numeric in M770 / R770C13: got '#N/A'Expecting numeric in C771 / R771C3: got '#N/A'Expecting numeric in D771 / R771C4: got '#N/A'Expecting numeric in E771 / R771C5: got '#N/A'Expecting numeric in F771 / R771C6: got '#N/A'Expecting numeric in G771 / R771C7: got '#N/A'Expecting numeric in J771 / R771C10: got '#N/A'Expecting numeric in K771 / R771C11: got '#N/A'Expecting numeric in L771 / R771C12: got '#N/A'Expecting numeric in M771 / R771C13: got '#N/A'Expecting numeric in C772 / R772C3: got '#N/A'Expecting numeric in D772 / R772C4: got '#N/A'Expecting numeric in E772 / R772C5: got '#N/A'Expecting numeric in F772 / R772C6: got '#N/A'Expecting numeric in G772 / R772C7: got '#N/A'Expecting numeric in J772 / R772C10: got '#N/A'Expecting numeric in K772 / R772C11: got '#N/A'Expecting numeric in L772 / R772C12: got '#N/A'Expecting numeric in M772 / R772C13: got '#N/A'Expecting numeric in C773 / R773C3: got '#N/A'Expecting numeric in D773 / R773C4: got '#N/A'Expecting numeric in E773 / R773C5: got '#N/A'Expecting numeric in F773 / R773C6: got '#N/A'Expecting numeric in G773 / R773C7: got '#N/A'Expecting numeric in J773 / R773C10: got '#N/A'Expecting numeric in K773 / R773C11: got '#N/A'Expecting numeric in L773 / R773C12: got '#N/A'Expecting numeric in M773 / R773C13: got '#N/A'Expecting numeric in C774 / R774C3: got '#N/A'Expecting numeric in D774 / R774C4: got '#N/A'Expecting numeric in E774 / R774C5: got '#N/A'Expecting numeric in F774 / R774C6: got '#N/A'Expecting numeric in G774 / R774C7: got '#N/A'Expecting numeric in J774 / R774C10: got '#N/A'Expecting numeric in K774 / R774C11: got '#N/A'Expecting numeric in L774 / R774C12: got '#N/A'Expecting numeric in M774 / R774C13: got '#N/A'Expecting numeric in C775 / R775C3: got '#N/A'Expecting numeric in D775 / R775C4: got '#N/A'Expecting numeric in E775 / R775C5: got '#N/A'Expecting numeric in F775 / R775C6: got '#N/A'Expecting numeric in G775 / R775C7: got '#N/A'Expecting numeric in J775 / R775C10: got '#N/A'Expecting numeric in K775 / R775C11: got '#N/A'Expecting numeric in L775 / R775C12: got '#N/A'Expecting numeric in M775 / R775C13: got '#N/A'Expecting numeric in C776 / R776C3: got '#N/A'Expecting numeric in D776 / R776C4: got '#N/A'Expecting numeric in E776 / R776C5: got '#N/A'Expecting numeric in F776 / R776C6: got '#N/A'Expecting numeric in G776 / R776C7: got '#N/A'Expecting numeric in J776 / R776C10: got '#N/A'Expecting numeric in K776 / R776C11: got '#N/A'Expecting numeric in L776 / R776C12: got '#N/A'Expecting numeric in M776 / R776C13: got '#N/A'Expecting numeric in C777 / R777C3: got '#N/A'Expecting numeric in D777 / R777C4: got '#N/A'Expecting numeric in E777 / R777C5: got '#N/A'Expecting numeric in F777 / R777C6: got '#N/A'Expecting numeric in G777 / R777C7: got '#N/A'Expecting numeric in J777 / R777C10: got '#N/A'Expecting numeric in K777 / R777C11: got '#N/A'Expecting numeric in L777 / R777C12: got '#N/A'Expecting numeric in M777 / R777C13: got '#N/A'Expecting numeric in C778 / R778C3: got '#N/A'Expecting numeric in D778 / R778C4: got '#N/A'Expecting numeric in E778 / R778C5: got '#N/A'Expecting numeric in F778 / R778C6: got '#N/A'Expecting numeric in G778 / R778C7: got '#N/A'Expecting numeric in J778 / R778C10: got '#N/A'Expecting numeric in K778 / R778C11: got '#N/A'Expecting numeric in L778 / R778C12: got '#N/A'Expecting numeric in M778 / R778C13: got '#N/A'Expecting numeric in C779 / R779C3: got '#N/A'Expecting numeric in D779 / R779C4: got '#N/A'Expecting numeric in E779 / R779C5: got '#N/A'Expecting numeric in F779 / R779C6: got '#N/A'Expecting numeric in G779 / R779C7: got '#N/A'Expecting numeric in J779 / R779C10: got '#N/A'Expecting numeric in K779 / R779C11: got '#N/A'Expecting numeric in L779 / R779C12: got '#N/A'Expecting numeric in M779 / R779C13: got '#N/A'Expecting numeric in C780 / R780C3: got '#N/A'Expecting numeric in D780 / R780C4: got '#N/A'Expecting numeric in E780 / R780C5: got '#N/A'Expecting numeric in F780 / R780C6: got '#N/A'Expecting numeric in G780 / R780C7: got '#N/A'Expecting numeric in J780 / R780C10: got '#N/A'Expecting numeric in K780 / R780C11: got '#N/A'Expecting numeric in L780 / R780C12: got '#N/A'Expecting numeric in M780 / R780C13: got '#N/A'Expecting numeric in C781 / R781C3: got '#N/A'Expecting numeric in D781 / R781C4: got '#N/A'Expecting numeric in E781 / R781C5: got '#N/A'Expecting numeric in F781 / R781C6: got '#N/A'Expecting numeric in G781 / R781C7: got '#N/A'Expecting numeric in J781 / R781C10: got '#N/A'Expecting numeric in K781 / R781C11: got '#N/A'Expecting numeric in L781 / R781C12: got '#N/A'Expecting numeric in M781 / R781C13: got '#N/A'Expecting numeric in C782 / R782C3: got '#N/A'Expecting numeric in D782 / R782C4: got '#N/A'Expecting numeric in E782 / R782C5: got '#N/A'Expecting numeric in F782 / R782C6: got '#N/A'Expecting numeric in G782 / R782C7: got '#N/A'Expecting numeric in J782 / R782C10: got '#N/A'Expecting numeric in K782 / R782C11: got '#N/A'Expecting numeric in L782 / R782C12: got '#N/A'Expecting numeric in M782 / R782C13: got '#N/A'Expecting numeric in C783 / R783C3: got '#N/A'Expecting numeric in D783 / R783C4: got '#N/A'Expecting numeric in E783 / R783C5: got '#N/A'Expecting numeric in F783 / R783C6: got '#N/A'Expecting numeric in G783 / R783C7: got '#N/A'Expecting numeric in J783 / R783C10: got '#N/A'Expecting numeric in K783 / R783C11: got '#N/A'Expecting numeric in L783 / R783C12: got '#N/A'Expecting numeric in M783 / R783C13: got '#N/A'Expecting numeric in C784 / R784C3: got '#N/A'Expecting numeric in D784 / R784C4: got '#N/A'Expecting numeric in E784 / R784C5: got '#N/A'Expecting numeric in F784 / R784C6: got '#N/A'Expecting numeric in G784 / R784C7: got '#N/A'Expecting numeric in J784 / R784C10: got '#N/A'Expecting numeric in K784 / R784C11: got '#N/A'Expecting numeric in L784 / R784C12: got '#N/A'Expecting numeric in M784 / R784C13: got '#N/A'Expecting numeric in C785 / R785C3: got '#N/A'Expecting numeric in D785 / R785C4: got '#N/A'Expecting numeric in E785 / R785C5: got '#N/A'Expecting numeric in F785 / R785C6: got '#N/A'Expecting numeric in G785 / R785C7: got '#N/A'Expecting numeric in J785 / R785C10: got '#N/A'Expecting numeric in K785 / R785C11: got '#N/A'Expecting numeric in L785 / R785C12: got '#N/A'Expecting numeric in M785 / R785C13: got '#N/A'Expecting numeric in C786 / R786C3: got '#N/A'Expecting numeric in D786 / R786C4: got '#N/A'Expecting numeric in E786 / R786C5: got '#N/A'Expecting numeric in F786 / R786C6: got '#N/A'Expecting numeric in G786 / R786C7: got '#N/A'Expecting numeric in J786 / R786C10: got '#N/A'Expecting numeric in K786 / R786C11: got '#N/A'Expecting numeric in L786 / R786C12: got '#N/A'Expecting numeric in M786 / R786C13: got '#N/A'Expecting numeric in C787 / R787C3: got '#N/A'Expecting numeric in D787 / R787C4: got '#N/A'Expecting numeric in E787 / R787C5: got '#N/A'Expecting numeric in F787 / R787C6: got '#N/A'Expecting numeric in G787 / R787C7: got '#N/A'Expecting numeric in J787 / R787C10: got '#N/A'Expecting numeric in K787 / R787C11: got '#N/A'Expecting numeric in L787 / R787C12: got '#N/A'Expecting numeric in M787 / R787C13: got '#N/A'Expecting numeric in C788 / R788C3: got '#N/A'Expecting numeric in D788 / R788C4: got '#N/A'Expecting numeric in E788 / R788C5: got '#N/A'Expecting numeric in F788 / R788C6: got '#N/A'Expecting numeric in G788 / R788C7: got '#N/A'Expecting numeric in J788 / R788C10: got '#N/A'Expecting numeric in K788 / R788C11: got '#N/A'Expecting numeric in L788 / R788C12: got '#N/A'Expecting numeric in M788 / R788C13: got '#N/A'Expecting numeric in C789 / R789C3: got '#N/A'Expecting numeric in D789 / R789C4: got '#N/A'Expecting numeric in E789 / R789C5: got '#N/A'Expecting numeric in F789 / R789C6: got '#N/A'Expecting numeric in G789 / R789C7: got '#N/A'Expecting numeric in J789 / R789C10: got '#N/A'Expecting numeric in K789 / R789C11: got '#N/A'Expecting numeric in L789 / R789C12: got '#N/A'Expecting numeric in M789 / R789C13: got '#N/A'Expecting numeric in C790 / R790C3: got '#N/A'Expecting numeric in D790 / R790C4: got '#N/A'Expecting numeric in E790 / R790C5: got '#N/A'Expecting numeric in F790 / R790C6: got '#N/A'Expecting numeric in G790 / R790C7: got '#N/A'Expecting numeric in J790 / R790C10: got '#N/A'Expecting numeric in K790 / R790C11: got '#N/A'Expecting numeric in L790 / R790C12: got '#N/A'Expecting numeric in M790 / R790C13: got '#N/A'Expecting numeric in C791 / R791C3: got '#N/A'Expecting numeric in D791 / R791C4: got '#N/A'Expecting numeric in E791 / R791C5: got '#N/A'Expecting numeric in F791 / R791C6: got '#N/A'Expecting numeric in G791 / R791C7: got '#N/A'Expecting numeric in J791 / R791C10: got '#N/A'Expecting numeric in K791 / R791C11: got '#N/A'Expecting numeric in L791 / R791C12: got '#N/A'Expecting numeric in M791 / R791C13: got '#N/A'Expecting numeric in C792 / R792C3: got '#N/A'Expecting numeric in D792 / R792C4: got '#N/A'Expecting numeric in E792 / R792C5: got '#N/A'Expecting numeric in F792 / R792C6: got '#N/A'Expecting numeric in G792 / R792C7: got '#N/A'Expecting numeric in J792 / R792C10: got '#N/A'Expecting numeric in K792 / R792C11: got '#N/A'Expecting numeric in L792 / R792C12: got '#N/A'Expecting numeric in M792 / R792C13: got '#N/A'Expecting numeric in C793 / R793C3: got '#N/A'Expecting numeric in D793 / R793C4: got '#N/A'Expecting numeric in E793 / R793C5: got '#N/A'Expecting numeric in F793 / R793C6: got '#N/A'Expecting numeric in G793 / R793C7: got '#N/A'Expecting numeric in J793 / R793C10: got '#N/A'Expecting numeric in K793 / R793C11: got '#N/A'Expecting numeric in L793 / R793C12: got '#N/A'Expecting numeric in M793 / R793C13: got '#N/A'Expecting numeric in C794 / R794C3: got '#N/A'Expecting numeric in D794 / R794C4: got '#N/A'Expecting numeric in E794 / R794C5: got '#N/A'Expecting numeric in F794 / R794C6: got '#N/A'Expecting numeric in G794 / R794C7: got '#N/A'Expecting numeric in J794 / R794C10: got '#N/A'Expecting numeric in K794 / R794C11: got '#N/A'Expecting numeric in L794 / R794C12: got '#N/A'Expecting numeric in M794 / R794C13: got '#N/A'Expecting numeric in C795 / R795C3: got '#N/A'Expecting numeric in D795 / R795C4: got '#N/A'Expecting numeric in E795 / R795C5: got '#N/A'Expecting numeric in F795 / R795C6: got '#N/A'Expecting numeric in G795 / R795C7: got '#N/A'Expecting numeric in J795 / R795C10: got '#N/A'Expecting numeric in K795 / R795C11: got '#N/A'Expecting numeric in L795 / R795C12: got '#N/A'Expecting numeric in M795 / R795C13: got '#N/A'Expecting numeric in C796 / R796C3: got '#N/A'Expecting numeric in D796 / R796C4: got '#N/A'Expecting numeric in E796 / R796C5: got '#N/A'Expecting numeric in F796 / R796C6: got '#N/A'Expecting numeric in G796 / R796C7: got '#N/A'Expecting numeric in J796 / R796C10: got '#N/A'Expecting numeric in K796 / R796C11: got '#N/A'Expecting numeric in L796 / R796C12: got '#N/A'Expecting numeric in M796 / R796C13: got '#N/A'Expecting numeric in C797 / R797C3: got '#N/A'Expecting numeric in D797 / R797C4: got '#N/A'Expecting numeric in E797 / R797C5: got '#N/A'Expecting numeric in F797 / R797C6: got '#N/A'Expecting numeric in G797 / R797C7: got '#N/A'Expecting numeric in J797 / R797C10: got '#N/A'Expecting numeric in K797 / R797C11: got '#N/A'Expecting numeric in L797 / R797C12: got '#N/A'Expecting numeric in M797 / R797C13: got '#N/A'Expecting numeric in C798 / R798C3: got '#N/A'Expecting numeric in D798 / R798C4: got '#N/A'Expecting numeric in E798 / R798C5: got '#N/A'Expecting numeric in F798 / R798C6: got '#N/A'Expecting numeric in G798 / R798C7: got '#N/A'Expecting numeric in J798 / R798C10: got '#N/A'Expecting numeric in K798 / R798C11: got '#N/A'Expecting numeric in L798 / R798C12: got '#N/A'Expecting numeric in M798 / R798C13: got '#N/A'Expecting numeric in C799 / R799C3: got '#N/A'Expecting numeric in D799 / R799C4: got '#N/A'Expecting numeric in E799 / R799C5: got '#N/A'Expecting numeric in F799 / R799C6: got '#N/A'Expecting numeric in G799 / R799C7: got '#N/A'Expecting numeric in J799 / R799C10: got '#N/A'Expecting numeric in K799 / R799C11: got '#N/A'Expecting numeric in L799 / R799C12: got '#N/A'Expecting numeric in M799 / R799C13: got '#N/A'Expecting numeric in C800 / R800C3: got '#N/A'Expecting numeric in D800 / R800C4: got '#N/A'Expecting numeric in E800 / R800C5: got '#N/A'Expecting numeric in F800 / R800C6: got '#N/A'Expecting numeric in G800 / R800C7: got '#N/A'Expecting numeric in J800 / R800C10: got '#N/A'Expecting numeric in K800 / R800C11: got '#N/A'Expecting numeric in L800 / R800C12: got '#N/A'Expecting numeric in M800 / R800C13: got '#N/A'Expecting numeric in C801 / R801C3: got '#N/A'Expecting numeric in D801 / R801C4: got '#N/A'Expecting numeric in E801 / R801C5: got '#N/A'Expecting numeric in F801 / R801C6: got '#N/A'Expecting numeric in G801 / R801C7: got '#N/A'Expecting numeric in J801 / R801C10: got '#N/A'Expecting numeric in K801 / R801C11: got '#N/A'Expecting numeric in L801 / R801C12: got '#N/A'Expecting numeric in M801 / R801C13: got '#N/A'Expecting numeric in C802 / R802C3: got '#N/A'Expecting numeric in D802 / R802C4: got '#N/A'Expecting numeric in E802 / R802C5: got '#N/A'Expecting numeric in F802 / R802C6: got '#N/A'Expecting numeric in G802 / R802C7: got '#N/A'Expecting numeric in J802 / R802C10: got '#N/A'Expecting numeric in K802 / R802C11: got '#N/A'Expecting numeric in L802 / R802C12: got '#N/A'Expecting numeric in M802 / R802C13: got '#N/A'Expecting numeric in C803 / R803C3: got '#N/A'Expecting numeric in D803 / R803C4: got '#N/A'Expecting numeric in E803 / R803C5: got '#N/A'Expecting numeric in F803 / R803C6: got '#N/A'Expecting numeric in G803 / R803C7: got '#N/A'Expecting numeric in J803 / R803C10: got '#N/A'Expecting numeric in K803 / R803C11: got '#N/A'Expecting numeric in L803 / R803C12: got '#N/A'Expecting numeric in M803 / R803C13: got '#N/A'Expecting numeric in C804 / R804C3: got '#N/A'Expecting numeric in D804 / R804C4: got '#N/A'Expecting numeric in E804 / R804C5: got '#N/A'Expecting numeric in F804 / R804C6: got '#N/A'Expecting numeric in G804 / R804C7: got '#N/A'Expecting numeric in J804 / R804C10: got '#N/A'Expecting numeric in K804 / R804C11: got '#N/A'Expecting numeric in L804 / R804C12: got '#N/A'Expecting numeric in M804 / R804C13: got '#N/A'Expecting numeric in C805 / R805C3: got '#N/A'Expecting numeric in D805 / R805C4: got '#N/A'Expecting numeric in E805 / R805C5: got '#N/A'Expecting numeric in F805 / R805C6: got '#N/A'Expecting numeric in G805 / R805C7: got '#N/A'Expecting numeric in J805 / R805C10: got '#N/A'Expecting numeric in K805 / R805C11: got '#N/A'Expecting numeric in L805 / R805C12: got '#N/A'Expecting numeric in M805 / R805C13: got '#N/A'Expecting numeric in C806 / R806C3: got '#N/A'Expecting numeric in D806 / R806C4: got '#N/A'Expecting numeric in E806 / R806C5: got '#N/A'Expecting numeric in F806 / R806C6: got '#N/A'Expecting numeric in G806 / R806C7: got '#N/A'Expecting numeric in J806 / R806C10: got '#N/A'Expecting numeric in K806 / R806C11: got '#N/A'Expecting numeric in L806 / R806C12: got '#N/A'Expecting numeric in M806 / R806C13: got '#N/A'Expecting numeric in C807 / R807C3: got '#N/A'Expecting numeric in D807 / R807C4: got '#N/A'Expecting numeric in E807 / R807C5: got '#N/A'Expecting numeric in F807 / R807C6: got '#N/A'Expecting numeric in G807 / R807C7: got '#N/A'Expecting numeric in J807 / R807C10: got '#N/A'Expecting numeric in K807 / R807C11: got '#N/A'Expecting numeric in L807 / R807C12: got '#N/A'Expecting numeric in M807 / R807C13: got '#N/A'Expecting numeric in C808 / R808C3: got '#N/A'Expecting numeric in D808 / R808C4: got '#N/A'Expecting numeric in E808 / R808C5: got '#N/A'Expecting numeric in F808 / R808C6: got '#N/A'Expecting numeric in G808 / R808C7: got '#N/A'Expecting numeric in J808 / R808C10: got '#N/A'Expecting numeric in K808 / R808C11: got '#N/A'Expecting numeric in L808 / R808C12: got '#N/A'Expecting numeric in M808 / R808C13: got '#N/A'Expecting numeric in C809 / R809C3: got '#N/A'Expecting numeric in D809 / R809C4: got '#N/A'Expecting numeric in E809 / R809C5: got '#N/A'Expecting numeric in F809 / R809C6: got '#N/A'Expecting numeric in G809 / R809C7: got '#N/A'Expecting numeric in J809 / R809C10: got '#N/A'Expecting numeric in K809 / R809C11: got '#N/A'Expecting numeric in L809 / R809C12: got '#N/A'Expecting numeric in M809 / R809C13: got '#N/A'Expecting numeric in C810 / R810C3: got '#N/A'Expecting numeric in D810 / R810C4: got '#N/A'Expecting numeric in E810 / R810C5: got '#N/A'Expecting numeric in F810 / R810C6: got '#N/A'Expecting numeric in G810 / R810C7: got '#N/A'Expecting numeric in J810 / R810C10: got '#N/A'Expecting numeric in K810 / R810C11: got '#N/A'Expecting numeric in L810 / R810C12: got '#N/A'Expecting numeric in M810 / R810C13: got '#N/A'Expecting numeric in C811 / R811C3: got '#N/A'Expecting numeric in D811 / R811C4: got '#N/A'Expecting numeric in E811 / R811C5: got '#N/A'Expecting numeric in F811 / R811C6: got '#N/A'Expecting numeric in G811 / R811C7: got '#N/A'Expecting numeric in J811 / R811C10: got '#N/A'Expecting numeric in K811 / R811C11: got '#N/A'Expecting numeric in L811 / R811C12: got '#N/A'Expecting numeric in M811 / R811C13: got '#N/A'Expecting numeric in C812 / R812C3: got '#N/A'Expecting numeric in D812 / R812C4: got '#N/A'Expecting numeric in E812 / R812C5: got '#N/A'Expecting numeric in F812 / R812C6: got '#N/A'Expecting numeric in G812 / R812C7: got '#N/A'Expecting numeric in J812 / R812C10: got '#N/A'Expecting numeric in K812 / R812C11: got '#N/A'Expecting numeric in L812 / R812C12: got '#N/A'Expecting numeric in M812 / R812C13: got '#N/A'Expecting numeric in C813 / R813C3: got '#N/A'Expecting numeric in D813 / R813C4: got '#N/A'Expecting numeric in E813 / R813C5: got '#N/A'Expecting numeric in F813 / R813C6: got '#N/A'Expecting numeric in G813 / R813C7: got '#N/A'Expecting numeric in J813 / R813C10: got '#N/A'Expecting numeric in K813 / R813C11: got '#N/A'Expecting numeric in L813 / R813C12: got '#N/A'Expecting numeric in M813 / R813C13: got '#N/A'Expecting numeric in C814 / R814C3: got '#N/A'Expecting numeric in D814 / R814C4: got '#N/A'Expecting numeric in E814 / R814C5: got '#N/A'Expecting numeric in F814 / R814C6: got '#N/A'Expecting numeric in G814 / R814C7: got '#N/A'Expecting numeric in J814 / R814C10: got '#N/A'Expecting numeric in K814 / R814C11: got '#N/A'Expecting numeric in L814 / R814C12: got '#N/A'Expecting numeric in M814 / R814C13: got '#N/A'Expecting numeric in C815 / R815C3: got '#N/A'Expecting numeric in D815 / R815C4: got '#N/A'Expecting numeric in E815 / R815C5: got '#N/A'Expecting numeric in F815 / R815C6: got '#N/A'Expecting numeric in G815 / R815C7: got '#N/A'Expecting numeric in J815 / R815C10: got '#N/A'Expecting numeric in K815 / R815C11: got '#N/A'Expecting numeric in L815 / R815C12: got '#N/A'Expecting numeric in M815 / R815C13: got '#N/A'Expecting numeric in C816 / R816C3: got '#N/A'Expecting numeric in D816 / R816C4: got '#N/A'Expecting numeric in E816 / R816C5: got '#N/A'Expecting numeric in F816 / R816C6: got '#N/A'Expecting numeric in G816 / R816C7: got '#N/A'Expecting numeric in J816 / R816C10: got '#N/A'Expecting numeric in K816 / R816C11: got '#N/A'Expecting numeric in L816 / R816C12: got '#N/A'Expecting numeric in M816 / R816C13: got '#N/A'Expecting numeric in C817 / R817C3: got '#N/A'Expecting numeric in D817 / R817C4: got '#N/A'Expecting numeric in E817 / R817C5: got '#N/A'Expecting numeric in F817 / R817C6: got '#N/A'Expecting numeric in G817 / R817C7: got '#N/A'Expecting numeric in J817 / R817C10: got '#N/A'Expecting numeric in K817 / R817C11: got '#N/A'Expecting numeric in L817 / R817C12: got '#N/A'Expecting numeric in M817 / R817C13: got '#N/A'Expecting numeric in C818 / R818C3: got '#N/A'Expecting numeric in D818 / R818C4: got '#N/A'Expecting numeric in E818 / R818C5: got '#N/A'Expecting numeric in F818 / R818C6: got '#N/A'Expecting numeric in G818 / R818C7: got '#N/A'Expecting numeric in J818 / R818C10: got '#N/A'Expecting numeric in K818 / R818C11: got '#N/A'Expecting numeric in L818 / R818C12: got '#N/A'Expecting numeric in M818 / R818C13: got '#N/A'Expecting numeric in C819 / R819C3: got '#N/A'Expecting numeric in D819 / R819C4: got '#N/A'Expecting numeric in E819 / R819C5: got '#N/A'Expecting numeric in F819 / R819C6: got '#N/A'Expecting numeric in G819 / R819C7: got '#N/A'Expecting numeric in J819 / R819C10: got '#N/A'Expecting numeric in K819 / R819C11: got '#N/A'Expecting numeric in L819 / R819C12: got '#N/A'Expecting numeric in M819 / R819C13: got '#N/A'Expecting numeric in C820 / R820C3: got '#N/A'Expecting numeric in D820 / R820C4: got '#N/A'Expecting numeric in E820 / R820C5: got '#N/A'Expecting numeric in F820 / R820C6: got '#N/A'Expecting numeric in G820 / R820C7: got '#N/A'Expecting numeric in J820 / R820C10: got '#N/A'Expecting numeric in K820 / R820C11: got '#N/A'Expecting numeric in L820 / R820C12: got '#N/A'Expecting numeric in M820 / R820C13: got '#N/A'Expecting numeric in C821 / R821C3: got '#N/A'Expecting numeric in D821 / R821C4: got '#N/A'Expecting numeric in E821 / R821C5: got '#N/A'Expecting numeric in F821 / R821C6: got '#N/A'Expecting numeric in G821 / R821C7: got '#N/A'Expecting numeric in J821 / R821C10: got '#N/A'Expecting numeric in K821 / R821C11: got '#N/A'Expecting numeric in L821 / R821C12: got '#N/A'Expecting numeric in M821 / R821C13: got '#N/A'Expecting numeric in C822 / R822C3: got '#N/A'Expecting numeric in D822 / R822C4: got '#N/A'Expecting numeric in E822 / R822C5: got '#N/A'Expecting numeric in F822 / R822C6: got '#N/A'Expecting numeric in G822 / R822C7: got '#N/A'Expecting numeric in J822 / R822C10: got '#N/A'Expecting numeric in K822 / R822C11: got '#N/A'Expecting numeric in L822 / R822C12: got '#N/A'Expecting numeric in M822 / R822C13: got '#N/A'Expecting numeric in C823 / R823C3: got '#N/A'Expecting numeric in D823 / R823C4: got '#N/A'Expecting numeric in E823 / R823C5: got '#N/A'Expecting numeric in F823 / R823C6: got '#N/A'Expecting numeric in G823 / R823C7: got '#N/A'Expecting numeric in J823 / R823C10: got '#N/A'Expecting numeric in K823 / R823C11: got '#N/A'Expecting numeric in L823 / R823C12: got '#N/A'Expecting numeric in M823 / R823C13: got '#N/A'Expecting numeric in C824 / R824C3: got '#N/A'Expecting numeric in D824 / R824C4: got '#N/A'Expecting numeric in E824 / R824C5: got '#N/A'Expecting numeric in F824 / R824C6: got '#N/A'Expecting numeric in G824 / R824C7: got '#N/A'Expecting numeric in J824 / R824C10: got '#N/A'Expecting numeric in K824 / R824C11: got '#N/A'Expecting numeric in L824 / R824C12: got '#N/A'Expecting numeric in M824 / R824C13: got '#N/A'Expecting numeric in C825 / R825C3: got '#N/A'Expecting numeric in D825 / R825C4: got '#N/A'Expecting numeric in E825 / R825C5: got '#N/A'Expecting numeric in F825 / R825C6: got '#N/A'Expecting numeric in G825 / R825C7: got '#N/A'Expecting numeric in J825 / R825C10: got '#N/A'Expecting numeric in K825 / R825C11: got '#N/A'Expecting numeric in L825 / R825C12: got '#N/A'Expecting numeric in M825 / R825C13: got '#N/A'Expecting numeric in C826 / R826C3: got '#N/A'Expecting numeric in D826 / R826C4: got '#N/A'Expecting numeric in E826 / R826C5: got '#N/A'Expecting numeric in F826 / R826C6: got '#N/A'Expecting numeric in G826 / R826C7: got '#N/A'Expecting numeric in J826 / R826C10: got '#N/A'Expecting numeric in K826 / R826C11: got '#N/A'Expecting numeric in L826 / R826C12: got '#N/A'Expecting numeric in M826 / R826C13: got '#N/A'Expecting numeric in C827 / R827C3: got '#N/A'Expecting numeric in D827 / R827C4: got '#N/A'Expecting numeric in E827 / R827C5: got '#N/A'Expecting numeric in F827 / R827C6: got '#N/A'Expecting numeric in G827 / R827C7: got '#N/A'Expecting numeric in J827 / R827C10: got '#N/A'Expecting numeric in K827 / R827C11: got '#N/A'Expecting numeric in L827 / R827C12: got '#N/A'Expecting numeric in M827 / R827C13: got '#N/A'Expecting numeric in C828 / R828C3: got '#N/A'Expecting numeric in D828 / R828C4: got '#N/A'Expecting numeric in E828 / R828C5: got '#N/A'Expecting numeric in F828 / R828C6: got '#N/A'Expecting numeric in G828 / R828C7: got '#N/A'Expecting numeric in J828 / R828C10: got '#N/A'Expecting numeric in K828 / R828C11: got '#N/A'Expecting numeric in L828 / R828C12: got '#N/A'Expecting numeric in M828 / R828C13: got '#N/A'Expecting numeric in C829 / R829C3: got '#N/A'Expecting numeric in D829 / R829C4: got '#N/A'Expecting numeric in E829 / R829C5: got '#N/A'Expecting numeric in F829 / R829C6: got '#N/A'Expecting numeric in G829 / R829C7: got '#N/A'Expecting numeric in J829 / R829C10: got '#N/A'Expecting numeric in K829 / R829C11: got '#N/A'Expecting numeric in L829 / R829C12: got '#N/A'Expecting numeric in M829 / R829C13: got '#N/A'Expecting numeric in C830 / R830C3: got '#N/A'Expecting numeric in D830 / R830C4: got '#N/A'Expecting numeric in E830 / R830C5: got '#N/A'Expecting numeric in F830 / R830C6: got '#N/A'Expecting numeric in G830 / R830C7: got '#N/A'Expecting numeric in J830 / R830C10: got '#N/A'Expecting numeric in K830 / R830C11: got '#N/A'Expecting numeric in L830 / R830C12: got '#N/A'Expecting numeric in M830 / R830C13: got '#N/A'Expecting numeric in C831 / R831C3: got '#N/A'Expecting numeric in D831 / R831C4: got '#N/A'Expecting numeric in E831 / R831C5: got '#N/A'Expecting numeric in F831 / R831C6: got '#N/A'Expecting numeric in G831 / R831C7: got '#N/A'Expecting numeric in J831 / R831C10: got '#N/A'Expecting numeric in K831 / R831C11: got '#N/A'Expecting numeric in L831 / R831C12: got '#N/A'Expecting numeric in M831 / R831C13: got '#N/A'Expecting numeric in C832 / R832C3: got '#N/A'Expecting numeric in D832 / R832C4: got '#N/A'Expecting numeric in E832 / R832C5: got '#N/A'Expecting numeric in F832 / R832C6: got '#N/A'Expecting numeric in G832 / R832C7: got '#N/A'Expecting numeric in J832 / R832C10: got '#N/A'Expecting numeric in K832 / R832C11: got '#N/A'Expecting numeric in L832 / R832C12: got '#N/A'Expecting numeric in M832 / R832C13: got '#N/A'Expecting numeric in C833 / R833C3: got '#N/A'Expecting numeric in D833 / R833C4: got '#N/A'Expecting numeric in E833 / R833C5: got '#N/A'Expecting numeric in F833 / R833C6: got '#N/A'Expecting numeric in G833 / R833C7: got '#N/A'Expecting numeric in J833 / R833C10: got '#N/A'Expecting numeric in K833 / R833C11: got '#N/A'Expecting numeric in L833 / R833C12: got '#N/A'Expecting numeric in M833 / R833C13: got '#N/A'Expecting numeric in C834 / R834C3: got '#N/A'Expecting numeric in D834 / R834C4: got '#N/A'Expecting numeric in E834 / R834C5: got '#N/A'Expecting numeric in F834 / R834C6: got '#N/A'Expecting numeric in G834 / R834C7: got '#N/A'Expecting numeric in J834 / R834C10: got '#N/A'Expecting numeric in K834 / R834C11: got '#N/A'Expecting numeric in L834 / R834C12: got '#N/A'Expecting numeric in M834 / R834C13: got '#N/A'Expecting numeric in C835 / R835C3: got '#N/A'Expecting numeric in D835 / R835C4: got '#N/A'Expecting numeric in E835 / R835C5: got '#N/A'Expecting numeric in F835 / R835C6: got '#N/A'Expecting numeric in G835 / R835C7: got '#N/A'Expecting numeric in J835 / R835C10: got '#N/A'Expecting numeric in K835 / R835C11: got '#N/A'Expecting numeric in L835 / R835C12: got '#N/A'Expecting numeric in M835 / R835C13: got '#N/A'Expecting numeric in C836 / R836C3: got '#N/A'Expecting numeric in D836 / R836C4: got '#N/A'Expecting numeric in E836 / R836C5: got '#N/A'Expecting numeric in F836 / R836C6: got '#N/A'Expecting numeric in G836 / R836C7: got '#N/A'Expecting numeric in J836 / R836C10: got '#N/A'Expecting numeric in K836 / R836C11: got '#N/A'Expecting numeric in L836 / R836C12: got '#N/A'Expecting numeric in M836 / R836C13: got '#N/A'Expecting numeric in C837 / R837C3: got '#N/A'Expecting numeric in D837 / R837C4: got '#N/A'Expecting numeric in E837 / R837C5: got '#N/A'Expecting numeric in F837 / R837C6: got '#N/A'Expecting numeric in G837 / R837C7: got '#N/A'Expecting numeric in J837 / R837C10: got '#N/A'Expecting numeric in K837 / R837C11: got '#N/A'Expecting numeric in L837 / R837C12: got '#N/A'Expecting numeric in M837 / R837C13: got '#N/A'Expecting numeric in C838 / R838C3: got '#N/A'Expecting numeric in D838 / R838C4: got '#N/A'Expecting numeric in E838 / R838C5: got '#N/A'Expecting numeric in F838 / R838C6: got '#N/A'Expecting numeric in G838 / R838C7: got '#N/A'Expecting numeric in J838 / R838C10: got '#N/A'Expecting numeric in K838 / R838C11: got '#N/A'Expecting numeric in L838 / R838C12: got '#N/A'Expecting numeric in M838 / R838C13: got '#N/A'Expecting numeric in C839 / R839C3: got '#N/A'Expecting numeric in D839 / R839C4: got '#N/A'Expecting numeric in E839 / R839C5: got '#N/A'Expecting numeric in F839 / R839C6: got '#N/A'Expecting numeric in G839 / R839C7: got '#N/A'Expecting numeric in J839 / R839C10: got '#N/A'Expecting numeric in K839 / R839C11: got '#N/A'Expecting numeric in L839 / R839C12: got '#N/A'Expecting numeric in M839 / R839C13: got '#N/A'Expecting numeric in C840 / R840C3: got '#N/A'Expecting numeric in D840 / R840C4: got '#N/A'Expecting numeric in E840 / R840C5: got '#N/A'Expecting numeric in F840 / R840C6: got '#N/A'Expecting numeric in G840 / R840C7: got '#N/A'Expecting numeric in J840 / R840C10: got '#N/A'Expecting numeric in K840 / R840C11: got '#N/A'Expecting numeric in L840 / R840C12: got '#N/A'Expecting numeric in M840 / R840C13: got '#N/A'Expecting numeric in C841 / R841C3: got '#N/A'Expecting numeric in D841 / R841C4: got '#N/A'Expecting numeric in E841 / R841C5: got '#N/A'Expecting numeric in F841 / R841C6: got '#N/A'Expecting numeric in G841 / R841C7: got '#N/A'Expecting numeric in J841 / R841C10: got '#N/A'Expecting numeric in K841 / R841C11: got '#N/A'Expecting numeric in L841 / R841C12: got '#N/A'Expecting numeric in M841 / R841C13: got '#N/A'Expecting numeric in C842 / R842C3: got '#N/A'Expecting numeric in D842 / R842C4: got '#N/A'Expecting numeric in E842 / R842C5: got '#N/A'Expecting numeric in F842 / R842C6: got '#N/A'Expecting numeric in G842 / R842C7: got '#N/A'Expecting numeric in J842 / R842C10: got '#N/A'Expecting numeric in K842 / R842C11: got '#N/A'Expecting numeric in L842 / R842C12: got '#N/A'Expecting numeric in M842 / R842C13: got '#N/A'Expecting numeric in C843 / R843C3: got '#N/A'Expecting numeric in D843 / R843C4: got '#N/A'Expecting numeric in E843 / R843C5: got '#N/A'Expecting numeric in F843 / R843C6: got '#N/A'Expecting numeric in G843 / R843C7: got '#N/A'Expecting numeric in J843 / R843C10: got '#N/A'Expecting numeric in K843 / R843C11: got '#N/A'Expecting numeric in L843 / R843C12: got '#N/A'Expecting numeric in M843 / R843C13: got '#N/A'Expecting numeric in C844 / R844C3: got '#N/A'Expecting numeric in D844 / R844C4: got '#N/A'Expecting numeric in E844 / R844C5: got '#N/A'Expecting numeric in F844 / R844C6: got '#N/A'Expecting numeric in G844 / R844C7: got '#N/A'Expecting numeric in J844 / R844C10: got '#N/A'Expecting numeric in K844 / R844C11: got '#N/A'Expecting numeric in L844 / R844C12: got '#N/A'Expecting numeric in M844 / R844C13: got '#N/A'Expecting numeric in C845 / R845C3: got '#N/A'Expecting numeric in D845 / R845C4: got '#N/A'Expecting numeric in E845 / R845C5: got '#N/A'Expecting numeric in F845 / R845C6: got '#N/A'Expecting numeric in G845 / R845C7: got '#N/A'Expecting numeric in J845 / R845C10: got '#N/A'Expecting numeric in K845 / R845C11: got '#N/A'Expecting numeric in L845 / R845C12: got '#N/A'Expecting numeric in M845 / R845C13: got '#N/A'Expecting numeric in C846 / R846C3: got '#N/A'Expecting numeric in D846 / R846C4: got '#N/A'Expecting numeric in E846 / R846C5: got '#N/A'Expecting numeric in F846 / R846C6: got '#N/A'Expecting numeric in G846 / R846C7: got '#N/A'Expecting numeric in J846 / R846C10: got '#N/A'Expecting numeric in K846 / R846C11: got '#N/A'Expecting numeric in L846 / R846C12: got '#N/A'Expecting numeric in M846 / R846C13: got '#N/A'Expecting numeric in C847 / R847C3: got '#N/A'Expecting numeric in D847 / R847C4: got '#N/A'Expecting numeric in E847 / R847C5: got '#N/A'Expecting numeric in F847 / R847C6: got '#N/A'Expecting numeric in G847 / R847C7: got '#N/A'Expecting numeric in J847 / R847C10: got '#N/A'Expecting numeric in K847 / R847C11: got '#N/A'Expecting numeric in L847 / R847C12: got '#N/A'Expecting numeric in M847 / R847C13: got '#N/A'Expecting numeric in C848 / R848C3: got '#N/A'Expecting numeric in D848 / R848C4: got '#N/A'Expecting numeric in E848 / R848C5: got '#N/A'Expecting numeric in F848 / R848C6: got '#N/A'Expecting numeric in G848 / R848C7: got '#N/A'Expecting numeric in J848 / R848C10: got '#N/A'Expecting numeric in K848 / R848C11: got '#N/A'Expecting numeric in L848 / R848C12: got '#N/A'Expecting numeric in M848 / R848C13: got '#N/A'Expecting numeric in C849 / R849C3: got '#N/A'Expecting numeric in D849 / R849C4: got '#N/A'Expecting numeric in E849 / R849C5: got '#N/A'Expecting numeric in F849 / R849C6: got '#N/A'Expecting numeric in G849 / R849C7: got '#N/A'Expecting numeric in J849 / R849C10: got '#N/A'Expecting numeric in K849 / R849C11: got '#N/A'Expecting numeric in L849 / R849C12: got '#N/A'Expecting numeric in M849 / R849C13: got '#N/A'Expecting numeric in C850 / R850C3: got '#N/A'Expecting numeric in D850 / R850C4: got '#N/A'Expecting numeric in E850 / R850C5: got '#N/A'Expecting numeric in F850 / R850C6: got '#N/A'Expecting numeric in G850 / R850C7: got '#N/A'Expecting numeric in J850 / R850C10: got '#N/A'Expecting numeric in K850 / R850C11: got '#N/A'Expecting numeric in L850 / R850C12: got '#N/A'Expecting numeric in M850 / R850C13: got '#N/A'Expecting numeric in C851 / R851C3: got '#N/A'Expecting numeric in D851 / R851C4: got '#N/A'Expecting numeric in E851 / R851C5: got '#N/A'Expecting numeric in F851 / R851C6: got '#N/A'Expecting numeric in G851 / R851C7: got '#N/A'Expecting numeric in J851 / R851C10: got '#N/A'Expecting numeric in K851 / R851C11: got '#N/A'Expecting numeric in L851 / R851C12: got '#N/A'Expecting numeric in M851 / R851C13: got '#N/A'Expecting numeric in C852 / R852C3: got '#N/A'Expecting numeric in D852 / R852C4: got '#N/A'Expecting numeric in E852 / R852C5: got '#N/A'Expecting numeric in F852 / R852C6: got '#N/A'Expecting numeric in G852 / R852C7: got '#N/A'Expecting numeric in J852 / R852C10: got '#N/A'Expecting numeric in K852 / R852C11: got '#N/A'Expecting numeric in L852 / R852C12: got '#N/A'Expecting numeric in M852 / R852C13: got '#N/A'Expecting numeric in C853 / R853C3: got '#N/A'Expecting numeric in D853 / R853C4: got '#N/A'Expecting numeric in E853 / R853C5: got '#N/A'Expecting numeric in F853 / R853C6: got '#N/A'Expecting numeric in G853 / R853C7: got '#N/A'Expecting numeric in J853 / R853C10: got '#N/A'Expecting numeric in K853 / R853C11: got '#N/A'Expecting numeric in L853 / R853C12: got '#N/A'Expecting numeric in M853 / R853C13: got '#N/A'Expecting numeric in C854 / R854C3: got '#N/A'Expecting numeric in D854 / R854C4: got '#N/A'Expecting numeric in E854 / R854C5: got '#N/A'Expecting numeric in F854 / R854C6: got '#N/A'Expecting numeric in G854 / R854C7: got '#N/A'Expecting numeric in J854 / R854C10: got '#N/A'Expecting numeric in K854 / R854C11: got '#N/A'Expecting numeric in L854 / R854C12: got '#N/A'Expecting numeric in M854 / R854C13: got '#N/A'Expecting numeric in C855 / R855C3: got '#N/A'Expecting numeric in D855 / R855C4: got '#N/A'Expecting numeric in E855 / R855C5: got '#N/A'Expecting numeric in F855 / R855C6: got '#N/A'Expecting numeric in G855 / R855C7: got '#N/A'Expecting numeric in J855 / R855C10: got '#N/A'Expecting numeric in K855 / R855C11: got '#N/A'Expecting numeric in L855 / R855C12: got '#N/A'Expecting numeric in M855 / R855C13: got '#N/A'Expecting numeric in C856 / R856C3: got '#N/A'Expecting numeric in D856 / R856C4: got '#N/A'Expecting numeric in E856 / R856C5: got '#N/A'Expecting numeric in F856 / R856C6: got '#N/A'Expecting numeric in G856 / R856C7: got '#N/A'Expecting numeric in J856 / R856C10: got '#N/A'Expecting numeric in K856 / R856C11: got '#N/A'Expecting numeric in L856 / R856C12: got '#N/A'Expecting numeric in M856 / R856C13: got '#N/A'Expecting numeric in C857 / R857C3: got '#N/A'Expecting numeric in D857 / R857C4: got '#N/A'Expecting numeric in E857 / R857C5: got '#N/A'Expecting numeric in F857 / R857C6: got '#N/A'Expecting numeric in G857 / R857C7: got '#N/A'Expecting numeric in J857 / R857C10: got '#N/A'Expecting numeric in K857 / R857C11: got '#N/A'Expecting numeric in L857 / R857C12: got '#N/A'Expecting numeric in M857 / R857C13: got '#N/A'Expecting numeric in C858 / R858C3: got '#N/A'Expecting numeric in D858 / R858C4: got '#N/A'Expecting numeric in E858 / R858C5: got '#N/A'Expecting numeric in F858 / R858C6: got '#N/A'Expecting numeric in G858 / R858C7: got '#N/A'Expecting numeric in J858 / R858C10: got '#N/A'Expecting numeric in K858 / R858C11: got '#N/A'Expecting numeric in L858 / R858C12: got '#N/A'Expecting numeric in M858 / R858C13: got '#N/A'Expecting numeric in C859 / R859C3: got '#N/A'Expecting numeric in D859 / R859C4: got '#N/A'Expecting numeric in E859 / R859C5: got '#N/A'Expecting numeric in F859 / R859C6: got '#N/A'Expecting numeric in G859 / R859C7: got '#N/A'Expecting numeric in J859 / R859C10: got '#N/A'Expecting numeric in K859 / R859C11: got '#N/A'Expecting numeric in L859 / R859C12: got '#N/A'Expecting numeric in M859 / R859C13: got '#N/A'Expecting numeric in C860 / R860C3: got '#N/A'Expecting numeric in D860 / R860C4: got '#N/A'Expecting numeric in E860 / R860C5: got '#N/A'Expecting numeric in F860 / R860C6: got '#N/A'Expecting numeric in G860 / R860C7: got '#N/A'Expecting numeric in J860 / R860C10: got '#N/A'Expecting numeric in K860 / R860C11: got '#N/A'Expecting numeric in L860 / R860C12: got '#N/A'Expecting numeric in M860 / R860C13: got '#N/A'Expecting numeric in C861 / R861C3: got '#N/A'Expecting numeric in D861 / R861C4: got '#N/A'Expecting numeric in E861 / R861C5: got '#N/A'Expecting numeric in F861 / R861C6: got '#N/A'Expecting numeric in G861 / R861C7: got '#N/A'Expecting numeric in J861 / R861C10: got '#N/A'Expecting numeric in K861 / R861C11: got '#N/A'Expecting numeric in L861 / R861C12: got '#N/A'Expecting numeric in M861 / R861C13: got '#N/A'Expecting numeric in C862 / R862C3: got '#N/A'Expecting numeric in D862 / R862C4: got '#N/A'Expecting numeric in E862 / R862C5: got '#N/A'Expecting numeric in F862 / R862C6: got '#N/A'Expecting numeric in G862 / R862C7: got '#N/A'Expecting numeric in J862 / R862C10: got '#N/A'Expecting numeric in K862 / R862C11: got '#N/A'Expecting numeric in L862 / R862C12: got '#N/A'Expecting numeric in M862 / R862C13: got '#N/A'Expecting numeric in C863 / R863C3: got '#N/A'Expecting numeric in D863 / R863C4: got '#N/A'Expecting numeric in E863 / R863C5: got '#N/A'Expecting numeric in F863 / R863C6: got '#N/A'Expecting numeric in G863 / R863C7: got '#N/A'Expecting numeric in J863 / R863C10: got '#N/A'Expecting numeric in K863 / R863C11: got '#N/A'Expecting numeric in L863 / R863C12: got '#N/A'Expecting numeric in M863 / R863C13: got '#N/A'Expecting numeric in C864 / R864C3: got '#N/A'Expecting numeric in D864 / R864C4: got '#N/A'Expecting numeric in E864 / R864C5: got '#N/A'Expecting numeric in F864 / R864C6: got '#N/A'Expecting numeric in G864 / R864C7: got '#N/A'Expecting numeric in J864 / R864C10: got '#N/A'Expecting numeric in K864 / R864C11: got '#N/A'Expecting numeric in L864 / R864C12: got '#N/A'Expecting numeric in M864 / R864C13: got '#N/A'Expecting numeric in C865 / R865C3: got '#N/A'Expecting numeric in D865 / R865C4: got '#N/A'Expecting numeric in E865 / R865C5: got '#N/A'Expecting numeric in F865 / R865C6: got '#N/A'Expecting numeric in G865 / R865C7: got '#N/A'Expecting numeric in J865 / R865C10: got '#N/A'Expecting numeric in K865 / R865C11: got '#N/A'Expecting numeric in L865 / R865C12: got '#N/A'Expecting numeric in M865 / R865C13: got '#N/A'Expecting numeric in C866 / R866C3: got '#N/A'Expecting numeric in D866 / R866C4: got '#N/A'Expecting numeric in E866 / R866C5: got '#N/A'Expecting numeric in F866 / R866C6: got '#N/A'Expecting numeric in G866 / R866C7: got '#N/A'Expecting numeric in J866 / R866C10: got '#N/A'Expecting numeric in K866 / R866C11: got '#N/A'Expecting numeric in L866 / R866C12: got '#N/A'Expecting numeric in M866 / R866C13: got '#N/A'Expecting numeric in C867 / R867C3: got '#N/A'Expecting numeric in D867 / R867C4: got '#N/A'Expecting numeric in E867 / R867C5: got '#N/A'Expecting numeric in F867 / R867C6: got '#N/A'Expecting numeric in G867 / R867C7: got '#N/A'Expecting numeric in J867 / R867C10: got '#N/A'Expecting numeric in K867 / R867C11: got '#N/A'Expecting numeric in L867 / R867C12: got '#N/A'Expecting numeric in M867 / R867C13: got '#N/A'Expecting numeric in C868 / R868C3: got '#N/A'Expecting numeric in D868 / R868C4: got '#N/A'Expecting numeric in E868 / R868C5: got '#N/A'Expecting numeric in F868 / R868C6: got '#N/A'Expecting numeric in G868 / R868C7: got '#N/A'Expecting numeric in J868 / R868C10: got '#N/A'Expecting numeric in K868 / R868C11: got '#N/A'Expecting numeric in L868 / R868C12: got '#N/A'Expecting numeric in M868 / R868C13: got '#N/A'Expecting numeric in C869 / R869C3: got '#N/A'Expecting numeric in D869 / R869C4: got '#N/A'Expecting numeric in E869 / R869C5: got '#N/A'Expecting numeric in F869 / R869C6: got '#N/A'Expecting numeric in G869 / R869C7: got '#N/A'Expecting numeric in J869 / R869C10: got '#N/A'Expecting numeric in K869 / R869C11: got '#N/A'Expecting numeric in L869 / R869C12: got '#N/A'Expecting numeric in M869 / R869C13: got '#N/A'Expecting numeric in C870 / R870C3: got '#N/A'Expecting numeric in D870 / R870C4: got '#N/A'Expecting numeric in E870 / R870C5: got '#N/A'Expecting numeric in F870 / R870C6: got '#N/A'Expecting numeric in G870 / R870C7: got '#N/A'Expecting numeric in J870 / R870C10: got '#N/A'Expecting numeric in K870 / R870C11: got '#N/A'Expecting numeric in L870 / R870C12: got '#N/A'Expecting numeric in M870 / R870C13: got '#N/A'Expecting numeric in C871 / R871C3: got '#N/A'Expecting numeric in D871 / R871C4: got '#N/A'Expecting numeric in E871 / R871C5: got '#N/A'Expecting numeric in F871 / R871C6: got '#N/A'Expecting numeric in G871 / R871C7: got '#N/A'Expecting numeric in J871 / R871C10: got '#N/A'Expecting numeric in K871 / R871C11: got '#N/A'Expecting numeric in L871 / R871C12: got '#N/A'Expecting numeric in M871 / R871C13: got '#N/A'Expecting numeric in C872 / R872C3: got '#N/A'Expecting numeric in D872 / R872C4: got '#N/A'Expecting numeric in E872 / R872C5: got '#N/A'Expecting numeric in F872 / R872C6: got '#N/A'Expecting numeric in G872 / R872C7: got '#N/A'Expecting numeric in J872 / R872C10: got '#N/A'Expecting numeric in K872 / R872C11: got '#N/A'Expecting numeric in L872 / R872C12: got '#N/A'Expecting numeric in M872 / R872C13: got '#N/A'Expecting numeric in C873 / R873C3: got '#N/A'Expecting numeric in D873 / R873C4: got '#N/A'Expecting numeric in E873 / R873C5: got '#N/A'Expecting numeric in F873 / R873C6: got '#N/A'Expecting numeric in G873 / R873C7: got '#N/A'Expecting numeric in J873 / R873C10: got '#N/A'Expecting numeric in K873 / R873C11: got '#N/A'Expecting numeric in L873 / R873C12: got '#N/A'Expecting numeric in M873 / R873C13: got '#N/A'Expecting numeric in C874 / R874C3: got '#N/A'Expecting numeric in D874 / R874C4: got '#N/A'Expecting numeric in E874 / R874C5: got '#N/A'Expecting numeric in F874 / R874C6: got '#N/A'Expecting numeric in G874 / R874C7: got '#N/A'Expecting numeric in J874 / R874C10: got '#N/A'Expecting numeric in K874 / R874C11: got '#N/A'Expecting numeric in L874 / R874C12: got '#N/A'Expecting numeric in M874 / R874C13: got '#N/A'Expecting numeric in C875 / R875C3: got '#N/A'Expecting numeric in D875 / R875C4: got '#N/A'Expecting numeric in E875 / R875C5: got '#N/A'Expecting numeric in F875 / R875C6: got '#N/A'Expecting numeric in G875 / R875C7: got '#N/A'Expecting numeric in J875 / R875C10: got '#N/A'Expecting numeric in K875 / R875C11: got '#N/A'Expecting numeric in L875 / R875C12: got '#N/A'Expecting numeric in M875 / R875C13: got '#N/A'Expecting numeric in C876 / R876C3: got '#N/A'Expecting numeric in D876 / R876C4: got '#N/A'Expecting numeric in E876 / R876C5: got '#N/A'Expecting numeric in F876 / R876C6: got '#N/A'Expecting numeric in G876 / R876C7: got '#N/A'Expecting numeric in J876 / R876C10: got '#N/A'Expecting numeric in K876 / R876C11: got '#N/A'Expecting numeric in L876 / R876C12: got '#N/A'Expecting numeric in M876 / R876C13: got '#N/A'Expecting numeric in C877 / R877C3: got '#N/A'Expecting numeric in D877 / R877C4: got '#N/A'Expecting numeric in E877 / R877C5: got '#N/A'Expecting numeric in F877 / R877C6: got '#N/A'Expecting numeric in G877 / R877C7: got '#N/A'Expecting numeric in J877 / R877C10: got '#N/A'Expecting numeric in K877 / R877C11: got '#N/A'Expecting numeric in L877 / R877C12: got '#N/A'Expecting numeric in M877 / R877C13: got '#N/A'Expecting numeric in C878 / R878C3: got '#N/A'Expecting numeric in D878 / R878C4: got '#N/A'Expecting numeric in E878 / R878C5: got '#N/A'Expecting numeric in F878 / R878C6: got '#N/A'Expecting numeric in G878 / R878C7: got '#N/A'Expecting numeric in J878 / R878C10: got '#N/A'Expecting numeric in K878 / R878C11: got '#N/A'Expecting numeric in L878 / R878C12: got '#N/A'Expecting numeric in M878 / R878C13: got '#N/A'Expecting numeric in C879 / R879C3: got '#N/A'Expecting numeric in D879 / R879C4: got '#N/A'Expecting numeric in E879 / R879C5: got '#N/A'Expecting numeric in F879 / R879C6: got '#N/A'Expecting numeric in G879 / R879C7: got '#N/A'Expecting numeric in J879 / R879C10: got '#N/A'Expecting numeric in K879 / R879C11: got '#N/A'Expecting numeric in L879 / R879C12: got '#N/A'Expecting numeric in M879 / R879C13: got '#N/A'Expecting numeric in C880 / R880C3: got '#N/A'Expecting numeric in D880 / R880C4: got '#N/A'Expecting numeric in E880 / R880C5: got '#N/A'Expecting numeric in F880 / R880C6: got '#N/A'Expecting numeric in G880 / R880C7: got '#N/A'Expecting numeric in J880 / R880C10: got '#N/A'Expecting numeric in K880 / R880C11: got '#N/A'Expecting numeric in L880 / R880C12: got '#N/A'Expecting numeric in M880 / R880C13: got '#N/A'Expecting numeric in C881 / R881C3: got '#N/A'Expecting numeric in D881 / R881C4: got '#N/A'Expecting numeric in E881 / R881C5: got '#N/A'Expecting numeric in F881 / R881C6: got '#N/A'Expecting numeric in G881 / R881C7: got '#N/A'Expecting numeric in J881 / R881C10: got '#N/A'Expecting numeric in K881 / R881C11: got '#N/A'Expecting numeric in L881 / R881C12: got '#N/A'Expecting numeric in M881 / R881C13: got '#N/A'Expecting numeric in C882 / R882C3: got '#N/A'Expecting numeric in D882 / R882C4: got '#N/A'Expecting numeric in E882 / R882C5: got '#N/A'Expecting numeric in F882 / R882C6: got '#N/A'Expecting numeric in G882 / R882C7: got '#N/A'Expecting numeric in J882 / R882C10: got '#N/A'Expecting numeric in K882 / R882C11: got '#N/A'Expecting numeric in L882 / R882C12: got '#N/A'Expecting numeric in M882 / R882C13: got '#N/A'Expecting numeric in C883 / R883C3: got '#N/A'Expecting numeric in D883 / R883C4: got '#N/A'Expecting numeric in E883 / R883C5: got '#N/A'Expecting numeric in F883 / R883C6: got '#N/A'Expecting numeric in G883 / R883C7: got '#N/A'Expecting numeric in J883 / R883C10: got '#N/A'Expecting numeric in K883 / R883C11: got '#N/A'Expecting numeric in L883 / R883C12: got '#N/A'Expecting numeric in M883 / R883C13: got '#N/A'Expecting numeric in C884 / R884C3: got '#N/A'Expecting numeric in D884 / R884C4: got '#N/A'Expecting numeric in E884 / R884C5: got '#N/A'Expecting numeric in F884 / R884C6: got '#N/A'Expecting numeric in G884 / R884C7: got '#N/A'Expecting numeric in J884 / R884C10: got '#N/A'Expecting numeric in K884 / R884C11: got '#N/A'Expecting numeric in L884 / R884C12: got '#N/A'Expecting numeric in M884 / R884C13: got '#N/A'Expecting numeric in C885 / R885C3: got '#N/A'Expecting numeric in D885 / R885C4: got '#N/A'Expecting numeric in E885 / R885C5: got '#N/A'Expecting numeric in F885 / R885C6: got '#N/A'Expecting numeric in G885 / R885C7: got '#N/A'Expecting numeric in J885 / R885C10: got '#N/A'Expecting numeric in K885 / R885C11: got '#N/A'Expecting numeric in L885 / R885C12: got '#N/A'Expecting numeric in M885 / R885C13: got '#N/A'Expecting numeric in C886 / R886C3: got '#N/A'Expecting numeric in D886 / R886C4: got '#N/A'Expecting numeric in E886 / R886C5: got '#N/A'Expecting numeric in F886 / R886C6: got '#N/A'Expecting numeric in G886 / R886C7: got '#N/A'Expecting numeric in J886 / R886C10: got '#N/A'Expecting numeric in K886 / R886C11: got '#N/A'Expecting numeric in L886 / R886C12: got '#N/A'Expecting numeric in M886 / R886C13: got '#N/A'Expecting numeric in C887 / R887C3: got '#N/A'Expecting numeric in D887 / R887C4: got '#N/A'Expecting numeric in E887 / R887C5: got '#N/A'Expecting numeric in F887 / R887C6: got '#N/A'Expecting numeric in G887 / R887C7: got '#N/A'Expecting numeric in J887 / R887C10: got '#N/A'Expecting numeric in K887 / R887C11: got '#N/A'Expecting numeric in L887 / R887C12: got '#N/A'Expecting numeric in M887 / R887C13: got '#N/A'Expecting numeric in C888 / R888C3: got '#N/A'Expecting numeric in D888 / R888C4: got '#N/A'Expecting numeric in E888 / R888C5: got '#N/A'Expecting numeric in F888 / R888C6: got '#N/A'Expecting numeric in G888 / R888C7: got '#N/A'Expecting numeric in J888 / R888C10: got '#N/A'Expecting numeric in K888 / R888C11: got '#N/A'Expecting numeric in L888 / R888C12: got '#N/A'Expecting numeric in M888 / R888C13: got '#N/A'Expecting numeric in C889 / R889C3: got '#N/A'Expecting numeric in D889 / R889C4: got '#N/A'Expecting numeric in E889 / R889C5: got '#N/A'Expecting numeric in F889 / R889C6: got '#N/A'Expecting numeric in G889 / R889C7: got '#N/A'Expecting numeric in J889 / R889C10: got '#N/A'Expecting numeric in K889 / R889C11: got '#N/A'Expecting numeric in L889 / R889C12: got '#N/A'Expecting numeric in M889 / R889C13: got '#N/A'Expecting numeric in C890 / R890C3: got '#N/A'Expecting numeric in D890 / R890C4: got '#N/A'Expecting numeric in E890 / R890C5: got '#N/A'Expecting numeric in F890 / R890C6: got '#N/A'Expecting numeric in G890 / R890C7: got '#N/A'Expecting numeric in J890 / R890C10: got '#N/A'Expecting numeric in K890 / R890C11: got '#N/A'Expecting numeric in L890 / R890C12: got '#N/A'Expecting numeric in M890 / R890C13: got '#N/A'Expecting numeric in C891 / R891C3: got '#N/A'Expecting numeric in D891 / R891C4: got '#N/A'Expecting numeric in E891 / R891C5: got '#N/A'Expecting numeric in F891 / R891C6: got '#N/A'Expecting numeric in G891 / R891C7: got '#N/A'Expecting numeric in J891 / R891C10: got '#N/A'Expecting numeric in K891 / R891C11: got '#N/A'Expecting numeric in L891 / R891C12: got '#N/A'Expecting numeric in M891 / R891C13: got '#N/A'Expecting numeric in C892 / R892C3: got '#N/A'Expecting numeric in D892 / R892C4: got '#N/A'Expecting numeric in E892 / R892C5: got '#N/A'Expecting numeric in F892 / R892C6: got '#N/A'Expecting numeric in G892 / R892C7: got '#N/A'Expecting numeric in J892 / R892C10: got '#N/A'Expecting numeric in K892 / R892C11: got '#N/A'Expecting numeric in L892 / R892C12: got '#N/A'Expecting numeric in M892 / R892C13: got '#N/A'Expecting numeric in C893 / R893C3: got '#N/A'Expecting numeric in D893 / R893C4: got '#N/A'Expecting numeric in E893 / R893C5: got '#N/A'Expecting numeric in F893 / R893C6: got '#N/A'Expecting numeric in G893 / R893C7: got '#N/A'Expecting numeric in J893 / R893C10: got '#N/A'Expecting numeric in K893 / R893C11: got '#N/A'Expecting numeric in L893 / R893C12: got '#N/A'Expecting numeric in M893 / R893C13: got '#N/A'Expecting numeric in C894 / R894C3: got '#N/A'Expecting numeric in D894 / R894C4: got '#N/A'Expecting numeric in E894 / R894C5: got '#N/A'Expecting numeric in F894 / R894C6: got '#N/A'Expecting numeric in G894 / R894C7: got '#N/A'Expecting numeric in J894 / R894C10: got '#N/A'Expecting numeric in K894 / R894C11: got '#N/A'Expecting numeric in L894 / R894C12: got '#N/A'Expecting numeric in M894 / R894C13: got '#N/A'Expecting numeric in C895 / R895C3: got '#N/A'Expecting numeric in D895 / R895C4: got '#N/A'Expecting numeric in E895 / R895C5: got '#N/A'Expecting numeric in F895 / R895C6: got '#N/A'Expecting numeric in G895 / R895C7: got '#N/A'Expecting numeric in J895 / R895C10: got '#N/A'Expecting numeric in K895 / R895C11: got '#N/A'Expecting numeric in L895 / R895C12: got '#N/A'Expecting numeric in M895 / R895C13: got '#N/A'Expecting numeric in C896 / R896C3: got '#N/A'Expecting numeric in D896 / R896C4: got '#N/A'Expecting numeric in E896 / R896C5: got '#N/A'Expecting numeric in F896 / R896C6: got '#N/A'Expecting numeric in G896 / R896C7: got '#N/A'Expecting numeric in J896 / R896C10: got '#N/A'Expecting numeric in K896 / R896C11: got '#N/A'Expecting numeric in L896 / R896C12: got '#N/A'Expecting numeric in M896 / R896C13: got '#N/A'Expecting numeric in C897 / R897C3: got '#N/A'Expecting numeric in D897 / R897C4: got '#N/A'Expecting numeric in E897 / R897C5: got '#N/A'Expecting numeric in F897 / R897C6: got '#N/A'Expecting numeric in G897 / R897C7: got '#N/A'Expecting numeric in J897 / R897C10: got '#N/A'Expecting numeric in K897 / R897C11: got '#N/A'Expecting numeric in L897 / R897C12: got '#N/A'Expecting numeric in M897 / R897C13: got '#N/A'Expecting numeric in C898 / R898C3: got '#N/A'Expecting numeric in D898 / R898C4: got '#N/A'Expecting numeric in E898 / R898C5: got '#N/A'Expecting numeric in F898 / R898C6: got '#N/A'Expecting numeric in G898 / R898C7: got '#N/A'Expecting numeric in J898 / R898C10: got '#N/A'Expecting numeric in K898 / R898C11: got '#N/A'Expecting numeric in L898 / R898C12: got '#N/A'Expecting numeric in M898 / R898C13: got '#N/A'Expecting numeric in C899 / R899C3: got '#N/A'Expecting numeric in D899 / R899C4: got '#N/A'Expecting numeric in E899 / R899C5: got '#N/A'Expecting numeric in F899 / R899C6: got '#N/A'Expecting numeric in G899 / R899C7: got '#N/A'Expecting numeric in J899 / R899C10: got '#N/A'Expecting numeric in K899 / R899C11: got '#N/A'Expecting numeric in L899 / R899C12: got '#N/A'Expecting numeric in M899 / R899C13: got '#N/A'Expecting numeric in C900 / R900C3: got '#N/A'Expecting numeric in D900 / R900C4: got '#N/A'Expecting numeric in E900 / R900C5: got '#N/A'Expecting numeric in F900 / R900C6: got '#N/A'Expecting numeric in G900 / R900C7: got '#N/A'Expecting numeric in J900 / R900C10: got '#N/A'Expecting numeric in K900 / R900C11: got '#N/A'Expecting numeric in L900 / R900C12: got '#N/A'Expecting numeric in M900 / R900C13: got '#N/A'Expecting numeric in C901 / R901C3: got '#N/A'Expecting numeric in D901 / R901C4: got '#N/A'Expecting numeric in E901 / R901C5: got '#N/A'Expecting numeric in F901 / R901C6: got '#N/A'Expecting numeric in G901 / R901C7: got '#N/A'Expecting numeric in J901 / R901C10: got '#N/A'Expecting numeric in K901 / R901C11: got '#N/A'Expecting numeric in L901 / R901C12: got '#N/A'Expecting numeric in M901 / R901C13: got '#N/A'Expecting numeric in C902 / R902C3: got '#N/A'Expecting numeric in D902 / R902C4: got '#N/A'Expecting numeric in E902 / R902C5: got '#N/A'Expecting numeric in F902 / R902C6: got '#N/A'Expecting numeric in G902 / R902C7: got '#N/A'Expecting numeric in J902 / R902C10: got '#N/A'Expecting numeric in K902 / R902C11: got '#N/A'Expecting numeric in L902 / R902C12: got '#N/A'Expecting numeric in M902 / R902C13: got '#N/A'Expecting numeric in C903 / R903C3: got '#N/A'Expecting numeric in D903 / R903C4: got '#N/A'Expecting numeric in E903 / R903C5: got '#N/A'Expecting numeric in F903 / R903C6: got '#N/A'Expecting numeric in G903 / R903C7: got '#N/A'Expecting numeric in J903 / R903C10: got '#N/A'Expecting numeric in K903 / R903C11: got '#N/A'Expecting numeric in L903 / R903C12: got '#N/A'Expecting numeric in M903 / R903C13: got '#N/A'Expecting numeric in C904 / R904C3: got '#N/A'Expecting numeric in D904 / R904C4: got '#N/A'Expecting numeric in E904 / R904C5: got '#N/A'Expecting numeric in F904 / R904C6: got '#N/A'Expecting numeric in G904 / R904C7: got '#N/A'Expecting numeric in J904 / R904C10: got '#N/A'Expecting numeric in K904 / R904C11: got '#N/A'Expecting numeric in L904 / R904C12: got '#N/A'Expecting numeric in M904 / R904C13: got '#N/A'Expecting numeric in C905 / R905C3: got '#N/A'Expecting numeric in D905 / R905C4: got '#N/A'Expecting numeric in E905 / R905C5: got '#N/A'Expecting numeric in F905 / R905C6: got '#N/A'Expecting numeric in G905 / R905C7: got '#N/A'Expecting numeric in J905 / R905C10: got '#N/A'Expecting numeric in K905 / R905C11: got '#N/A'Expecting numeric in L905 / R905C12: got '#N/A'Expecting numeric in M905 / R905C13: got '#N/A'Expecting numeric in C906 / R906C3: got '#N/A'Expecting numeric in D906 / R906C4: got '#N/A'Expecting numeric in E906 / R906C5: got '#N/A'Expecting numeric in F906 / R906C6: got '#N/A'Expecting numeric in G906 / R906C7: got '#N/A'Expecting numeric in J906 / R906C10: got '#N/A'Expecting numeric in K906 / R906C11: got '#N/A'Expecting numeric in L906 / R906C12: got '#N/A'Expecting numeric in M906 / R906C13: got '#N/A'Expecting numeric in C907 / R907C3: got '#N/A'Expecting numeric in D907 / R907C4: got '#N/A'Expecting numeric in E907 / R907C5: got '#N/A'Expecting numeric in F907 / R907C6: got '#N/A'Expecting numeric in G907 / R907C7: got '#N/A'Expecting numeric in J907 / R907C10: got '#N/A'Expecting numeric in K907 / R907C11: got '#N/A'Expecting numeric in L907 / R907C12: got '#N/A'Expecting numeric in M907 / R907C13: got '#N/A'Expecting numeric in C908 / R908C3: got '#N/A'Expecting numeric in D908 / R908C4: got '#N/A'Expecting numeric in E908 / R908C5: got '#N/A'Expecting numeric in F908 / R908C6: got '#N/A'Expecting numeric in G908 / R908C7: got '#N/A'Expecting numeric in J908 / R908C10: got '#N/A'Expecting numeric in K908 / R908C11: got '#N/A'Expecting numeric in L908 / R908C12: got '#N/A'Expecting numeric in M908 / R908C13: got '#N/A'Expecting numeric in C909 / R909C3: got '#N/A'Expecting numeric in D909 / R909C4: got '#N/A'Expecting numeric in E909 / R909C5: got '#N/A'Expecting numeric in F909 / R909C6: got '#N/A'Expecting numeric in G909 / R909C7: got '#N/A'Expecting numeric in J909 / R909C10: got '#N/A'Expecting numeric in K909 / R909C11: got '#N/A'Expecting numeric in L909 / R909C12: got '#N/A'Expecting numeric in M909 / R909C13: got '#N/A'Expecting numeric in C910 / R910C3: got '#N/A'Expecting numeric in D910 / R910C4: got '#N/A'Expecting numeric in E910 / R910C5: got '#N/A'Expecting numeric in F910 / R910C6: got '#N/A'Expecting numeric in G910 / R910C7: got '#N/A'Expecting numeric in J910 / R910C10: got '#N/A'Expecting numeric in K910 / R910C11: got '#N/A'Expecting numeric in L910 / R910C12: got '#N/A'Expecting numeric in M910 / R910C13: got '#N/A'Expecting numeric in C911 / R911C3: got '#N/A'Expecting numeric in D911 / R911C4: got '#N/A'Expecting numeric in E911 / R911C5: got '#N/A'Expecting numeric in F911 / R911C6: got '#N/A'Expecting numeric in G911 / R911C7: got '#N/A'Expecting numeric in J911 / R911C10: got '#N/A'Expecting numeric in K911 / R911C11: got '#N/A'Expecting numeric in L911 / R911C12: got '#N/A'Expecting numeric in M911 / R911C13: got '#N/A'Expecting numeric in C912 / R912C3: got '#N/A'Expecting numeric in D912 / R912C4: got '#N/A'Expecting numeric in E912 / R912C5: got '#N/A'Expecting numeric in F912 / R912C6: got '#N/A'Expecting numeric in G912 / R912C7: got '#N/A'Expecting numeric in J912 / R912C10: got '#N/A'Expecting numeric in K912 / R912C11: got '#N/A'Expecting numeric in L912 / R912C12: got '#N/A'Expecting numeric in M912 / R912C13: got '#N/A'Expecting numeric in C913 / R913C3: got '#N/A'Expecting numeric in D913 / R913C4: got '#N/A'Expecting numeric in E913 / R913C5: got '#N/A'Expecting numeric in F913 / R913C6: got '#N/A'Expecting numeric in G913 / R913C7: got '#N/A'Expecting numeric in J913 / R913C10: got '#N/A'Expecting numeric in K913 / R913C11: got '#N/A'Expecting numeric in L913 / R913C12: got '#N/A'Expecting numeric in M913 / R913C13: got '#N/A'Expecting numeric in C914 / R914C3: got '#N/A'Expecting numeric in D914 / R914C4: got '#N/A'Expecting numeric in E914 / R914C5: got '#N/A'Expecting numeric in F914 / R914C6: got '#N/A'Expecting numeric in G914 / R914C7: got '#N/A'Expecting numeric in J914 / R914C10: got '#N/A'Expecting numeric in K914 / R914C11: got '#N/A'Expecting numeric in L914 / R914C12: got '#N/A'Expecting numeric in M914 / R914C13: got '#N/A'Expecting numeric in C915 / R915C3: got '#N/A'Expecting numeric in D915 / R915C4: got '#N/A'Expecting numeric in E915 / R915C5: got '#N/A'Expecting numeric in F915 / R915C6: got '#N/A'Expecting numeric in G915 / R915C7: got '#N/A'Expecting numeric in J915 / R915C10: got '#N/A'Expecting numeric in K915 / R915C11: got '#N/A'Expecting numeric in L915 / R915C12: got '#N/A'Expecting numeric in M915 / R915C13: got '#N/A'Expecting numeric in C916 / R916C3: got '#N/A'Expecting numeric in D916 / R916C4: got '#N/A'Expecting numeric in E916 / R916C5: got '#N/A'Expecting numeric in F916 / R916C6: got '#N/A'Expecting numeric in G916 / R916C7: got '#N/A'Expecting numeric in J916 / R916C10: got '#N/A'Expecting numeric in K916 / R916C11: got '#N/A'Expecting numeric in L916 / R916C12: got '#N/A'Expecting numeric in M916 / R916C13: got '#N/A'Expecting numeric in C917 / R917C3: got '#N/A'Expecting numeric in D917 / R917C4: got '#N/A'Expecting numeric in E917 / R917C5: got '#N/A'Expecting numeric in F917 / R917C6: got '#N/A'Expecting numeric in G917 / R917C7: got '#N/A'Expecting numeric in J917 / R917C10: got '#N/A'Expecting numeric in K917 / R917C11: got '#N/A'Expecting numeric in L917 / R917C12: got '#N/A'Expecting numeric in M917 / R917C13: got '#N/A'Expecting numeric in C918 / R918C3: got '#N/A'Expecting numeric in D918 / R918C4: got '#N/A'Expecting numeric in E918 / R918C5: got '#N/A'Expecting numeric in F918 / R918C6: got '#N/A'Expecting numeric in G918 / R918C7: got '#N/A'Expecting numeric in J918 / R918C10: got '#N/A'Expecting numeric in K918 / R918C11: got '#N/A'Expecting numeric in L918 / R918C12: got '#N/A'Expecting numeric in M918 / R918C13: got '#N/A'Expecting numeric in C919 / R919C3: got '#N/A'Expecting numeric in D919 / R919C4: got '#N/A'Expecting numeric in E919 / R919C5: got '#N/A'Expecting numeric in F919 / R919C6: got '#N/A'Expecting numeric in G919 / R919C7: got '#N/A'Expecting numeric in J919 / R919C10: got '#N/A'Expecting numeric in K919 / R919C11: got '#N/A'Expecting numeric in L919 / R919C12: got '#N/A'Expecting numeric in M919 / R919C13: got '#N/A'Expecting numeric in C920 / R920C3: got '#N/A'Expecting numeric in D920 / R920C4: got '#N/A'Expecting numeric in E920 / R920C5: got '#N/A'Expecting numeric in F920 / R920C6: got '#N/A'Expecting numeric in G920 / R920C7: got '#N/A'Expecting numeric in J920 / R920C10: got '#N/A'Expecting numeric in K920 / R920C11: got '#N/A'Expecting numeric in L920 / R920C12: got '#N/A'Expecting numeric in M920 / R920C13: got '#N/A'Expecting numeric in C921 / R921C3: got '#N/A'Expecting numeric in D921 / R921C4: got '#N/A'Expecting numeric in E921 / R921C5: got '#N/A'Expecting numeric in F921 / R921C6: got '#N/A'Expecting numeric in G921 / R921C7: got '#N/A'Expecting numeric in J921 / R921C10: got '#N/A'Expecting numeric in K921 / R921C11: got '#N/A'Expecting numeric in L921 / R921C12: got '#N/A'Expecting numeric in M921 / R921C13: got '#N/A'Expecting numeric in C922 / R922C3: got '#N/A'Expecting numeric in D922 / R922C4: got '#N/A'Expecting numeric in E922 / R922C5: got '#N/A'Expecting numeric in F922 / R922C6: got '#N/A'Expecting numeric in G922 / R922C7: got '#N/A'Expecting numeric in J922 / R922C10: got '#N/A'Expecting numeric in K922 / R922C11: got '#N/A'Expecting numeric in L922 / R922C12: got '#N/A'Expecting numeric in M922 / R922C13: got '#N/A'Expecting numeric in C923 / R923C3: got '#N/A'Expecting numeric in D923 / R923C4: got '#N/A'Expecting numeric in E923 / R923C5: got '#N/A'Expecting numeric in F923 / R923C6: got '#N/A'Expecting numeric in G923 / R923C7: got '#N/A'Expecting numeric in J923 / R923C10: got '#N/A'Expecting numeric in K923 / R923C11: got '#N/A'Expecting numeric in L923 / R923C12: got '#N/A'Expecting numeric in M923 / R923C13: got '#N/A'Expecting numeric in C924 / R924C3: got '#N/A'Expecting numeric in D924 / R924C4: got '#N/A'Expecting numeric in E924 / R924C5: got '#N/A'Expecting numeric in F924 / R924C6: got '#N/A'Expecting numeric in G924 / R924C7: got '#N/A'Expecting numeric in J924 / R924C10: got '#N/A'Expecting numeric in K924 / R924C11: got '#N/A'Expecting numeric in L924 / R924C12: got '#N/A'Expecting numeric in M924 / R924C13: got '#N/A'Expecting numeric in C925 / R925C3: got '#N/A'Expecting numeric in D925 / R925C4: got '#N/A'Expecting numeric in E925 / R925C5: got '#N/A'Expecting numeric in F925 / R925C6: got '#N/A'Expecting numeric in G925 / R925C7: got '#N/A'Expecting numeric in J925 / R925C10: got '#N/A'Expecting numeric in K925 / R925C11: got '#N/A'Expecting numeric in L925 / R925C12: got '#N/A'Expecting numeric in M925 / R925C13: got '#N/A'Expecting numeric in C926 / R926C3: got '#N/A'Expecting numeric in D926 / R926C4: got '#N/A'Expecting numeric in E926 / R926C5: got '#N/A'Expecting numeric in F926 / R926C6: got '#N/A'Expecting numeric in G926 / R926C7: got '#N/A'Expecting numeric in J926 / R926C10: got '#N/A'Expecting numeric in K926 / R926C11: got '#N/A'Expecting numeric in L926 / R926C12: got '#N/A'Expecting numeric in M926 / R926C13: got '#N/A'Expecting numeric in C927 / R927C3: got '#N/A'Expecting numeric in D927 / R927C4: got '#N/A'Expecting numeric in E927 / R927C5: got '#N/A'Expecting numeric in F927 / R927C6: got '#N/A'Expecting numeric in G927 / R927C7: got '#N/A'Expecting numeric in J927 / R927C10: got '#N/A'Expecting numeric in K927 / R927C11: got '#N/A'Expecting numeric in L927 / R927C12: got '#N/A'Expecting numeric in M927 / R927C13: got '#N/A'Expecting numeric in C928 / R928C3: got '#N/A'Expecting numeric in D928 / R928C4: got '#N/A'Expecting numeric in E928 / R928C5: got '#N/A'Expecting numeric in F928 / R928C6: got '#N/A'Expecting numeric in G928 / R928C7: got '#N/A'Expecting numeric in J928 / R928C10: got '#N/A'Expecting numeric in K928 / R928C11: got '#N/A'Expecting numeric in L928 / R928C12: got '#N/A'Expecting numeric in M928 / R928C13: got '#N/A'Expecting numeric in C929 / R929C3: got '#N/A'Expecting numeric in D929 / R929C4: got '#N/A'Expecting numeric in E929 / R929C5: got '#N/A'Expecting numeric in F929 / R929C6: got '#N/A'Expecting numeric in G929 / R929C7: got '#N/A'Expecting numeric in J929 / R929C10: got '#N/A'Expecting numeric in K929 / R929C11: got '#N/A'Expecting numeric in L929 / R929C12: got '#N/A'Expecting numeric in M929 / R929C13: got '#N/A'Expecting numeric in C930 / R930C3: got '#N/A'Expecting numeric in D930 / R930C4: got '#N/A'Expecting numeric in E930 / R930C5: got '#N/A'Expecting numeric in F930 / R930C6: got '#N/A'Expecting numeric in G930 / R930C7: got '#N/A'Expecting numeric in J930 / R930C10: got '#N/A'Expecting numeric in K930 / R930C11: got '#N/A'Expecting numeric in L930 / R930C12: got '#N/A'Expecting numeric in M930 / R930C13: got '#N/A'Expecting numeric in C931 / R931C3: got '#N/A'Expecting numeric in D931 / R931C4: got '#N/A'Expecting numeric in E931 / R931C5: got '#N/A'Expecting numeric in F931 / R931C6: got '#N/A'Expecting numeric in G931 / R931C7: got '#N/A'Expecting numeric in J931 / R931C10: got '#N/A'Expecting numeric in K931 / R931C11: got '#N/A'Expecting numeric in L931 / R931C12: got '#N/A'Expecting numeric in M931 / R931C13: got '#N/A'Expecting numeric in C932 / R932C3: got '#N/A'Expecting numeric in D932 / R932C4: got '#N/A'Expecting numeric in E932 / R932C5: got '#N/A'Expecting numeric in F932 / R932C6: got '#N/A'Expecting numeric in G932 / R932C7: got '#N/A'Expecting numeric in J932 / R932C10: got '#N/A'Expecting numeric in K932 / R932C11: got '#N/A'Expecting numeric in L932 / R932C12: got '#N/A'Expecting numeric in M932 / R932C13: got '#N/A'Expecting numeric in C933 / R933C3: got '#N/A'Expecting numeric in D933 / R933C4: got '#N/A'Expecting numeric in E933 / R933C5: got '#N/A'Expecting numeric in F933 / R933C6: got '#N/A'Expecting numeric in G933 / R933C7: got '#N/A'Expecting numeric in J933 / R933C10: got '#N/A'Expecting numeric in K933 / R933C11: got '#N/A'Expecting numeric in L933 / R933C12: got '#N/A'Expecting numeric in M933 / R933C13: got '#N/A'Expecting numeric in C934 / R934C3: got '#N/A'Expecting numeric in D934 / R934C4: got '#N/A'Expecting numeric in E934 / R934C5: got '#N/A'Expecting numeric in F934 / R934C6: got '#N/A'Expecting numeric in G934 / R934C7: got '#N/A'Expecting numeric in J934 / R934C10: got '#N/A'Expecting numeric in K934 / R934C11: got '#N/A'Expecting numeric in L934 / R934C12: got '#N/A'Expecting numeric in M934 / R934C13: got '#N/A'Expecting numeric in C935 / R935C3: got '#N/A'Expecting numeric in D935 / R935C4: got '#N/A'Expecting numeric in E935 / R935C5: got '#N/A'Expecting numeric in F935 / R935C6: got '#N/A'Expecting numeric in G935 / R935C7: got '#N/A'Expecting numeric in J935 / R935C10: got '#N/A'Expecting numeric in K935 / R935C11: got '#N/A'Expecting numeric in L935 / R935C12: got '#N/A'Expecting numeric in M935 / R935C13: got '#N/A'Expecting numeric in C936 / R936C3: got '#N/A'Expecting numeric in D936 / R936C4: got '#N/A'Expecting numeric in E936 / R936C5: got '#N/A'Expecting numeric in F936 / R936C6: got '#N/A'Expecting numeric in G936 / R936C7: got '#N/A'Expecting numeric in J936 / R936C10: got '#N/A'Expecting numeric in K936 / R936C11: got '#N/A'Expecting numeric in L936 / R936C12: got '#N/A'Expecting numeric in M936 / R936C13: got '#N/A'Expecting numeric in C937 / R937C3: got '#N/A'Expecting numeric in D937 / R937C4: got '#N/A'Expecting numeric in E937 / R937C5: got '#N/A'Expecting numeric in F937 / R937C6: got '#N/A'Expecting numeric in G937 / R937C7: got '#N/A'Expecting numeric in J937 / R937C10: got '#N/A'Expecting numeric in K937 / R937C11: got '#N/A'Expecting numeric in L937 / R937C12: got '#N/A'Expecting numeric in M937 / R937C13: got '#N/A'Expecting numeric in C938 / R938C3: got '#N/A'Expecting numeric in D938 / R938C4: got '#N/A'Expecting numeric in E938 / R938C5: got '#N/A'Expecting numeric in F938 / R938C6: got '#N/A'Expecting numeric in G938 / R938C7: got '#N/A'Expecting numeric in J938 / R938C10: got '#N/A'Expecting numeric in K938 / R938C11: got '#N/A'Expecting numeric in L938 / R938C12: got '#N/A'Expecting numeric in M938 / R938C13: got '#N/A'Expecting numeric in C939 / R939C3: got '#N/A'Expecting numeric in D939 / R939C4: got '#N/A'Expecting numeric in E939 / R939C5: got '#N/A'Expecting numeric in F939 / R939C6: got '#N/A'Expecting numeric in G939 / R939C7: got '#N/A'Expecting numeric in J939 / R939C10: got '#N/A'Expecting numeric in K939 / R939C11: got '#N/A'Expecting numeric in L939 / R939C12: got '#N/A'Expecting numeric in M939 / R939C13: got '#N/A'Expecting numeric in C940 / R940C3: got '#N/A'Expecting numeric in D940 / R940C4: got '#N/A'Expecting numeric in E940 / R940C5: got '#N/A'Expecting numeric in F940 / R940C6: got '#N/A'Expecting numeric in G940 / R940C7: got '#N/A'Expecting numeric in J940 / R940C10: got '#N/A'Expecting numeric in K940 / R940C11: got '#N/A'Expecting numeric in L940 / R940C12: got '#N/A'Expecting numeric in M940 / R940C13: got '#N/A'Expecting numeric in C941 / R941C3: got '#N/A'Expecting numeric in D941 / R941C4: got '#N/A'Expecting numeric in E941 / R941C5: got '#N/A'Expecting numeric in F941 / R941C6: got '#N/A'Expecting numeric in G941 / R941C7: got '#N/A'Expecting numeric in J941 / R941C10: got '#N/A'Expecting numeric in K941 / R941C11: got '#N/A'Expecting numeric in L941 / R941C12: got '#N/A'Expecting numeric in M941 / R941C13: got '#N/A'Expecting numeric in C942 / R942C3: got '#N/A'Expecting numeric in D942 / R942C4: got '#N/A'Expecting numeric in E942 / R942C5: got '#N/A'Expecting numeric in F942 / R942C6: got '#N/A'Expecting numeric in G942 / R942C7: got '#N/A'Expecting numeric in J942 / R942C10: got '#N/A'Expecting numeric in K942 / R942C11: got '#N/A'Expecting numeric in L942 / R942C12: got '#N/A'Expecting numeric in M942 / R942C13: got '#N/A'Expecting numeric in C943 / R943C3: got '#N/A'Expecting numeric in D943 / R943C4: got '#N/A'Expecting numeric in E943 / R943C5: got '#N/A'Expecting numeric in F943 / R943C6: got '#N/A'Expecting numeric in G943 / R943C7: got '#N/A'Expecting numeric in J943 / R943C10: got '#N/A'Expecting numeric in K943 / R943C11: got '#N/A'Expecting numeric in L943 / R943C12: got '#N/A'Expecting numeric in M943 / R943C13: got '#N/A'Expecting numeric in C944 / R944C3: got '#N/A'Expecting numeric in D944 / R944C4: got '#N/A'Expecting numeric in E944 / R944C5: got '#N/A'Expecting numeric in F944 / R944C6: got '#N/A'Expecting numeric in G944 / R944C7: got '#N/A'Expecting numeric in J944 / R944C10: got '#N/A'Expecting numeric in K944 / R944C11: got '#N/A'Expecting numeric in L944 / R944C12: got '#N/A'Expecting numeric in M944 / R944C13: got '#N/A'Expecting numeric in C945 / R945C3: got '#N/A'Expecting numeric in D945 / R945C4: got '#N/A'Expecting numeric in E945 / R945C5: got '#N/A'Expecting numeric in F945 / R945C6: got '#N/A'Expecting numeric in G945 / R945C7: got '#N/A'Expecting numeric in J945 / R945C10: got '#N/A'Expecting numeric in K945 / R945C11: got '#N/A'Expecting numeric in L945 / R945C12: got '#N/A'Expecting numeric in M945 / R945C13: got '#N/A'Expecting numeric in C946 / R946C3: got '#N/A'Expecting numeric in D946 / R946C4: got '#N/A'Expecting numeric in E946 / R946C5: got '#N/A'Expecting numeric in F946 / R946C6: got '#N/A'Expecting numeric in G946 / R946C7: got '#N/A'Expecting numeric in J946 / R946C10: got '#N/A'Expecting numeric in K946 / R946C11: got '#N/A'Expecting numeric in L946 / R946C12: got '#N/A'Expecting numeric in M946 / R946C13: got '#N/A'Expecting numeric in C947 / R947C3: got '#N/A'Expecting numeric in D947 / R947C4: got '#N/A'Expecting numeric in E947 / R947C5: got '#N/A'Expecting numeric in F947 / R947C6: got '#N/A'Expecting numeric in G947 / R947C7: got '#N/A'Expecting numeric in J947 / R947C10: got '#N/A'Expecting numeric in K947 / R947C11: got '#N/A'Expecting numeric in L947 / R947C12: got '#N/A'Expecting numeric in M947 / R947C13: got '#N/A'Expecting numeric in C948 / R948C3: got '#N/A'Expecting numeric in D948 / R948C4: got '#N/A'Expecting numeric in E948 / R948C5: got '#N/A'Expecting numeric in F948 / R948C6: got '#N/A'Expecting numeric in G948 / R948C7: got '#N/A'Expecting numeric in J948 / R948C10: got '#N/A'Expecting numeric in K948 / R948C11: got '#N/A'Expecting numeric in L948 / R948C12: got '#N/A'Expecting numeric in M948 / R948C13: got '#N/A'Expecting numeric in C949 / R949C3: got '#N/A'Expecting numeric in D949 / R949C4: got '#N/A'Expecting numeric in E949 / R949C5: got '#N/A'Expecting numeric in F949 / R949C6: got '#N/A'Expecting numeric in G949 / R949C7: got '#N/A'Expecting numeric in J949 / R949C10: got '#N/A'Expecting numeric in K949 / R949C11: got '#N/A'Expecting numeric in L949 / R949C12: got '#N/A'Expecting numeric in M949 / R949C13: got '#N/A'Expecting numeric in C950 / R950C3: got '#N/A'Expecting numeric in D950 / R950C4: got '#N/A'Expecting numeric in E950 / R950C5: got '#N/A'Expecting numeric in F950 / R950C6: got '#N/A'Expecting numeric in G950 / R950C7: got '#N/A'Expecting numeric in J950 / R950C10: got '#N/A'Expecting numeric in K950 / R950C11: got '#N/A'Expecting numeric in L950 / R950C12: got '#N/A'Expecting numeric in M950 / R950C13: got '#N/A'Expecting numeric in C951 / R951C3: got '#N/A'Expecting numeric in D951 / R951C4: got '#N/A'Expecting numeric in E951 / R951C5: got '#N/A'Expecting numeric in F951 / R951C6: got '#N/A'Expecting numeric in G951 / R951C7: got '#N/A'Expecting numeric in J951 / R951C10: got '#N/A'Expecting numeric in K951 / R951C11: got '#N/A'Expecting numeric in L951 / R951C12: got '#N/A'Expecting numeric in M951 / R951C13: got '#N/A'Expecting numeric in C952 / R952C3: got '#N/A'Expecting numeric in D952 / R952C4: got '#N/A'Expecting numeric in E952 / R952C5: got '#N/A'Expecting numeric in F952 / R952C6: got '#N/A'Expecting numeric in G952 / R952C7: got '#N/A'Expecting numeric in J952 / R952C10: got '#N/A'Expecting numeric in K952 / R952C11: got '#N/A'Expecting numeric in L952 / R952C12: got '#N/A'Expecting numeric in M952 / R952C13: got '#N/A'Expecting numeric in C953 / R953C3: got '#N/A'Expecting numeric in D953 / R953C4: got '#N/A'Expecting numeric in E953 / R953C5: got '#N/A'Expecting numeric in F953 / R953C6: got '#N/A'Expecting numeric in G953 / R953C7: got '#N/A'Expecting numeric in J953 / R953C10: got '#N/A'Expecting numeric in K953 / R953C11: got '#N/A'Expecting numeric in L953 / R953C12: got '#N/A'Expecting numeric in M953 / R953C13: got '#N/A'Expecting numeric in C954 / R954C3: got '#N/A'Expecting numeric in D954 / R954C4: got '#N/A'Expecting numeric in E954 / R954C5: got '#N/A'Expecting numeric in F954 / R954C6: got '#N/A'Expecting numeric in G954 / R954C7: got '#N/A'Expecting numeric in J954 / R954C10: got '#N/A'Expecting numeric in K954 / R954C11: got '#N/A'Expecting numeric in L954 / R954C12: got '#N/A'Expecting numeric in M954 / R954C13: got '#N/A'Expecting numeric in C955 / R955C3: got '#N/A'Expecting numeric in D955 / R955C4: got '#N/A'Expecting numeric in E955 / R955C5: got '#N/A'Expecting numeric in F955 / R955C6: got '#N/A'Expecting numeric in G955 / R955C7: got '#N/A'Expecting numeric in J955 / R955C10: got '#N/A'Expecting numeric in K955 / R955C11: got '#N/A'Expecting numeric in L955 / R955C12: got '#N/A'Expecting numeric in M955 / R955C13: got '#N/A'Expecting numeric in C956 / R956C3: got '#N/A'Expecting numeric in D956 / R956C4: got '#N/A'Expecting numeric in E956 / R956C5: got '#N/A'Expecting numeric in F956 / R956C6: got '#N/A'Expecting numeric in G956 / R956C7: got '#N/A'Expecting numeric in J956 / R956C10: got '#N/A'Expecting numeric in K956 / R956C11: got '#N/A'Expecting numeric in L956 / R956C12: got '#N/A'Expecting numeric in M956 / R956C13: got '#N/A'Expecting numeric in C957 / R957C3: got '#N/A'Expecting numeric in D957 / R957C4: got '#N/A'Expecting numeric in E957 / R957C5: got '#N/A'Expecting numeric in F957 / R957C6: got '#N/A'Expecting numeric in G957 / R957C7: got '#N/A'Expecting numeric in J957 / R957C10: got '#N/A'Expecting numeric in K957 / R957C11: got '#N/A'Expecting numeric in L957 / R957C12: got '#N/A'Expecting numeric in M957 / R957C13: got '#N/A'Expecting numeric in C958 / R958C3: got '#N/A'Expecting numeric in D958 / R958C4: got '#N/A'Expecting numeric in E958 / R958C5: got '#N/A'Expecting numeric in F958 / R958C6: got '#N/A'Expecting numeric in G958 / R958C7: got '#N/A'Expecting numeric in J958 / R958C10: got '#N/A'Expecting numeric in K958 / R958C11: got '#N/A'Expecting numeric in L958 / R958C12: got '#N/A'Expecting numeric in M958 / R958C13: got '#N/A'Expecting numeric in C959 / R959C3: got '#N/A'Expecting numeric in D959 / R959C4: got '#N/A'Expecting numeric in E959 / R959C5: got '#N/A'Expecting numeric in F959 / R959C6: got '#N/A'Expecting numeric in G959 / R959C7: got '#N/A'Expecting numeric in J959 / R959C10: got '#N/A'Expecting numeric in K959 / R959C11: got '#N/A'Expecting numeric in L959 / R959C12: got '#N/A'Expecting numeric in M959 / R959C13: got '#N/A'Expecting numeric in C960 / R960C3: got '#N/A'Expecting numeric in D960 / R960C4: got '#N/A'Expecting numeric in E960 / R960C5: got '#N/A'Expecting numeric in F960 / R960C6: got '#N/A'Expecting numeric in G960 / R960C7: got '#N/A'Expecting numeric in J960 / R960C10: got '#N/A'Expecting numeric in K960 / R960C11: got '#N/A'Expecting numeric in L960 / R960C12: got '#N/A'Expecting numeric in M960 / R960C13: got '#N/A'Expecting numeric in C961 / R961C3: got '#N/A'Expecting numeric in D961 / R961C4: got '#N/A'Expecting numeric in E961 / R961C5: got '#N/A'Expecting numeric in F961 / R961C6: got '#N/A'Expecting numeric in G961 / R961C7: got '#N/A'Expecting numeric in J961 / R961C10: got '#N/A'Expecting numeric in K961 / R961C11: got '#N/A'Expecting numeric in L961 / R961C12: got '#N/A'Expecting numeric in M961 / R961C13: got '#N/A'Expecting numeric in C962 / R962C3: got '#N/A'Expecting numeric in D962 / R962C4: got '#N/A'Expecting numeric in E962 / R962C5: got '#N/A'Expecting numeric in F962 / R962C6: got '#N/A'Expecting numeric in G962 / R962C7: got '#N/A'Expecting numeric in J962 / R962C10: got '#N/A'Expecting numeric in K962 / R962C11: got '#N/A'Expecting numeric in L962 / R962C12: got '#N/A'Expecting numeric in M962 / R962C13: got '#N/A'Expecting numeric in C963 / R963C3: got '#N/A'Expecting numeric in D963 / R963C4: got '#N/A'Expecting numeric in E963 / R963C5: got '#N/A'Expecting numeric in F963 / R963C6: got '#N/A'Expecting numeric in G963 / R963C7: got '#N/A'Expecting numeric in J963 / R963C10: got '#N/A'Expecting numeric in K963 / R963C11: got '#N/A'Expecting numeric in L963 / R963C12: got '#N/A'Expecting numeric in M963 / R963C13: got '#N/A'Expecting numeric in C964 / R964C3: got '#N/A'Expecting numeric in D964 / R964C4: got '#N/A'Expecting numeric in E964 / R964C5: got '#N/A'Expecting numeric in F964 / R964C6: got '#N/A'Expecting numeric in G964 / R964C7: got '#N/A'Expecting numeric in J964 / R964C10: got '#N/A'Expecting numeric in K964 / R964C11: got '#N/A'Expecting numeric in L964 / R964C12: got '#N/A'Expecting numeric in M964 / R964C13: got '#N/A'Expecting numeric in C965 / R965C3: got '#N/A'Expecting numeric in D965 / R965C4: got '#N/A'Expecting numeric in E965 / R965C5: got '#N/A'Expecting numeric in F965 / R965C6: got '#N/A'Expecting numeric in G965 / R965C7: got '#N/A'Expecting numeric in J965 / R965C10: got '#N/A'Expecting numeric in K965 / R965C11: got '#N/A'Expecting numeric in L965 / R965C12: got '#N/A'Expecting numeric in M965 / R965C13: got '#N/A'Expecting numeric in C966 / R966C3: got '#N/A'Expecting numeric in D966 / R966C4: got '#N/A'Expecting numeric in E966 / R966C5: got '#N/A'Expecting numeric in F966 / R966C6: got '#N/A'Expecting numeric in G966 / R966C7: got '#N/A'Expecting numeric in J966 / R966C10: got '#N/A'Expecting numeric in K966 / R966C11: got '#N/A'Expecting numeric in L966 / R966C12: got '#N/A'Expecting numeric in M966 / R966C13: got '#N/A'Expecting numeric in C967 / R967C3: got '#N/A'Expecting numeric in D967 / R967C4: got '#N/A'Expecting numeric in E967 / R967C5: got '#N/A'Expecting numeric in F967 / R967C6: got '#N/A'Expecting numeric in G967 / R967C7: got '#N/A'Expecting numeric in J967 / R967C10: got '#N/A'Expecting numeric in K967 / R967C11: got '#N/A'Expecting numeric in L967 / R967C12: got '#N/A'Expecting numeric in M967 / R967C13: got '#N/A'Expecting numeric in C968 / R968C3: got '#N/A'Expecting numeric in D968 / R968C4: got '#N/A'Expecting numeric in E968 / R968C5: got '#N/A'Expecting numeric in F968 / R968C6: got '#N/A'Expecting numeric in G968 / R968C7: got '#N/A'Expecting numeric in J968 / R968C10: got '#N/A'Expecting numeric in K968 / R968C11: got '#N/A'Expecting numeric in L968 / R968C12: got '#N/A'Expecting numeric in M968 / R968C13: got '#N/A'Expecting numeric in C969 / R969C3: got '#N/A'Expecting numeric in D969 / R969C4: got '#N/A'Expecting numeric in E969 / R969C5: got '#N/A'Expecting numeric in F969 / R969C6: got '#N/A'Expecting numeric in G969 / R969C7: got '#N/A'Expecting numeric in J969 / R969C10: got '#N/A'Expecting numeric in K969 / R969C11: got '#N/A'Expecting numeric in L969 / R969C12: got '#N/A'Expecting numeric in M969 / R969C13: got '#N/A'Expecting numeric in C970 / R970C3: got '#N/A'Expecting numeric in D970 / R970C4: got '#N/A'Expecting numeric in E970 / R970C5: got '#N/A'Expecting numeric in F970 / R970C6: got '#N/A'Expecting numeric in G970 / R970C7: got '#N/A'Expecting numeric in J970 / R970C10: got '#N/A'Expecting numeric in K970 / R970C11: got '#N/A'Expecting numeric in L970 / R970C12: got '#N/A'Expecting numeric in M970 / R970C13: got '#N/A'Expecting numeric in C971 / R971C3: got '#N/A'Expecting numeric in D971 / R971C4: got '#N/A'Expecting numeric in E971 / R971C5: got '#N/A'Expecting numeric in F971 / R971C6: got '#N/A'Expecting numeric in G971 / R971C7: got '#N/A'Expecting numeric in J971 / R971C10: got '#N/A'Expecting numeric in K971 / R971C11: got '#N/A'Expecting numeric in L971 / R971C12: got '#N/A'Expecting numeric in M971 / R971C13: got '#N/A'Expecting numeric in C972 / R972C3: got '#N/A'Expecting numeric in D972 / R972C4: got '#N/A'Expecting numeric in E972 / R972C5: got '#N/A'Expecting numeric in F972 / R972C6: got '#N/A'Expecting numeric in G972 / R972C7: got '#N/A'Expecting numeric in J972 / R972C10: got '#N/A'Expecting numeric in K972 / R972C11: got '#N/A'Expecting numeric in L972 / R972C12: got '#N/A'Expecting numeric in M972 / R972C13: got '#N/A'Expecting numeric in C973 / R973C3: got '#N/A'Expecting numeric in D973 / R973C4: got '#N/A'Expecting numeric in E973 / R973C5: got '#N/A'Expecting numeric in F973 / R973C6: got '#N/A'Expecting numeric in G973 / R973C7: got '#N/A'Expecting numeric in J973 / R973C10: got '#N/A'Expecting numeric in K973 / R973C11: got '#N/A'Expecting numeric in L973 / R973C12: got '#N/A'Expecting numeric in M973 / R973C13: got '#N/A'Expecting numeric in C974 / R974C3: got '#N/A'Expecting numeric in D974 / R974C4: got '#N/A'Expecting numeric in E974 / R974C5: got '#N/A'Expecting numeric in F974 / R974C6: got '#N/A'Expecting numeric in G974 / R974C7: got '#N/A'Expecting numeric in J974 / R974C10: got '#N/A'Expecting numeric in K974 / R974C11: got '#N/A'Expecting numeric in L974 / R974C12: got '#N/A'Expecting numeric in M974 / R974C13: got '#N/A'Expecting numeric in C975 / R975C3: got '#N/A'Expecting numeric in D975 / R975C4: got '#N/A'Expecting numeric in E975 / R975C5: got '#N/A'Expecting numeric in F975 / R975C6: got '#N/A'Expecting numeric in G975 / R975C7: got '#N/A'Expecting numeric in J975 / R975C10: got '#N/A'Expecting numeric in K975 / R975C11: got '#N/A'Expecting numeric in L975 / R975C12: got '#N/A'Expecting numeric in M975 / R975C13: got '#N/A'Expecting numeric in C976 / R976C3: got '#N/A'Expecting numeric in D976 / R976C4: got '#N/A'Expecting numeric in E976 / R976C5: got '#N/A'Expecting numeric in F976 / R976C6: got '#N/A'Expecting numeric in G976 / R976C7: got '#N/A'Expecting numeric in J976 / R976C10: got '#N/A'Expecting numeric in K976 / R976C11: got '#N/A'Expecting numeric in L976 / R976C12: got '#N/A'Expecting numeric in M976 / R976C13: got '#N/A'Expecting numeric in C977 / R977C3: got '#N/A'Expecting numeric in D977 / R977C4: got '#N/A'Expecting numeric in E977 / R977C5: got '#N/A'Expecting numeric in F977 / R977C6: got '#N/A'Expecting numeric in G977 / R977C7: got '#N/A'Expecting numeric in J977 / R977C10: got '#N/A'Expecting numeric in K977 / R977C11: got '#N/A'Expecting numeric in L977 / R977C12: got '#N/A'Expecting numeric in M977 / R977C13: got '#N/A'Expecting numeric in C978 / R978C3: got '#N/A'Expecting numeric in D978 / R978C4: got '#N/A'Expecting numeric in E978 / R978C5: got '#N/A'Expecting numeric in F978 / R978C6: got '#N/A'Expecting numeric in G978 / R978C7: got '#N/A'Expecting numeric in J978 / R978C10: got '#N/A'Expecting numeric in K978 / R978C11: got '#N/A'Expecting numeric in L978 / R978C12: got '#N/A'Expecting numeric in M978 / R978C13: got '#N/A'Expecting numeric in C979 / R979C3: got '#N/A'Expecting numeric in D979 / R979C4: got '#N/A'Expecting numeric in E979 / R979C5: got '#N/A'Expecting numeric in F979 / R979C6: got '#N/A'Expecting numeric in G979 / R979C7: got '#N/A'Expecting numeric in J979 / R979C10: got '#N/A'Expecting numeric in K979 / R979C11: got '#N/A'Expecting numeric in L979 / R979C12: got '#N/A'Expecting numeric in M979 / R979C13: got '#N/A'Expecting numeric in C980 / R980C3: got '#N/A'Expecting numeric in D980 / R980C4: got '#N/A'Expecting numeric in E980 / R980C5: got '#N/A'Expecting numeric in F980 / R980C6: got '#N/A'Expecting numeric in G980 / R980C7: got '#N/A'Expecting numeric in J980 / R980C10: got '#N/A'Expecting numeric in K980 / R980C11: got '#N/A'Expecting numeric in L980 / R980C12: got '#N/A'Expecting numeric in M980 / R980C13: got '#N/A'Expecting numeric in C981 / R981C3: got '#N/A'Expecting numeric in D981 / R981C4: got '#N/A'Expecting numeric in E981 / R981C5: got '#N/A'Expecting numeric in F981 / R981C6: got '#N/A'Expecting numeric in G981 / R981C7: got '#N/A'Expecting numeric in J981 / R981C10: got '#N/A'Expecting numeric in K981 / R981C11: got '#N/A'Expecting numeric in L981 / R981C12: got '#N/A'Expecting numeric in M981 / R981C13: got '#N/A'Expecting numeric in C982 / R982C3: got '#N/A'Expecting numeric in D982 / R982C4: got '#N/A'Expecting numeric in E982 / R982C5: got '#N/A'Expecting numeric in F982 / R982C6: got '#N/A'Expecting numeric in G982 / R982C7: got '#N/A'Expecting numeric in J982 / R982C10: got '#N/A'Expecting numeric in K982 / R982C11: got '#N/A'Expecting numeric in L982 / R982C12: got '#N/A'Expecting numeric in M982 / R982C13: got '#N/A'Expecting numeric in C983 / R983C3: got '#N/A'Expecting numeric in D983 / R983C4: got '#N/A'Expecting numeric in E983 / R983C5: got '#N/A'Expecting numeric in F983 / R983C6: got '#N/A'Expecting numeric in G983 / R983C7: got '#N/A'Expecting numeric in J983 / R983C10: got '#N/A'Expecting numeric in K983 / R983C11: got '#N/A'Expecting numeric in L983 / R983C12: got '#N/A'Expecting numeric in M983 / R983C13: got '#N/A'Expecting numeric in C984 / R984C3: got '#N/A'Expecting numeric in D984 / R984C4: got '#N/A'Expecting numeric in E984 / R984C5: got '#N/A'Expecting numeric in F984 / R984C6: got '#N/A'Expecting numeric in G984 / R984C7: got '#N/A'Expecting numeric in J984 / R984C10: got '#N/A'Expecting numeric in K984 / R984C11: got '#N/A'Expecting numeric in L984 / R984C12: got '#N/A'Expecting numeric in M984 / R984C13: got '#N/A'Expecting numeric in C985 / R985C3: got '#N/A'Expecting numeric in D985 / R985C4: got '#N/A'Expecting numeric in E985 / R985C5: got '#N/A'Expecting numeric in F985 / R985C6: got '#N/A'Expecting numeric in G985 / R985C7: got '#N/A'Expecting numeric in J985 / R985C10: got '#N/A'Expecting numeric in K985 / R985C11: got '#N/A'Expecting numeric in L985 / R985C12: got '#N/A'Expecting numeric in M985 / R985C13: got '#N/A'Expecting numeric in C986 / R986C3: got '#N/A'Expecting numeric in D986 / R986C4: got '#N/A'Expecting numeric in E986 / R986C5: got '#N/A'Expecting numeric in F986 / R986C6: got '#N/A'Expecting numeric in G986 / R986C7: got '#N/A'Expecting numeric in J986 / R986C10: got '#N/A'Expecting numeric in K986 / R986C11: got '#N/A'Expecting numeric in L986 / R986C12: got '#N/A'Expecting numeric in M986 / R986C13: got '#N/A'Expecting numeric in C987 / R987C3: got '#N/A'Expecting numeric in D987 / R987C4: got '#N/A'Expecting numeric in E987 / R987C5: got '#N/A'Expecting numeric in F987 / R987C6: got '#N/A'Expecting numeric in G987 / R987C7: got '#N/A'Expecting numeric in J987 / R987C10: got '#N/A'Expecting numeric in K987 / R987C11: got '#N/A'Expecting numeric in L987 / R987C12: got '#N/A'Expecting numeric in M987 / R987C13: got '#N/A'Expecting numeric in C988 / R988C3: got '#N/A'Expecting numeric in D988 / R988C4: got '#N/A'Expecting numeric in E988 / R988C5: got '#N/A'Expecting numeric in F988 / R988C6: got '#N/A'Expecting numeric in G988 / R988C7: got '#N/A'Expecting numeric in J988 / R988C10: got '#N/A'Expecting numeric in K988 / R988C11: got '#N/A'Expecting numeric in L988 / R988C12: got '#N/A'Expecting numeric in M988 / R988C13: got '#N/A'Expecting numeric in C989 / R989C3: got '#N/A'Expecting numeric in D989 / R989C4: got '#N/A'Expecting numeric in E989 / R989C5: got '#N/A'Expecting numeric in F989 / R989C6: got '#N/A'Expecting numeric in G989 / R989C7: got '#N/A'Expecting numeric in J989 / R989C10: got '#N/A'Expecting numeric in K989 / R989C11: got '#N/A'Expecting numeric in L989 / R989C12: got '#N/A'Expecting numeric in M989 / R989C13: got '#N/A'Expecting numeric in C990 / R990C3: got '#N/A'Expecting numeric in D990 / R990C4: got '#N/A'Expecting numeric in E990 / R990C5: got '#N/A'Expecting numeric in F990 / R990C6: got '#N/A'Expecting numeric in G990 / R990C7: got '#N/A'Expecting numeric in J990 / R990C10: got '#N/A'Expecting numeric in K990 / R990C11: got '#N/A'Expecting numeric in L990 / R990C12: got '#N/A'Expecting numeric in M990 / R990C13: got '#N/A'Expecting numeric in C991 / R991C3: got '#N/A'Expecting numeric in D991 / R991C4: got '#N/A'Expecting numeric in E991 / R991C5: got '#N/A'Expecting numeric in F991 / R991C6: got '#N/A'Expecting numeric in G991 / R991C7: got '#N/A'Expecting numeric in J991 / R991C10: got '#N/A'Expecting numeric in K991 / R991C11: got '#N/A'Expecting numeric in L991 / R991C12: got '#N/A'Expecting numeric in M991 / R991C13: got '#N/A'Expecting numeric in C992 / R992C3: got '#N/A'Expecting numeric in D992 / R992C4: got '#N/A'Expecting numeric in E992 / R992C5: got '#N/A'Expecting numeric in F992 / R992C6: got '#N/A'Expecting numeric in G992 / R992C7: got '#N/A'Expecting numeric in J992 / R992C10: got '#N/A'Expecting numeric in K992 / R992C11: got '#N/A'Expecting numeric in L992 / R992C12: got '#N/A'Expecting numeric in M992 / R992C13: got '#N/A'Expecting numeric in C993 / R993C3: got '#N/A'Expecting numeric in D993 / R993C4: got '#N/A'Expecting numeric in E993 / R993C5: got '#N/A'Expecting numeric in F993 / R993C6: got '#N/A'Expecting numeric in G993 / R993C7: got '#N/A'Expecting numeric in J993 / R993C10: got '#N/A'Expecting numeric in K993 / R993C11: got '#N/A'Expecting numeric in L993 / R993C12: got '#N/A'Expecting numeric in M993 / R993C13: got '#N/A'Expecting numeric in C994 / R994C3: got '#N/A'Expecting numeric in D994 / R994C4: got '#N/A'Expecting numeric in E994 / R994C5: got '#N/A'Expecting numeric in F994 / R994C6: got '#N/A'Expecting numeric in G994 / R994C7: got '#N/A'Expecting numeric in J994 / R994C10: got '#N/A'Expecting numeric in K994 / R994C11: got '#N/A'Expecting numeric in L994 / R994C12: got '#N/A'Expecting numeric in M994 / R994C13: got '#N/A'Expecting numeric in C995 / R995C3: got '#N/A'Expecting numeric in D995 / R995C4: got '#N/A'Expecting numeric in E995 / R995C5: got '#N/A'Expecting numeric in F995 / R995C6: got '#N/A'Expecting numeric in G995 / R995C7: got '#N/A'Expecting numeric in J995 / R995C10: got '#N/A'Expecting numeric in K995 / R995C11: got '#N/A'Expecting numeric in L995 / R995C12: got '#N/A'Expecting numeric in M995 / R995C13: got '#N/A'Expecting numeric in C996 / R996C3: got '#N/A'Expecting numeric in D996 / R996C4: got '#N/A'Expecting numeric in E996 / R996C5: got '#N/A'Expecting numeric in F996 / R996C6: got '#N/A'Expecting numeric in G996 / R996C7: got '#N/A'Expecting numeric in J996 / R996C10: got '#N/A'Expecting numeric in K996 / R996C11: got '#N/A'Expecting numeric in L996 / R996C12: got '#N/A'Expecting numeric in M996 / R996C13: got '#N/A'Expecting numeric in C997 / R997C3: got '#N/A'Expecting numeric in D997 / R997C4: got '#N/A'Expecting numeric in E997 / R997C5: got '#N/A'Expecting numeric in F997 / R997C6: got '#N/A'Expecting numeric in G997 / R997C7: got '#N/A'Expecting numeric in J997 / R997C10: got '#N/A'Expecting numeric in K997 / R997C11: got '#N/A'Expecting numeric in L997 / R997C12: got '#N/A'Expecting numeric in M997 / R997C13: got '#N/A'Expecting numeric in C998 / R998C3: got '#N/A'Expecting numeric in D998 / R998C4: got '#N/A'Expecting numeric in E998 / R998C5: got '#N/A'Expecting numeric in F998 / R998C6: got '#N/A'Expecting numeric in G998 / R998C7: got '#N/A'Expecting numeric in J998 / R998C10: got '#N/A'Expecting numeric in K998 / R998C11: got '#N/A'Expecting numeric in L998 / R998C12: got '#N/A'Expecting numeric in M998 / R998C13: got '#N/A'Expecting numeric in C999 / R999C3: got '#N/A'Expecting numeric in D999 / R999C4: got '#N/A'Expecting numeric in E999 / R999C5: got '#N/A'Expecting numeric in F999 / R999C6: got '#N/A'Expecting numeric in G999 / R999C7: got '#N/A'Expecting numeric in J999 / R999C10: got '#N/A'Expecting numeric in K999 / R999C11: got '#N/A'Expecting numeric in L999 / R999C12: got '#N/A'Expecting numeric in M999 / R999C13: got '#N/A'Expecting numeric in C1000 / R1000C3: got '#N/A'Expecting numeric in D1000 / R1000C4: got '#N/A'Expecting numeric in E1000 / R1000C5: got '#N/A'Expecting numeric in F1000 / R1000C6: got '#N/A'Expecting numeric in G1000 / R1000C7: got '#N/A'Expecting numeric in J1000 / R1000C10: got '#N/A'Expecting numeric in K1000 / R1000C11: got '#N/A'Expecting numeric in L1000 / R1000C12: got '#N/A'Expecting numeric in M1000 / R1000C13: got '#N/A'Expecting numeric in C1001 / R1001C3: got '#N/A'Expecting numeric in D1001 / R1001C4: got '#N/A'Expecting numeric in E1001 / R1001C5: got '#N/A'Expecting numeric in F1001 / R1001C6: got '#N/A'Expecting numeric in G1001 / R1001C7: got '#N/A'Expecting numeric in J1001 / R1001C10: got '#N/A'Expecting numeric in K1001 / R1001C11: got '#N/A'Expecting numeric in L1001 / R1001C12: got '#N/A'Expecting numeric in M1001 / R1001C13: got '#N/A'Expecting numeric in C1002 / R1002C3: got '#N/A'Expecting numeric in D1002 / R1002C4: got '#N/A'Expecting numeric in E1002 / R1002C5: got '#N/A'Expecting numeric in F1002 / R1002C6: got '#N/A'Expecting numeric in G1002 / R1002C7: got '#N/A'Expecting numeric in J1002 / R1002C10: got '#N/A'Expecting numeric in K1002 / R1002C11: got '#N/A'Expecting numeric in L1002 / R1002C12: got '#N/A'Expecting numeric in M1002 / R1002C13: got '#N/A'Expecting numeric in C1003 / R1003C3: got '#N/A'Expecting numeric in D1003 / R1003C4: got '#N/A'Expecting numeric in E1003 / R1003C5: got '#N/A'Expecting numeric in F1003 / R1003C6: got '#N/A'Expecting numeric in G1003 / R1003C7: got '#N/A'Expecting numeric in J1003 / R1003C10: got '#N/A'Expecting numeric in K1003 / R1003C11: got '#N/A'Expecting numeric in L1003 / R1003C12: got '#N/A'Expecting numeric in M1003 / R1003C13: got '#N/A'Expecting numeric in C1004 / R1004C3: got '#N/A'Expecting numeric in D1004 / R1004C4: got '#N/A'Expecting numeric in E1004 / R1004C5: got '#N/A'Expecting numeric in F1004 / R1004C6: got '#N/A'Expecting numeric in G1004 / R1004C7: got '#N/A'Expecting numeric in J1004 / R1004C10: got '#N/A'Expecting numeric in K1004 / R1004C11: got '#N/A'Expecting numeric in L1004 / R1004C12: got '#N/A'Expecting numeric in M1004 / R1004C13: got '#N/A'Expecting numeric in C1005 / R1005C3: got '#N/A'Expecting numeric in D1005 / R1005C4: got '#N/A'Expecting numeric in E1005 / R1005C5: got '#N/A'Expecting numeric in F1005 / R1005C6: got '#N/A'Expecting numeric in G1005 / R1005C7: got '#N/A'Expecting numeric in J1005 / R1005C10: got '#N/A'Expecting numeric in K1005 / R1005C11: got '#N/A'Expecting numeric in L1005 / R1005C12: got '#N/A'Expecting numeric in M1005 / R1005C13: got '#N/A'Expecting numeric in C1006 / R1006C3: got '#N/A'Expecting numeric in D1006 / R1006C4: got '#N/A'Expecting numeric in E1006 / R1006C5: got '#N/A'Expecting numeric in F1006 / R1006C6: got '#N/A'Expecting numeric in G1006 / R1006C7: got '#N/A'Expecting numeric in J1006 / R1006C10: got '#N/A'Expecting numeric in K1006 / R1006C11: got '#N/A'Expecting numeric in L1006 / R1006C12: got '#N/A'Expecting numeric in M1006 / R1006C13: got '#N/A'Expecting numeric in C1007 / R1007C3: got '#N/A'Expecting numeric in D1007 / R1007C4: got '#N/A'Expecting numeric in E1007 / R1007C5: got '#N/A'Expecting numeric in F1007 / R1007C6: got '#N/A'Expecting numeric in G1007 / R1007C7: got '#N/A'Expecting numeric in J1007 / R1007C10: got '#N/A'Expecting numeric in K1007 / R1007C11: got '#N/A'Expecting numeric in L1007 / R1007C12: got '#N/A'Expecting numeric in M1007 / R1007C13: got '#N/A'Expecting numeric in C1008 / R1008C3: got '#N/A'Expecting numeric in D1008 / R1008C4: got '#N/A'Expecting numeric in E1008 / R1008C5: got '#N/A'Expecting numeric in F1008 / R1008C6: got '#N/A'Expecting numeric in G1008 / R1008C7: got '#N/A'Expecting numeric in J1008 / R1008C10: got '#N/A'Expecting numeric in K1008 / R1008C11: got '#N/A'Expecting numeric in L1008 / R1008C12: got '#N/A'Expecting numeric in M1008 / R1008C13: got '#N/A'Expecting numeric in C1009 / R1009C3: got '#N/A'Expecting numeric in D1009 / R1009C4: got '#N/A'Expecting numeric in E1009 / R1009C5: got '#N/A'Expecting numeric in F1009 / R1009C6: got '#N/A'Expecting numeric in G1009 / R1009C7: got '#N/A'Expecting numeric in J1009 / R1009C10: got '#N/A'Expecting numeric in K1009 / R1009C11: got '#N/A'Expecting numeric in L1009 / R1009C12: got '#N/A'Expecting numeric in M1009 / R1009C13: got '#N/A'Expecting numeric in C1010 / R1010C3: got '#N/A'Expecting numeric in D1010 / R1010C4: got '#N/A'Expecting numeric in E1010 / R1010C5: got '#N/A'Expecting numeric in F1010 / R1010C6: got '#N/A'Expecting numeric in G1010 / R1010C7: got '#N/A'Expecting numeric in J1010 / R1010C10: got '#N/A'Expecting numeric in K1010 / R1010C11: got '#N/A'Expecting numeric in L1010 / R1010C12: got '#N/A'Expecting numeric in M1010 / R1010C13: got '#N/A'Expecting numeric in C1011 / R1011C3: got '#N/A'Expecting numeric in D1011 / R1011C4: got '#N/A'Expecting numeric in E1011 / R1011C5: got '#N/A'Expecting numeric in F1011 / R1011C6: got '#N/A'Expecting numeric in G1011 / R1011C7: got '#N/A'Expecting numeric in J1011 / R1011C10: got '#N/A'Expecting numeric in K1011 / R1011C11: got '#N/A'Expecting numeric in L1011 / R1011C12: got '#N/A'Expecting numeric in M1011 / R1011C13: got '#N/A'Expecting numeric in C1012 / R1012C3: got '#N/A'Expecting numeric in D1012 / R1012C4: got '#N/A'Expecting numeric in E1012 / R1012C5: got '#N/A'Expecting numeric in F1012 / R1012C6: got '#N/A'Expecting numeric in G1012 / R1012C7: got '#N/A'Expecting numeric in J1012 / R1012C10: got '#N/A'Expecting numeric in K1012 / R1012C11: got '#N/A'Expecting numeric in L1012 / R1012C12: got '#N/A'Expecting numeric in M1012 / R1012C13: got '#N/A'Expecting numeric in C1013 / R1013C3: got '#N/A'Expecting numeric in D1013 / R1013C4: got '#N/A'Expecting numeric in E1013 / R1013C5: got '#N/A'Expecting numeric in F1013 / R1013C6: got '#N/A'Expecting numeric in G1013 / R1013C7: got '#N/A'Expecting numeric in J1013 / R1013C10: got '#N/A'Expecting numeric in K1013 / R1013C11: got '#N/A'Expecting numeric in L1013 / R1013C12: got '#N/A'Expecting numeric in M1013 / R1013C13: got '#N/A'Expecting numeric in C1014 / R1014C3: got '#N/A'Expecting numeric in D1014 / R1014C4: got '#N/A'Expecting numeric in E1014 / R1014C5: got '#N/A'Expecting numeric in F1014 / R1014C6: got '#N/A'Expecting numeric in G1014 / R1014C7: got '#N/A'Expecting numeric in J1014 / R1014C10: got '#N/A'Expecting numeric in K1014 / R1014C11: got '#N/A'Expecting numeric in L1014 / R1014C12: got '#N/A'Expecting numeric in M1014 / R1014C13: got '#N/A'Expecting numeric in C1015 / R1015C3: got '#N/A'Expecting numeric in D1015 / R1015C4: got '#N/A'Expecting numeric in E1015 / R1015C5: got '#N/A'Expecting numeric in F1015 / R1015C6: got '#N/A'Expecting numeric in G1015 / R1015C7: got '#N/A'Expecting numeric in J1015 / R1015C10: got '#N/A'Expecting numeric in K1015 / R1015C11: got '#N/A'Expecting numeric in L1015 / R1015C12: got '#N/A'Expecting numeric in M1015 / R1015C13: got '#N/A'Expecting numeric in C1016 / R1016C3: got '#N/A'Expecting numeric in D1016 / R1016C4: got '#N/A'Expecting numeric in E1016 / R1016C5: got '#N/A'Expecting numeric in F1016 / R1016C6: got '#N/A'Expecting numeric in G1016 / R1016C7: got '#N/A'Expecting numeric in J1016 / R1016C10: got '#N/A'Expecting numeric in K1016 / R1016C11: got '#N/A'Expecting numeric in L1016 / R1016C12: got '#N/A'Expecting numeric in M1016 / R1016C13: got '#N/A'Expecting numeric in C1017 / R1017C3: got '#N/A'Expecting numeric in D1017 / R1017C4: got '#N/A'Expecting numeric in E1017 / R1017C5: got '#N/A'Expecting numeric in F1017 / R1017C6: got '#N/A'Expecting numeric in G1017 / R1017C7: got '#N/A'Expecting numeric in J1017 / R1017C10: got '#N/A'Expecting numeric in K1017 / R1017C11: got '#N/A'Expecting numeric in L1017 / R1017C12: got '#N/A'Expecting numeric in M1017 / R1017C13: got '#N/A'Expecting numeric in C1018 / R1018C3: got '#N/A'Expecting numeric in D1018 / R1018C4: got '#N/A'Expecting numeric in E1018 / R1018C5: got '#N/A'Expecting numeric in F1018 / R1018C6: got '#N/A'Expecting numeric in G1018 / R1018C7: got '#N/A'Expecting numeric in J1018 / R1018C10: got '#N/A'Expecting numeric in K1018 / R1018C11: got '#N/A'Expecting numeric in L1018 / R1018C12: got '#N/A'Expecting numeric in M1018 / R1018C13: got '#N/A'Expecting numeric in C1019 / R1019C3: got '#N/A'Expecting numeric in D1019 / R1019C4: got '#N/A'Expecting numeric in E1019 / R1019C5: got '#N/A'Expecting numeric in F1019 / R1019C6: got '#N/A'Expecting numeric in G1019 / R1019C7: got '#N/A'Expecting numeric in K1019 / R1019C11: got '#N/A'Expecting numeric in L1019 / R1019C12: got '#N/A'Expecting numeric in M1019 / R1019C13: got '#N/A'Expecting numeric in C1020 / R1020C3: got '#N/A'Expecting numeric in D1020 / R1020C4: got '#N/A'Expecting numeric in E1020 / R1020C5: got '#N/A'Expecting numeric in F1020 / R1020C6: got '#N/A'Expecting numeric in G1020 / R1020C7: got '#N/A'Expecting numeric in K1020 / R1020C11: got '#N/A'Expecting numeric in L1020 / R1020C12: got '#N/A'Expecting numeric in M1020 / R1020C13: got '#N/A'Expecting numeric in C1021 / R1021C3: got '#N/A'Expecting numeric in D1021 / R1021C4: got '#N/A'Expecting numeric in E1021 / R1021C5: got '#N/A'Expecting numeric in F1021 / R1021C6: got '#N/A'Expecting numeric in G1021 / R1021C7: got '#N/A'Expecting numeric in K1021 / R1021C11: got '#N/A'Expecting numeric in L1021 / R1021C12: got '#N/A'Expecting numeric in M1021 / R1021C13: got '#N/A'Expecting numeric in C1022 / R1022C3: got '#N/A'Expecting numeric in D1022 / R1022C4: got '#N/A'Expecting numeric in E1022 / R1022C5: got '#N/A'Expecting numeric in F1022 / R1022C6: got '#N/A'Expecting numeric in G1022 / R1022C7: got '#N/A'Expecting numeric in K1022 / R1022C11: got '#N/A'Expecting numeric in L1022 / R1022C12: got '#N/A'Expecting numeric in M1022 / R1022C13: got '#N/A'Expecting numeric in C1023 / R1023C3: got '#N/A'Expecting numeric in D1023 / R1023C4: got '#N/A'Expecting numeric in E1023 / R1023C5: got '#N/A'Expecting numeric in F1023 / R1023C6: got '#N/A'Expecting numeric in G1023 / R1023C7: got '#N/A'Expecting numeric in K1023 / R1023C11: got '#N/A'Expecting numeric in L1023 / R1023C12: got '#N/A'Expecting numeric in M1023 / R1023C13: got '#N/A'Expecting numeric in C1024 / R1024C3: got '#N/A'Expecting numeric in D1024 / R1024C4: got '#N/A'Expecting numeric in E1024 / R1024C5: got '#N/A'Expecting numeric in F1024 / R1024C6: got '#N/A'Expecting numeric in G1024 / R1024C7: got '#N/A'Expecting numeric in K1024 / R1024C11: got '#N/A'Expecting numeric in L1024 / R1024C12: got '#N/A'Expecting numeric in M1024 / R1024C13: got '#N/A'Expecting numeric in C1025 / R1025C3: got '#N/A'Expecting numeric in D1025 / R1025C4: got '#N/A'Expecting numeric in E1025 / R1025C5: got '#N/A'Expecting numeric in F1025 / R1025C6: got '#N/A'Expecting numeric in G1025 / R1025C7: got '#N/A'Expecting numeric in K1025 / R1025C11: got '#N/A'Expecting numeric in L1025 / R1025C12: got '#N/A'Expecting numeric in M1025 / R1025C13: got '#N/A'Expecting numeric in C1026 / R1026C3: got '#N/A'Expecting numeric in D1026 / R1026C4: got '#N/A'Expecting numeric in E1026 / R1026C5: got '#N/A'Expecting numeric in F1026 / R1026C6: got '#N/A'Expecting numeric in G1026 / R1026C7: got '#N/A'Expecting numeric in K1026 / R1026C11: got '#N/A'Expecting numeric in L1026 / R1026C12: got '#N/A'Expecting numeric in M1026 / R1026C13: got '#N/A'Expecting numeric in C1027 / R1027C3: got '#N/A'Expecting numeric in D1027 / R1027C4: got '#N/A'Expecting numeric in E1027 / R1027C5: got '#N/A'Expecting numeric in F1027 / R1027C6: got '#N/A'Expecting numeric in G1027 / R1027C7: got '#N/A'Expecting numeric in K1027 / R1027C11: got '#N/A'Expecting numeric in L1027 / R1027C12: got '#N/A'Expecting numeric in M1027 / R1027C13: got '#N/A'Expecting numeric in C1028 / R1028C3: got '#N/A'Expecting numeric in D1028 / R1028C4: got '#N/A'Expecting numeric in E1028 / R1028C5: got '#N/A'Expecting numeric in F1028 / R1028C6: got '#N/A'Expecting numeric in G1028 / R1028C7: got '#N/A'Expecting numeric in K1028 / R1028C11: got '#N/A'Expecting numeric in L1028 / R1028C12: got '#N/A'Expecting numeric in M1028 / R1028C13: got '#N/A'Expecting numeric in C1029 / R1029C3: got '#N/A'Expecting numeric in D1029 / R1029C4: got '#N/A'Expecting numeric in E1029 / R1029C5: got '#N/A'Expecting numeric in F1029 / R1029C6: got '#N/A'Expecting numeric in G1029 / R1029C7: got '#N/A'Expecting numeric in K1029 / R1029C11: got '#N/A'Expecting numeric in L1029 / R1029C12: got '#N/A'Expecting numeric in M1029 / R1029C13: got '#N/A'Expecting numeric in C1030 / R1030C3: got '#N/A'Expecting numeric in D1030 / R1030C4: got '#N/A'Expecting numeric in E1030 / R1030C5: got '#N/A'Expecting numeric in F1030 / R1030C6: got '#N/A'Expecting numeric in G1030 / R1030C7: got '#N/A'Expecting numeric in K1030 / R1030C11: got '#N/A'Expecting numeric in L1030 / R1030C12: got '#N/A'Expecting numeric in M1030 / R1030C13: got '#N/A'Expecting numeric in C1031 / R1031C3: got '#N/A'Expecting numeric in D1031 / R1031C4: got '#N/A'Expecting numeric in E1031 / R1031C5: got '#N/A'Expecting numeric in F1031 / R1031C6: got '#N/A'Expecting numeric in G1031 / R1031C7: got '#N/A'Expecting numeric in K1031 / R1031C11: got '#N/A'Expecting numeric in L1031 / R1031C12: got '#N/A'Expecting numeric in M1031 / R1031C13: got '#N/A'Expecting numeric in C1032 / R1032C3: got '#N/A'Expecting numeric in D1032 / R1032C4: got '#N/A'Expecting numeric in E1032 / R1032C5: got '#N/A'Expecting numeric in F1032 / R1032C6: got '#N/A'Expecting numeric in G1032 / R1032C7: got '#N/A'Expecting numeric in K1032 / R1032C11: got '#N/A'Expecting numeric in L1032 / R1032C12: got '#N/A'Expecting numeric in M1032 / R1032C13: got '#N/A'Expecting numeric in C1033 / R1033C3: got '#N/A'Expecting numeric in D1033 / R1033C4: got '#N/A'Expecting numeric in E1033 / R1033C5: got '#N/A'Expecting numeric in F1033 / R1033C6: got '#N/A'Expecting numeric in G1033 / R1033C7: got '#N/A'Expecting numeric in K1033 / R1033C11: got '#N/A'Expecting numeric in L1033 / R1033C12: got '#N/A'Expecting numeric in M1033 / R1033C13: got '#N/A'Expecting numeric in C1034 / R1034C3: got '#N/A'Expecting numeric in D1034 / R1034C4: got '#N/A'Expecting numeric in E1034 / R1034C5: got '#N/A'Expecting numeric in F1034 / R1034C6: got '#N/A'Expecting numeric in G1034 / R1034C7: got '#N/A'Expecting numeric in K1034 / R1034C11: got '#N/A'Expecting numeric in L1034 / R1034C12: got '#N/A'Expecting numeric in M1034 / R1034C13: got '#N/A'Expecting numeric in C1035 / R1035C3: got '#N/A'Expecting numeric in D1035 / R1035C4: got '#N/A'Expecting numeric in E1035 / R1035C5: got '#N/A'Expecting numeric in F1035 / R1035C6: got '#N/A'Expecting numeric in G1035 / R1035C7: got '#N/A'Expecting numeric in K1035 / R1035C11: got '#N/A'Expecting numeric in L1035 / R1035C12: got '#N/A'Expecting numeric in M1035 / R1035C13: got '#N/A'Expecting numeric in C1036 / R1036C3: got '#N/A'Expecting numeric in D1036 / R1036C4: got '#N/A'Expecting numeric in E1036 / R1036C5: got '#N/A'Expecting numeric in F1036 / R1036C6: got '#N/A'Expecting numeric in G1036 / R1036C7: got '#N/A'Expecting numeric in K1036 / R1036C11: got '#N/A'Expecting numeric in L1036 / R1036C12: got '#N/A'Expecting numeric in M1036 / R1036C13: got '#N/A'Expecting numeric in C1037 / R1037C3: got '#N/A'Expecting numeric in D1037 / R1037C4: got '#N/A'Expecting numeric in E1037 / R1037C5: got '#N/A'Expecting numeric in F1037 / R1037C6: got '#N/A'Expecting numeric in G1037 / R1037C7: got '#N/A'Expecting numeric in K1037 / R1037C11: got '#N/A'Expecting numeric in L1037 / R1037C12: got '#N/A'Expecting numeric in M1037 / R1037C13: got '#N/A'Expecting numeric in C1038 / R1038C3: got '#N/A'Expecting numeric in D1038 / R1038C4: got '#N/A'Expecting numeric in E1038 / R1038C5: got '#N/A'Expecting numeric in F1038 / R1038C6: got '#N/A'Expecting numeric in G1038 / R1038C7: got '#N/A'Expecting numeric in K1038 / R1038C11: got '#N/A'Expecting numeric in L1038 / R1038C12: got '#N/A'Expecting numeric in M1038 / R1038C13: got '#N/A'Expecting numeric in C1039 / R1039C3: got '#N/A'Expecting numeric in D1039 / R1039C4: got '#N/A'Expecting numeric in E1039 / R1039C5: got '#N/A'Expecting numeric in F1039 / R1039C6: got '#N/A'Expecting numeric in G1039 / R1039C7: got '#N/A'Expecting numeric in K1039 / R1039C11: got '#N/A'Expecting numeric in L1039 / R1039C12: got '#N/A'Expecting numeric in M1039 / R1039C13: got '#N/A'Expecting numeric in C1040 / R1040C3: got '#N/A'Expecting numeric in D1040 / R1040C4: got '#N/A'Expecting numeric in E1040 / R1040C5: got '#N/A'Expecting numeric in F1040 / R1040C6: got '#N/A'Expecting numeric in G1040 / R1040C7: got '#N/A'Expecting numeric in K1040 / R1040C11: got '#N/A'Expecting numeric in L1040 / R1040C12: got '#N/A'Expecting numeric in M1040 / R1040C13: got '#N/A'Expecting numeric in C1041 / R1041C3: got '#N/A'Expecting numeric in D1041 / R1041C4: got '#N/A'Expecting numeric in E1041 / R1041C5: got '#N/A'Expecting numeric in F1041 / R1041C6: got '#N/A'Expecting numeric in G1041 / R1041C7: got '#N/A'Expecting numeric in K1041 / R1041C11: got '#N/A'Expecting numeric in L1041 / R1041C12: got '#N/A'Expecting numeric in M1041 / R1041C13: got '#N/A'Expecting numeric in C1042 / R1042C3: got '#N/A'Expecting numeric in D1042 / R1042C4: got '#N/A'Expecting numeric in E1042 / R1042C5: got '#N/A'Expecting numeric in F1042 / R1042C6: got '#N/A'Expecting numeric in G1042 / R1042C7: got '#N/A'Expecting numeric in K1042 / R1042C11: got '#N/A'Expecting numeric in L1042 / R1042C12: got '#N/A'Expecting numeric in M1042 / R1042C13: got '#N/A'Expecting numeric in C1043 / R1043C3: got '#N/A'Expecting numeric in D1043 / R1043C4: got '#N/A'Expecting numeric in E1043 / R1043C5: got '#N/A'Expecting numeric in F1043 / R1043C6: got '#N/A'Expecting numeric in G1043 / R1043C7: got '#N/A'Expecting numeric in K1043 / R1043C11: got '#N/A'Expecting numeric in L1043 / R1043C12: got '#N/A'Expecting numeric in M1043 / R1043C13: got '#N/A'Expecting numeric in C1044 / R1044C3: got '#N/A'Expecting numeric in D1044 / R1044C4: got '#N/A'Expecting numeric in E1044 / R1044C5: got '#N/A'Expecting numeric in F1044 / R1044C6: got '#N/A'Expecting numeric in G1044 / R1044C7: got '#N/A'Expecting numeric in K1044 / R1044C11: got '#N/A'Expecting numeric in L1044 / R1044C12: got '#N/A'Expecting numeric in M1044 / R1044C13: got '#N/A'Expecting numeric in C1045 / R1045C3: got '#N/A'Expecting numeric in D1045 / R1045C4: got '#N/A'Expecting numeric in E1045 / R1045C5: got '#N/A'Expecting numeric in F1045 / R1045C6: got '#N/A'Expecting numeric in G1045 / R1045C7: got '#N/A'Expecting numeric in K1045 / R1045C11: got '#N/A'Expecting numeric in L1045 / R1045C12: got '#N/A'Expecting numeric in M1045 / R1045C13: got '#N/A'Expecting numeric in C1046 / R1046C3: got '#N/A'Expecting numeric in D1046 / R1046C4: got '#N/A'Expecting numeric in E1046 / R1046C5: got '#N/A'Expecting numeric in F1046 / R1046C6: got '#N/A'Expecting numeric in G1046 / R1046C7: got '#N/A'Expecting numeric in K1046 / R1046C11: got '#N/A'Expecting numeric in L1046 / R1046C12: got '#N/A'Expecting numeric in M1046 / R1046C13: got '#N/A'Expecting numeric in C1047 / R1047C3: got '#N/A'Expecting numeric in D1047 / R1047C4: got '#N/A'Expecting numeric in E1047 / R1047C5: got '#N/A'Expecting numeric in F1047 / R1047C6: got '#N/A'Expecting numeric in G1047 / R1047C7: got '#N/A'Expecting numeric in K1047 / R1047C11: got '#N/A'Expecting numeric in L1047 / R1047C12: got '#N/A'Expecting numeric in M1047 / R1047C13: got '#N/A'Expecting numeric in C1048 / R1048C3: got '#N/A'Expecting numeric in D1048 / R1048C4: got '#N/A'Expecting numeric in E1048 / R1048C5: got '#N/A'Expecting numeric in F1048 / R1048C6: got '#N/A'Expecting numeric in G1048 / R1048C7: got '#N/A'Expecting numeric in K1048 / R1048C11: got '#N/A'Expecting numeric in L1048 / R1048C12: got '#N/A'Expecting numeric in M1048 / R1048C13: got '#N/A'Expecting numeric in C1049 / R1049C3: got '#N/A'Expecting numeric in D1049 / R1049C4: got '#N/A'Expecting numeric in E1049 / R1049C5: got '#N/A'Expecting numeric in F1049 / R1049C6: got '#N/A'Expecting numeric in G1049 / R1049C7: got '#N/A'Expecting numeric in K1049 / R1049C11: got '#N/A'Expecting numeric in L1049 / R1049C12: got '#N/A'Expecting numeric in M1049 / R1049C13: got '#N/A'Expecting numeric in C1050 / R1050C3: got '#N/A'Expecting numeric in D1050 / R1050C4: got '#N/A'Expecting numeric in E1050 / R1050C5: got '#N/A'Expecting numeric in F1050 / R1050C6: got '#N/A'Expecting numeric in G1050 / R1050C7: got '#N/A'Expecting numeric in K1050 / R1050C11: got '#N/A'Expecting numeric in L1050 / R1050C12: got '#N/A'Expecting numeric in M1050 / R1050C13: got '#N/A'Expecting numeric in C1051 / R1051C3: got '#N/A'Expecting numeric in D1051 / R1051C4: got '#N/A'Expecting numeric in E1051 / R1051C5: got '#N/A'Expecting numeric in F1051 / R1051C6: got '#N/A'Expecting numeric in G1051 / R1051C7: got '#N/A'Expecting numeric in K1051 / R1051C11: got '#N/A'Expecting numeric in L1051 / R1051C12: got '#N/A'Expecting numeric in M1051 / R1051C13: got '#N/A'Expecting numeric in C1052 / R1052C3: got '#N/A'Expecting numeric in D1052 / R1052C4: got '#N/A'Expecting numeric in E1052 / R1052C5: got '#N/A'Expecting numeric in F1052 / R1052C6: got '#N/A'Expecting numeric in G1052 / R1052C7: got '#N/A'Expecting numeric in K1052 / R1052C11: got '#N/A'Expecting numeric in L1052 / R1052C12: got '#N/A'Expecting numeric in M1052 / R1052C13: got '#N/A'Expecting numeric in C1053 / R1053C3: got '#N/A'Expecting numeric in D1053 / R1053C4: got '#N/A'Expecting numeric in E1053 / R1053C5: got '#N/A'Expecting numeric in F1053 / R1053C6: got '#N/A'Expecting numeric in G1053 / R1053C7: got '#N/A'Expecting numeric in K1053 / R1053C11: got '#N/A'Expecting numeric in L1053 / R1053C12: got '#N/A'Expecting numeric in M1053 / R1053C13: got '#N/A'Expecting numeric in C1054 / R1054C3: got '#N/A'Expecting numeric in D1054 / R1054C4: got '#N/A'Expecting numeric in E1054 / R1054C5: got '#N/A'Expecting numeric in F1054 / R1054C6: got '#N/A'Expecting numeric in G1054 / R1054C7: got '#N/A'Expecting numeric in K1054 / R1054C11: got '#N/A'Expecting numeric in L1054 / R1054C12: got '#N/A'Expecting numeric in M1054 / R1054C13: got '#N/A'Expecting numeric in C1055 / R1055C3: got '#N/A'Expecting numeric in D1055 / R1055C4: got '#N/A'Expecting numeric in E1055 / R1055C5: got '#N/A'Expecting numeric in F1055 / R1055C6: got '#N/A'Expecting numeric in G1055 / R1055C7: got '#N/A'Expecting numeric in K1055 / R1055C11: got '#N/A'Expecting numeric in L1055 / R1055C12: got '#N/A'Expecting numeric in M1055 / R1055C13: got '#N/A'Expecting numeric in C1056 / R1056C3: got '#N/A'Expecting numeric in D1056 / R1056C4: got '#N/A'Expecting numeric in E1056 / R1056C5: got '#N/A'Expecting numeric in F1056 / R1056C6: got '#N/A'Expecting numeric in G1056 / R1056C7: got '#N/A'Expecting numeric in K1056 / R1056C11: got '#N/A'Expecting numeric in L1056 / R1056C12: got '#N/A'Expecting numeric in M1056 / R1056C13: got '#N/A'Expecting numeric in C1057 / R1057C3: got '#N/A'Expecting numeric in D1057 / R1057C4: got '#N/A'Expecting numeric in E1057 / R1057C5: got '#N/A'Expecting numeric in F1057 / R1057C6: got '#N/A'Expecting numeric in G1057 / R1057C7: got '#N/A'Expecting numeric in K1057 / R1057C11: got '#N/A'Expecting numeric in L1057 / R1057C12: got '#N/A'Expecting numeric in M1057 / R1057C13: got '#N/A'Expecting numeric in C1058 / R1058C3: got '#N/A'Expecting numeric in D1058 / R1058C4: got '#N/A'Expecting numeric in E1058 / R1058C5: got '#N/A'Expecting numeric in F1058 / R1058C6: got '#N/A'Expecting numeric in G1058 / R1058C7: got '#N/A'Expecting numeric in K1058 / R1058C11: got '#N/A'Expecting numeric in L1058 / R1058C12: got '#N/A'Expecting numeric in M1058 / R1058C13: got '#N/A'Expecting numeric in C1059 / R1059C3: got '#N/A'Expecting numeric in D1059 / R1059C4: got '#N/A'Expecting numeric in E1059 / R1059C5: got '#N/A'Expecting numeric in F1059 / R1059C6: got '#N/A'Expecting numeric in G1059 / R1059C7: got '#N/A'Expecting numeric in K1059 / R1059C11: got '#N/A'Expecting numeric in L1059 / R1059C12: got '#N/A'Expecting numeric in M1059 / R1059C13: got '#N/A'Expecting numeric in C1060 / R1060C3: got '#N/A'Expecting numeric in D1060 / R1060C4: got '#N/A'Expecting numeric in E1060 / R1060C5: got '#N/A'Expecting numeric in F1060 / R1060C6: got '#N/A'Expecting numeric in G1060 / R1060C7: got '#N/A'Expecting numeric in K1060 / R1060C11: got '#N/A'Expecting numeric in L1060 / R1060C12: got '#N/A'Expecting numeric in M1060 / R1060C13: got '#N/A'Expecting numeric in C1061 / R1061C3: got '#N/A'Expecting numeric in D1061 / R1061C4: got '#N/A'Expecting numeric in E1061 / R1061C5: got '#N/A'Expecting numeric in F1061 / R1061C6: got '#N/A'Expecting numeric in G1061 / R1061C7: got '#N/A'Expecting numeric in K1061 / R1061C11: got '#N/A'Expecting numeric in L1061 / R1061C12: got '#N/A'Expecting numeric in M1061 / R1061C13: got '#N/A'Expecting numeric in C1062 / R1062C3: got '#N/A'Expecting numeric in D1062 / R1062C4: got '#N/A'Expecting numeric in E1062 / R1062C5: got '#N/A'Expecting numeric in F1062 / R1062C6: got '#N/A'Expecting numeric in G1062 / R1062C7: got '#N/A'Expecting numeric in K1062 / R1062C11: got '#N/A'Expecting numeric in L1062 / R1062C12: got '#N/A'Expecting numeric in M1062 / R1062C13: got '#N/A'Expecting numeric in C1063 / R1063C3: got '#N/A'Expecting numeric in D1063 / R1063C4: got '#N/A'Expecting numeric in E1063 / R1063C5: got '#N/A'Expecting numeric in F1063 / R1063C6: got '#N/A'Expecting numeric in G1063 / R1063C7: got '#N/A'Expecting numeric in K1063 / R1063C11: got '#N/A'Expecting numeric in L1063 / R1063C12: got '#N/A'Expecting numeric in M1063 / R1063C13: got '#N/A'Expecting numeric in C1064 / R1064C3: got '#N/A'Expecting numeric in D1064 / R1064C4: got '#N/A'Expecting numeric in E1064 / R1064C5: got '#N/A'Expecting numeric in F1064 / R1064C6: got '#N/A'Expecting numeric in G1064 / R1064C7: got '#N/A'Expecting numeric in K1064 / R1064C11: got '#N/A'Expecting numeric in L1064 / R1064C12: got '#N/A'Expecting numeric in M1064 / R1064C13: got '#N/A'Expecting numeric in C1065 / R1065C3: got '#N/A'Expecting numeric in D1065 / R1065C4: got '#N/A'Expecting numeric in E1065 / R1065C5: got '#N/A'Expecting numeric in F1065 / R1065C6: got '#N/A'Expecting numeric in G1065 / R1065C7: got '#N/A'Expecting numeric in K1065 / R1065C11: got '#N/A'Expecting numeric in L1065 / R1065C12: got '#N/A'Expecting numeric in M1065 / R1065C13: got '#N/A'Expecting numeric in C1066 / R1066C3: got '#N/A'Expecting numeric in D1066 / R1066C4: got '#N/A'Expecting numeric in E1066 / R1066C5: got '#N/A'Expecting numeric in F1066 / R1066C6: got '#N/A'Expecting numeric in G1066 / R1066C7: got '#N/A'Expecting numeric in K1066 / R1066C11: got '#N/A'Expecting numeric in L1066 / R1066C12: got '#N/A'Expecting numeric in M1066 / R1066C13: got '#N/A'Expecting numeric in C1067 / R1067C3: got '#N/A'Expecting numeric in D1067 / R1067C4: got '#N/A'Expecting numeric in E1067 / R1067C5: got '#N/A'Expecting numeric in F1067 / R1067C6: got '#N/A'Expecting numeric in G1067 / R1067C7: got '#N/A'Expecting numeric in K1067 / R1067C11: got '#N/A'Expecting numeric in L1067 / R1067C12: got '#N/A'Expecting numeric in M1067 / R1067C13: got '#N/A'Expecting numeric in C1068 / R1068C3: got '#N/A'Expecting numeric in D1068 / R1068C4: got '#N/A'Expecting numeric in E1068 / R1068C5: got '#N/A'Expecting numeric in F1068 / R1068C6: got '#N/A'Expecting numeric in G1068 / R1068C7: got '#N/A'Expecting numeric in K1068 / R1068C11: got '#N/A'Expecting numeric in L1068 / R1068C12: got '#N/A'Expecting numeric in M1068 / R1068C13: got '#N/A'Expecting numeric in C1069 / R1069C3: got '#N/A'Expecting numeric in D1069 / R1069C4: got '#N/A'Expecting numeric in E1069 / R1069C5: got '#N/A'Expecting numeric in F1069 / R1069C6: got '#N/A'Expecting numeric in G1069 / R1069C7: got '#N/A'Expecting numeric in K1069 / R1069C11: got '#N/A'Expecting numeric in L1069 / R1069C12: got '#N/A'Expecting numeric in M1069 / R1069C13: got '#N/A'Expecting numeric in C1070 / R1070C3: got '#N/A'Expecting numeric in D1070 / R1070C4: got '#N/A'Expecting numeric in E1070 / R1070C5: got '#N/A'Expecting numeric in F1070 / R1070C6: got '#N/A'Expecting numeric in G1070 / R1070C7: got '#N/A'Expecting numeric in K1070 / R1070C11: got '#N/A'Expecting numeric in L1070 / R1070C12: got '#N/A'Expecting numeric in M1070 / R1070C13: got '#N/A'Expecting numeric in C1071 / R1071C3: got '#N/A'Expecting numeric in D1071 / R1071C4: got '#N/A'Expecting numeric in E1071 / R1071C5: got '#N/A'Expecting numeric in F1071 / R1071C6: got '#N/A'Expecting numeric in G1071 / R1071C7: got '#N/A'Expecting numeric in K1071 / R1071C11: got '#N/A'Expecting numeric in L1071 / R1071C12: got '#N/A'Expecting numeric in M1071 / R1071C13: got '#N/A'Expecting numeric in C1072 / R1072C3: got '#N/A'Expecting numeric in D1072 / R1072C4: got '#N/A'Expecting numeric in E1072 / R1072C5: got '#N/A'Expecting numeric in F1072 / R1072C6: got '#N/A'Expecting numeric in G1072 / R1072C7: got '#N/A'Expecting numeric in K1072 / R1072C11: got '#N/A'Expecting numeric in L1072 / R1072C12: got '#N/A'Expecting numeric in M1072 / R1072C13: got '#N/A'Expecting numeric in C1073 / R1073C3: got '#N/A'Expecting numeric in D1073 / R1073C4: got '#N/A'Expecting numeric in E1073 / R1073C5: got '#N/A'Expecting numeric in F1073 / R1073C6: got '#N/A'Expecting numeric in G1073 / R1073C7: got '#N/A'Expecting numeric in K1073 / R1073C11: got '#N/A'Expecting numeric in L1073 / R1073C12: got '#N/A'Expecting numeric in M1073 / R1073C13: got '#N/A'Expecting numeric in C1074 / R1074C3: got '#N/A'Expecting numeric in D1074 / R1074C4: got '#N/A'Expecting numeric in E1074 / R1074C5: got '#N/A'Expecting numeric in F1074 / R1074C6: got '#N/A'Expecting numeric in G1074 / R1074C7: got '#N/A'Expecting numeric in K1074 / R1074C11: got '#N/A'Expecting numeric in L1074 / R1074C12: got '#N/A'Expecting numeric in M1074 / R1074C13: got '#N/A'Expecting numeric in C1075 / R1075C3: got '#N/A'Expecting numeric in D1075 / R1075C4: got '#N/A'Expecting numeric in E1075 / R1075C5: got '#N/A'Expecting numeric in F1075 / R1075C6: got '#N/A'Expecting numeric in G1075 / R1075C7: got '#N/A'Expecting numeric in K1075 / R1075C11: got '#N/A'Expecting numeric in L1075 / R1075C12: got '#N/A'Expecting numeric in M1075 / R1075C13: got '#N/A'Expecting numeric in C1076 / R1076C3: got '#N/A'Expecting numeric in D1076 / R1076C4: got '#N/A'Expecting numeric in E1076 / R1076C5: got '#N/A'Expecting numeric in F1076 / R1076C6: got '#N/A'Expecting numeric in G1076 / R1076C7: got '#N/A'Expecting numeric in K1076 / R1076C11: got '#N/A'Expecting numeric in L1076 / R1076C12: got '#N/A'Expecting numeric in M1076 / R1076C13: got '#N/A'Expecting numeric in C1077 / R1077C3: got '#N/A'Expecting numeric in D1077 / R1077C4: got '#N/A'Expecting numeric in E1077 / R1077C5: got '#N/A'Expecting numeric in F1077 / R1077C6: got '#N/A'Expecting numeric in G1077 / R1077C7: got '#N/A'Expecting numeric in K1077 / R1077C11: got '#N/A'Expecting numeric in L1077 / R1077C12: got '#N/A'Expecting numeric in M1077 / R1077C13: got '#N/A'Expecting numeric in C1078 / R1078C3: got '#N/A'Expecting numeric in D1078 / R1078C4: got '#N/A'Expecting numeric in E1078 / R1078C5: got '#N/A'Expecting numeric in F1078 / R1078C6: got '#N/A'Expecting numeric in G1078 / R1078C7: got '#N/A'Expecting numeric in K1078 / R1078C11: got '#N/A'Expecting numeric in L1078 / R1078C12: got '#N/A'Expecting numeric in M1078 / R1078C13: got '#N/A'Expecting numeric in C1079 / R1079C3: got '#N/A'Expecting numeric in D1079 / R1079C4: got '#N/A'Expecting numeric in E1079 / R1079C5: got '#N/A'Expecting numeric in F1079 / R1079C6: got '#N/A'Expecting numeric in G1079 / R1079C7: got '#N/A'Expecting numeric in K1079 / R1079C11: got '#N/A'Expecting numeric in L1079 / R1079C12: got '#N/A'Expecting numeric in M1079 / R1079C13: got '#N/A'Expecting numeric in C1080 / R1080C3: got '#N/A'Expecting numeric in D1080 / R1080C4: got '#N/A'Expecting numeric in E1080 / R1080C5: got '#N/A'Expecting numeric in F1080 / R1080C6: got '#N/A'Expecting numeric in G1080 / R1080C7: got '#N/A'Expecting numeric in K1080 / R1080C11: got '#N/A'Expecting numeric in L1080 / R1080C12: got '#N/A'Expecting numeric in M1080 / R1080C13: got '#N/A'Expecting numeric in C1081 / R1081C3: got '#N/A'Expecting numeric in D1081 / R1081C4: got '#N/A'Expecting numeric in E1081 / R1081C5: got '#N/A'Expecting numeric in F1081 / R1081C6: got '#N/A'Expecting numeric in G1081 / R1081C7: got '#N/A'Expecting numeric in K1081 / R1081C11: got '#N/A'Expecting numeric in L1081 / R1081C12: got '#N/A'Expecting numeric in M1081 / R1081C13: got '#N/A'Expecting numeric in C1082 / R1082C3: got '#N/A'Expecting numeric in D1082 / R1082C4: got '#N/A'Expecting numeric in E1082 / R1082C5: got '#N/A'Expecting numeric in F1082 / R1082C6: got '#N/A'Expecting numeric in G1082 / R1082C7: got '#N/A'Expecting numeric in K1082 / R1082C11: got '#N/A'Expecting numeric in L1082 / R1082C12: got '#N/A'Expecting numeric in M1082 / R1082C13: got '#N/A'Expecting numeric in C1083 / R1083C3: got '#N/A'Expecting numeric in D1083 / R1083C4: got '#N/A'Expecting numeric in E1083 / R1083C5: got '#N/A'Expecting numeric in F1083 / R1083C6: got '#N/A'Expecting numeric in G1083 / R1083C7: got '#N/A'Expecting numeric in K1083 / R1083C11: got '#N/A'Expecting numeric in L1083 / R1083C12: got '#N/A'Expecting numeric in M1083 / R1083C13: got '#N/A'Expecting numeric in C1084 / R1084C3: got '#N/A'Expecting numeric in D1084 / R1084C4: got '#N/A'Expecting numeric in E1084 / R1084C5: got '#N/A'Expecting numeric in F1084 / R1084C6: got '#N/A'Expecting numeric in G1084 / R1084C7: got '#N/A'Expecting numeric in K1084 / R1084C11: got '#N/A'Expecting numeric in L1084 / R1084C12: got '#N/A'Expecting numeric in M1084 / R1084C13: got '#N/A'Expecting numeric in C1085 / R1085C3: got '#N/A'Expecting numeric in D1085 / R1085C4: got '#N/A'Expecting numeric in E1085 / R1085C5: got '#N/A'Expecting numeric in F1085 / R1085C6: got '#N/A'Expecting numeric in G1085 / R1085C7: got '#N/A'Expecting numeric in K1085 / R1085C11: got '#N/A'Expecting numeric in L1085 / R1085C12: got '#N/A'Expecting numeric in M1085 / R1085C13: got '#N/A'Expecting numeric in C1086 / R1086C3: got '#N/A'Expecting numeric in D1086 / R1086C4: got '#N/A'Expecting numeric in E1086 / R1086C5: got '#N/A'Expecting numeric in F1086 / R1086C6: got '#N/A'Expecting numeric in G1086 / R1086C7: got '#N/A'Expecting numeric in K1086 / R1086C11: got '#N/A'Expecting numeric in L1086 / R1086C12: got '#N/A'Expecting numeric in M1086 / R1086C13: got '#N/A'Expecting numeric in C1087 / R1087C3: got '#N/A'Expecting numeric in D1087 / R1087C4: got '#N/A'Expecting numeric in E1087 / R1087C5: got '#N/A'Expecting numeric in F1087 / R1087C6: got '#N/A'Expecting numeric in G1087 / R1087C7: got '#N/A'Expecting numeric in K1087 / R1087C11: got '#N/A'Expecting numeric in L1087 / R1087C12: got '#N/A'Expecting numeric in M1087 / R1087C13: got '#N/A'Expecting numeric in C1088 / R1088C3: got '#N/A'Expecting numeric in D1088 / R1088C4: got '#N/A'Expecting numeric in E1088 / R1088C5: got '#N/A'Expecting numeric in F1088 / R1088C6: got '#N/A'Expecting numeric in G1088 / R1088C7: got '#N/A'Expecting numeric in K1088 / R1088C11: got '#N/A'Expecting numeric in L1088 / R1088C12: got '#N/A'Expecting numeric in M1088 / R1088C13: got '#N/A'Expecting numeric in C1089 / R1089C3: got '#N/A'Expecting numeric in D1089 / R1089C4: got '#N/A'Expecting numeric in E1089 / R1089C5: got '#N/A'Expecting numeric in F1089 / R1089C6: got '#N/A'Expecting numeric in G1089 / R1089C7: got '#N/A'Expecting numeric in K1089 / R1089C11: got '#N/A'Expecting numeric in L1089 / R1089C12: got '#N/A'Expecting numeric in M1089 / R1089C13: got '#N/A'Expecting numeric in C1090 / R1090C3: got '#N/A'Expecting numeric in D1090 / R1090C4: got '#N/A'Expecting numeric in E1090 / R1090C5: got '#N/A'Expecting numeric in F1090 / R1090C6: got '#N/A'Expecting numeric in G1090 / R1090C7: got '#N/A'Expecting numeric in K1090 / R1090C11: got '#N/A'Expecting numeric in L1090 / R1090C12: got '#N/A'Expecting numeric in M1090 / R1090C13: got '#N/A'Expecting numeric in C1091 / R1091C3: got '#N/A'Expecting numeric in D1091 / R1091C4: got '#N/A'Expecting numeric in E1091 / R1091C5: got '#N/A'Expecting numeric in F1091 / R1091C6: got '#N/A'Expecting numeric in G1091 / R1091C7: got '#N/A'Expecting numeric in K1091 / R1091C11: got '#N/A'Expecting numeric in L1091 / R1091C12: got '#N/A'Expecting numeric in M1091 / R1091C13: got '#N/A'Expecting numeric in C1092 / R1092C3: got '#N/A'Expecting numeric in D1092 / R1092C4: got '#N/A'Expecting numeric in E1092 / R1092C5: got '#N/A'Expecting numeric in F1092 / R1092C6: got '#N/A'Expecting numeric in G1092 / R1092C7: got '#N/A'Expecting numeric in K1092 / R1092C11: got '#N/A'Expecting numeric in L1092 / R1092C12: got '#N/A'Expecting numeric in M1092 / R1092C13: got '#N/A'Expecting numeric in C1093 / R1093C3: got '#N/A'Expecting numeric in D1093 / R1093C4: got '#N/A'Expecting numeric in E1093 / R1093C5: got '#N/A'Expecting numeric in F1093 / R1093C6: got '#N/A'Expecting numeric in G1093 / R1093C7: got '#N/A'Expecting numeric in K1093 / R1093C11: got '#N/A'Expecting numeric in L1093 / R1093C12: got '#N/A'Expecting numeric in M1093 / R1093C13: got '#N/A'Expecting numeric in C1094 / R1094C3: got '#N/A'Expecting numeric in D1094 / R1094C4: got '#N/A'Expecting numeric in E1094 / R1094C5: got '#N/A'Expecting numeric in F1094 / R1094C6: got '#N/A'Expecting numeric in G1094 / R1094C7: got '#N/A'Expecting numeric in K1094 / R1094C11: got '#N/A'Expecting numeric in L1094 / R1094C12: got '#N/A'Expecting numeric in M1094 / R1094C13: got '#N/A'Expecting numeric in C1095 / R1095C3: got '#N/A'Expecting numeric in D1095 / R1095C4: got '#N/A'Expecting numeric in E1095 / R1095C5: got '#N/A'Expecting numeric in F1095 / R1095C6: got '#N/A'Expecting numeric in G1095 / R1095C7: got '#N/A'Expecting numeric in K1095 / R1095C11: got '#N/A'Expecting numeric in L1095 / R1095C12: got '#N/A'Expecting numeric in M1095 / R1095C13: got '#N/A'Expecting numeric in C1096 / R1096C3: got '#N/A'Expecting numeric in D1096 / R1096C4: got '#N/A'Expecting numeric in E1096 / R1096C5: got '#N/A'Expecting numeric in F1096 / R1096C6: got '#N/A'Expecting numeric in G1096 / R1096C7: got '#N/A'Expecting numeric in K1096 / R1096C11: got '#N/A'Expecting numeric in L1096 / R1096C12: got '#N/A'Expecting numeric in M1096 / R1096C13: got '#N/A'Expecting numeric in C1097 / R1097C3: got '#N/A'Expecting numeric in D1097 / R1097C4: got '#N/A'Expecting numeric in E1097 / R1097C5: got '#N/A'Expecting numeric in F1097 / R1097C6: got '#N/A'Expecting numeric in G1097 / R1097C7: got '#N/A'Expecting numeric in K1097 / R1097C11: got '#N/A'Expecting numeric in L1097 / R1097C12: got '#N/A'Expecting numeric in M1097 / R1097C13: got '#N/A'Expecting numeric in C1098 / R1098C3: got '#N/A'Expecting numeric in D1098 / R1098C4: got '#N/A'Expecting numeric in E1098 / R1098C5: got '#N/A'Expecting numeric in F1098 / R1098C6: got '#N/A'Expecting numeric in G1098 / R1098C7: got '#N/A'Expecting numeric in K1098 / R1098C11: got '#N/A'Expecting numeric in L1098 / R1098C12: got '#N/A'Expecting numeric in M1098 / R1098C13: got '#N/A'Expecting numeric in C1099 / R1099C3: got '#N/A'Expecting numeric in D1099 / R1099C4: got '#N/A'Expecting numeric in E1099 / R1099C5: got '#N/A'Expecting numeric in F1099 / R1099C6: got '#N/A'Expecting numeric in G1099 / R1099C7: got '#N/A'Expecting numeric in K1099 / R1099C11: got '#N/A'Expecting numeric in L1099 / R1099C12: got '#N/A'Expecting numeric in M1099 / R1099C13: got '#N/A'Expecting numeric in C1100 / R1100C3: got '#N/A'Expecting numeric in D1100 / R1100C4: got '#N/A'Expecting numeric in E1100 / R1100C5: got '#N/A'Expecting numeric in F1100 / R1100C6: got '#N/A'Expecting numeric in G1100 / R1100C7: got '#N/A'Expecting numeric in K1100 / R1100C11: got '#N/A'Expecting numeric in L1100 / R1100C12: got '#N/A'Expecting numeric in M1100 / R1100C13: got '#N/A'Expecting numeric in C1101 / R1101C3: got '#N/A'Expecting numeric in D1101 / R1101C4: got '#N/A'Expecting numeric in E1101 / R1101C5: got '#N/A'Expecting numeric in F1101 / R1101C6: got '#N/A'Expecting numeric in G1101 / R1101C7: got '#N/A'Expecting numeric in K1101 / R1101C11: got '#N/A'Expecting numeric in L1101 / R1101C12: got '#N/A'Expecting numeric in M1101 / R1101C13: got '#N/A'Expecting numeric in C1102 / R1102C3: got '#N/A'Expecting numeric in D1102 / R1102C4: got '#N/A'Expecting numeric in E1102 / R1102C5: got '#N/A'Expecting numeric in F1102 / R1102C6: got '#N/A'Expecting numeric in G1102 / R1102C7: got '#N/A'Expecting numeric in K1102 / R1102C11: got '#N/A'Expecting numeric in L1102 / R1102C12: got '#N/A'Expecting numeric in M1102 / R1102C13: got '#N/A'Expecting numeric in C1103 / R1103C3: got '#N/A'Expecting numeric in D1103 / R1103C4: got '#N/A'Expecting numeric in E1103 / R1103C5: got '#N/A'Expecting numeric in F1103 / R1103C6: got '#N/A'Expecting numeric in G1103 / R1103C7: got '#N/A'Expecting numeric in K1103 / R1103C11: got '#N/A'Expecting numeric in L1103 / R1103C12: got '#N/A'Expecting numeric in M1103 / R1103C13: got '#N/A'Expecting numeric in C1104 / R1104C3: got '#N/A'Expecting numeric in D1104 / R1104C4: got '#N/A'Expecting numeric in E1104 / R1104C5: got '#N/A'Expecting numeric in F1104 / R1104C6: got '#N/A'Expecting numeric in G1104 / R1104C7: got '#N/A'Expecting numeric in K1104 / R1104C11: got '#N/A'Expecting numeric in L1104 / R1104C12: got '#N/A'Expecting numeric in M1104 / R1104C13: got '#N/A'Expecting numeric in C1105 / R1105C3: got '#N/A'Expecting numeric in D1105 / R1105C4: got '#N/A'Expecting numeric in E1105 / R1105C5: got '#N/A'Expecting numeric in F1105 / R1105C6: got '#N/A'Expecting numeric in G1105 / R1105C7: got '#N/A'Expecting numeric in K1105 / R1105C11: got '#N/A'Expecting numeric in L1105 / R1105C12: got '#N/A'Expecting numeric in M1105 / R1105C13: got '#N/A'Expecting numeric in C1106 / R1106C3: got '#N/A'Expecting numeric in D1106 / R1106C4: got '#N/A'Expecting numeric in E1106 / R1106C5: got '#N/A'Expecting numeric in F1106 / R1106C6: got '#N/A'Expecting numeric in G1106 / R1106C7: got '#N/A'Expecting numeric in K1106 / R1106C11: got '#N/A'Expecting numeric in L1106 / R1106C12: got '#N/A'Expecting numeric in M1106 / R1106C13: got '#N/A'Expecting numeric in C1107 / R1107C3: got '#N/A'Expecting numeric in D1107 / R1107C4: got '#N/A'Expecting numeric in E1107 / R1107C5: got '#N/A'Expecting numeric in F1107 / R1107C6: got '#N/A'Expecting numeric in G1107 / R1107C7: got '#N/A'Expecting numeric in K1107 / R1107C11: got '#N/A'Expecting numeric in L1107 / R1107C12: got '#N/A'Expecting numeric in M1107 / R1107C13: got '#N/A'Expecting numeric in C1108 / R1108C3: got '#N/A'Expecting numeric in D1108 / R1108C4: got '#N/A'Expecting numeric in E1108 / R1108C5: got '#N/A'Expecting numeric in F1108 / R1108C6: got '#N/A'Expecting numeric in G1108 / R1108C7: got '#N/A'Expecting numeric in K1108 / R1108C11: got '#N/A'Expecting numeric in L1108 / R1108C12: got '#N/A'Expecting numeric in M1108 / R1108C13: got '#N/A'Expecting numeric in C1109 / R1109C3: got '#N/A'Expecting numeric in D1109 / R1109C4: got '#N/A'Expecting numeric in E1109 / R1109C5: got '#N/A'Expecting numeric in F1109 / R1109C6: got '#N/A'Expecting numeric in G1109 / R1109C7: got '#N/A'Expecting numeric in K1109 / R1109C11: got '#N/A'Expecting numeric in L1109 / R1109C12: got '#N/A'Expecting numeric in M1109 / R1109C13: got '#N/A'Expecting numeric in C1110 / R1110C3: got '#N/A'Expecting numeric in D1110 / R1110C4: got '#N/A'Expecting numeric in E1110 / R1110C5: got '#N/A'Expecting numeric in F1110 / R1110C6: got '#N/A'Expecting numeric in G1110 / R1110C7: got '#N/A'Expecting numeric in K1110 / R1110C11: got '#N/A'Expecting numeric in L1110 / R1110C12: got '#N/A'Expecting numeric in M1110 / R1110C13: got '#N/A'Expecting numeric in C1111 / R1111C3: got '#N/A'Expecting numeric in D1111 / R1111C4: got '#N/A'Expecting numeric in E1111 / R1111C5: got '#N/A'Expecting numeric in F1111 / R1111C6: got '#N/A'Expecting numeric in G1111 / R1111C7: got '#N/A'Expecting numeric in K1111 / R1111C11: got '#N/A'Expecting numeric in L1111 / R1111C12: got '#N/A'Expecting numeric in M1111 / R1111C13: got '#N/A'Expecting numeric in C1112 / R1112C3: got '#N/A'Expecting numeric in D1112 / R1112C4: got '#N/A'Expecting numeric in E1112 / R1112C5: got '#N/A'Expecting numeric in F1112 / R1112C6: got '#N/A'Expecting numeric in G1112 / R1112C7: got '#N/A'Expecting numeric in K1112 / R1112C11: got '#N/A'Expecting numeric in L1112 / R1112C12: got '#N/A'Expecting numeric in M1112 / R1112C13: got '#N/A'Expecting numeric in C1113 / R1113C3: got '#N/A'Expecting numeric in D1113 / R1113C4: got '#N/A'Expecting numeric in E1113 / R1113C5: got '#N/A'Expecting numeric in F1113 / R1113C6: got '#N/A'Expecting numeric in G1113 / R1113C7: got '#N/A'Expecting numeric in K1113 / R1113C11: got '#N/A'Expecting numeric in L1113 / R1113C12: got '#N/A'Expecting numeric in M1113 / R1113C13: got '#N/A'Expecting numeric in C1114 / R1114C3: got '#N/A'Expecting numeric in D1114 / R1114C4: got '#N/A'Expecting numeric in E1114 / R1114C5: got '#N/A'Expecting numeric in F1114 / R1114C6: got '#N/A'Expecting numeric in G1114 / R1114C7: got '#N/A'Expecting numeric in K1114 / R1114C11: got '#N/A'Expecting numeric in L1114 / R1114C12: got '#N/A'Expecting numeric in M1114 / R1114C13: got '#N/A'Expecting numeric in C1115 / R1115C3: got '#N/A'Expecting numeric in D1115 / R1115C4: got '#N/A'Expecting numeric in E1115 / R1115C5: got '#N/A'Expecting numeric in F1115 / R1115C6: got '#N/A'Expecting numeric in G1115 / R1115C7: got '#N/A'Expecting numeric in K1115 / R1115C11: got '#N/A'Expecting numeric in L1115 / R1115C12: got '#N/A'Expecting numeric in M1115 / R1115C13: got '#N/A'Expecting numeric in C1116 / R1116C3: got '#N/A'Expecting numeric in D1116 / R1116C4: got '#N/A'Expecting numeric in E1116 / R1116C5: got '#N/A'Expecting numeric in F1116 / R1116C6: got '#N/A'Expecting numeric in G1116 / R1116C7: got '#N/A'Expecting numeric in K1116 / R1116C11: got '#N/A'Expecting numeric in L1116 / R1116C12: got '#N/A'Expecting numeric in M1116 / R1116C13: got '#N/A'Expecting numeric in C1117 / R1117C3: got '#N/A'Expecting numeric in D1117 / R1117C4: got '#N/A'Expecting numeric in E1117 / R1117C5: got '#N/A'Expecting numeric in F1117 / R1117C6: got '#N/A'Expecting numeric in G1117 / R1117C7: got '#N/A'Expecting numeric in K1117 / R1117C11: got '#N/A'Expecting numeric in L1117 / R1117C12: got '#N/A'Expecting numeric in M1117 / R1117C13: got '#N/A'Expecting numeric in C1118 / R1118C3: got '#N/A'Expecting numeric in D1118 / R1118C4: got '#N/A'Expecting numeric in E1118 / R1118C5: got '#N/A'Expecting numeric in F1118 / R1118C6: got '#N/A'Expecting numeric in G1118 / R1118C7: got '#N/A'Expecting numeric in K1118 / R1118C11: got '#N/A'Expecting numeric in L1118 / R1118C12: got '#N/A'Expecting numeric in M1118 / R1118C13: got '#N/A'Expecting numeric in C1119 / R1119C3: got '#N/A'Expecting numeric in D1119 / R1119C4: got '#N/A'Expecting numeric in E1119 / R1119C5: got '#N/A'Expecting numeric in F1119 / R1119C6: got '#N/A'Expecting numeric in G1119 / R1119C7: got '#N/A'Expecting numeric in K1119 / R1119C11: got '#N/A'Expecting numeric in L1119 / R1119C12: got '#N/A'Expecting numeric in M1119 / R1119C13: got '#N/A'Expecting numeric in C1120 / R1120C3: got '#N/A'Expecting numeric in D1120 / R1120C4: got '#N/A'Expecting numeric in E1120 / R1120C5: got '#N/A'Expecting numeric in F1120 / R1120C6: got '#N/A'Expecting numeric in G1120 / R1120C7: got '#N/A'Expecting numeric in K1120 / R1120C11: got '#N/A'Expecting numeric in L1120 / R1120C12: got '#N/A'Expecting numeric in M1120 / R1120C13: got '#N/A'Expecting numeric in C1121 / R1121C3: got '#N/A'Expecting numeric in D1121 / R1121C4: got '#N/A'Expecting numeric in E1121 / R1121C5: got '#N/A'Expecting numeric in F1121 / R1121C6: got '#N/A'Expecting numeric in G1121 / R1121C7: got '#N/A'Expecting numeric in K1121 / R1121C11: got '#N/A'Expecting numeric in L1121 / R1121C12: got '#N/A'Expecting numeric in M1121 / R1121C13: got '#N/A'Expecting numeric in C1122 / R1122C3: got '#N/A'Expecting numeric in D1122 / R1122C4: got '#N/A'Expecting numeric in E1122 / R1122C5: got '#N/A'Expecting numeric in F1122 / R1122C6: got '#N/A'Expecting numeric in G1122 / R1122C7: got '#N/A'Expecting numeric in K1122 / R1122C11: got '#N/A'Expecting numeric in L1122 / R1122C12: got '#N/A'Expecting numeric in M1122 / R1122C13: got '#N/A'Expecting numeric in C1123 / R1123C3: got '#N/A'Expecting numeric in D1123 / R1123C4: got '#N/A'Expecting numeric in E1123 / R1123C5: got '#N/A'Expecting numeric in F1123 / R1123C6: got '#N/A'Expecting numeric in G1123 / R1123C7: got '#N/A'Expecting numeric in K1123 / R1123C11: got '#N/A'Expecting numeric in L1123 / R1123C12: got '#N/A'Expecting numeric in M1123 / R1123C13: got '#N/A'Expecting numeric in C1124 / R1124C3: got '#N/A'Expecting numeric in D1124 / R1124C4: got '#N/A'Expecting numeric in E1124 / R1124C5: got '#N/A'Expecting numeric in F1124 / R1124C6: got '#N/A'Expecting numeric in G1124 / R1124C7: got '#N/A'Expecting numeric in K1124 / R1124C11: got '#N/A'Expecting numeric in L1124 / R1124C12: got '#N/A'Expecting numeric in M1124 / R1124C13: got '#N/A'Expecting numeric in C1125 / R1125C3: got '#N/A'Expecting numeric in D1125 / R1125C4: got '#N/A'Expecting numeric in E1125 / R1125C5: got '#N/A'Expecting numeric in F1125 / R1125C6: got '#N/A'Expecting numeric in G1125 / R1125C7: got '#N/A'Expecting numeric in K1125 / R1125C11: got '#N/A'Expecting numeric in L1125 / R1125C12: got '#N/A'Expecting numeric in M1125 / R1125C13: got '#N/A'Expecting numeric in C1126 / R1126C3: got '#N/A'Expecting numeric in D1126 / R1126C4: got '#N/A'Expecting numeric in E1126 / R1126C5: got '#N/A'Expecting numeric in F1126 / R1126C6: got '#N/A'Expecting numeric in G1126 / R1126C7: got '#N/A'Expecting numeric in K1126 / R1126C11: got '#N/A'Expecting numeric in L1126 / R1126C12: got '#N/A'Expecting numeric in M1126 / R1126C13: got '#N/A'Expecting numeric in C1127 / R1127C3: got '#N/A'Expecting numeric in D1127 / R1127C4: got '#N/A'Expecting numeric in E1127 / R1127C5: got '#N/A'Expecting numeric in F1127 / R1127C6: got '#N/A'Expecting numeric in G1127 / R1127C7: got '#N/A'Expecting numeric in K1127 / R1127C11: got '#N/A'Expecting numeric in L1127 / R1127C12: got '#N/A'Expecting numeric in M1127 / R1127C13: got '#N/A'Expecting numeric in C1128 / R1128C3: got '#N/A'Expecting numeric in D1128 / R1128C4: got '#N/A'Expecting numeric in E1128 / R1128C5: got '#N/A'Expecting numeric in F1128 / R1128C6: got '#N/A'Expecting numeric in G1128 / R1128C7: got '#N/A'Expecting numeric in K1128 / R1128C11: got '#N/A'Expecting numeric in L1128 / R1128C12: got '#N/A'Expecting numeric in M1128 / R1128C13: got '#N/A'Expecting numeric in C1129 / R1129C3: got '#N/A'Expecting numeric in D1129 / R1129C4: got '#N/A'Expecting numeric in E1129 / R1129C5: got '#N/A'Expecting numeric in F1129 / R1129C6: got '#N/A'Expecting numeric in G1129 / R1129C7: got '#N/A'Expecting numeric in K1129 / R1129C11: got '#N/A'Expecting numeric in L1129 / R1129C12: got '#N/A'Expecting numeric in M1129 / R1129C13: got '#N/A'Expecting numeric in C1130 / R1130C3: got '#N/A'Expecting numeric in D1130 / R1130C4: got '#N/A'Expecting numeric in E1130 / R1130C5: got '#N/A'Expecting numeric in F1130 / R1130C6: got '#N/A'Expecting numeric in G1130 / R1130C7: got '#N/A'Expecting numeric in K1130 / R1130C11: got '#N/A'Expecting numeric in L1130 / R1130C12: got '#N/A'Expecting numeric in M1130 / R1130C13: got '#N/A'Expecting numeric in C1131 / R1131C3: got '#N/A'Expecting numeric in D1131 / R1131C4: got '#N/A'Expecting numeric in E1131 / R1131C5: got '#N/A'Expecting numeric in F1131 / R1131C6: got '#N/A'Expecting numeric in G1131 / R1131C7: got '#N/A'Expecting numeric in K1131 / R1131C11: got '#N/A'Expecting numeric in L1131 / R1131C12: got '#N/A'Expecting numeric in M1131 / R1131C13: got '#N/A'Expecting numeric in C1132 / R1132C3: got '#N/A'Expecting numeric in D1132 / R1132C4: got '#N/A'Expecting numeric in E1132 / R1132C5: got '#N/A'Expecting numeric in F1132 / R1132C6: got '#N/A'Expecting numeric in G1132 / R1132C7: got '#N/A'Expecting numeric in K1132 / R1132C11: got '#N/A'Expecting numeric in L1132 / R1132C12: got '#N/A'Expecting numeric in M1132 / R1132C13: got '#N/A'Expecting numeric in C1133 / R1133C3: got '#N/A'Expecting numeric in D1133 / R1133C4: got '#N/A'Expecting numeric in E1133 / R1133C5: got '#N/A'Expecting numeric in F1133 / R1133C6: got '#N/A'Expecting numeric in G1133 / R1133C7: got '#N/A'Expecting numeric in K1133 / R1133C11: got '#N/A'Expecting numeric in L1133 / R1133C12: got '#N/A'Expecting numeric in M1133 / R1133C13: got '#N/A'Expecting numeric in C1134 / R1134C3: got '#N/A'Expecting numeric in D1134 / R1134C4: got '#N/A'Expecting numeric in E1134 / R1134C5: got '#N/A'Expecting numeric in F1134 / R1134C6: got '#N/A'Expecting numeric in G1134 / R1134C7: got '#N/A'Expecting numeric in K1134 / R1134C11: got '#N/A'Expecting numeric in L1134 / R1134C12: got '#N/A'Expecting numeric in M1134 / R1134C13: got '#N/A'Expecting numeric in C1135 / R1135C3: got '#N/A'Expecting numeric in D1135 / R1135C4: got '#N/A'Expecting numeric in E1135 / R1135C5: got '#N/A'Expecting numeric in F1135 / R1135C6: got '#N/A'Expecting numeric in G1135 / R1135C7: got '#N/A'Expecting numeric in K1135 / R1135C11: got '#N/A'Expecting numeric in L1135 / R1135C12: got '#N/A'Expecting numeric in M1135 / R1135C13: got '#N/A'Expecting numeric in C1136 / R1136C3: got '#N/A'Expecting numeric in D1136 / R1136C4: got '#N/A'Expecting numeric in E1136 / R1136C5: got '#N/A'Expecting numeric in F1136 / R1136C6: got '#N/A'Expecting numeric in G1136 / R1136C7: got '#N/A'Expecting numeric in K1136 / R1136C11: got '#N/A'Expecting numeric in L1136 / R1136C12: got '#N/A'Expecting numeric in M1136 / R1136C13: got '#N/A'Expecting numeric in C1137 / R1137C3: got '#N/A'Expecting numeric in D1137 / R1137C4: got '#N/A'Expecting numeric in E1137 / R1137C5: got '#N/A'Expecting numeric in F1137 / R1137C6: got '#N/A'Expecting numeric in G1137 / R1137C7: got '#N/A'Expecting numeric in K1137 / R1137C11: got '#N/A'Expecting numeric in L1137 / R1137C12: got '#N/A'Expecting numeric in M1137 / R1137C13: got '#N/A'Expecting numeric in C1138 / R1138C3: got '#N/A'Expecting numeric in D1138 / R1138C4: got '#N/A'Expecting numeric in E1138 / R1138C5: got '#N/A'Expecting numeric in F1138 / R1138C6: got '#N/A'Expecting numeric in G1138 / R1138C7: got '#N/A'Expecting numeric in K1138 / R1138C11: got '#N/A'Expecting numeric in L1138 / R1138C12: got '#N/A'Expecting numeric in M1138 / R1138C13: got '#N/A'Expecting numeric in C1139 / R1139C3: got '#N/A'Expecting numeric in D1139 / R1139C4: got '#N/A'Expecting numeric in E1139 / R1139C5: got '#N/A'Expecting numeric in F1139 / R1139C6: got '#N/A'Expecting numeric in G1139 / R1139C7: got '#N/A'Expecting numeric in K1139 / R1139C11: got '#N/A'Expecting numeric in L1139 / R1139C12: got '#N/A'Expecting numeric in M1139 / R1139C13: got '#N/A'Expecting numeric in C1140 / R1140C3: got '#N/A'Expecting numeric in D1140 / R1140C4: got '#N/A'Expecting numeric in E1140 / R1140C5: got '#N/A'Expecting numeric in F1140 / R1140C6: got '#N/A'Expecting numeric in G1140 / R1140C7: got '#N/A'Expecting numeric in K1140 / R1140C11: got '#N/A'Expecting numeric in L1140 / R1140C12: got '#N/A'Expecting numeric in M1140 / R1140C13: got '#N/A'Expecting numeric in C1141 / R1141C3: got '#N/A'Expecting numeric in D1141 / R1141C4: got '#N/A'Expecting numeric in E1141 / R1141C5: got '#N/A'Expecting numeric in F1141 / R1141C6: got '#N/A'Expecting numeric in G1141 / R1141C7: got '#N/A'Expecting numeric in K1141 / R1141C11: got '#N/A'Expecting numeric in L1141 / R1141C12: got '#N/A'Expecting numeric in M1141 / R1141C13: got '#N/A'Expecting numeric in C1142 / R1142C3: got '#N/A'Expecting numeric in D1142 / R1142C4: got '#N/A'Expecting numeric in E1142 / R1142C5: got '#N/A'Expecting numeric in F1142 / R1142C6: got '#N/A'Expecting numeric in G1142 / R1142C7: got '#N/A'Expecting numeric in K1142 / R1142C11: got '#N/A'Expecting numeric in L1142 / R1142C12: got '#N/A'Expecting numeric in M1142 / R1142C13: got '#N/A'Expecting numeric in C1143 / R1143C3: got '#N/A'Expecting numeric in D1143 / R1143C4: got '#N/A'Expecting numeric in E1143 / R1143C5: got '#N/A'Expecting numeric in F1143 / R1143C6: got '#N/A'Expecting numeric in G1143 / R1143C7: got '#N/A'Expecting numeric in K1143 / R1143C11: got '#N/A'Expecting numeric in L1143 / R1143C12: got '#N/A'Expecting numeric in M1143 / R1143C13: got '#N/A'Expecting numeric in C1144 / R1144C3: got '#N/A'Expecting numeric in D1144 / R1144C4: got '#N/A'Expecting numeric in E1144 / R1144C5: got '#N/A'Expecting numeric in F1144 / R1144C6: got '#N/A'Expecting numeric in G1144 / R1144C7: got '#N/A'Expecting numeric in K1144 / R1144C11: got '#N/A'Expecting numeric in L1144 / R1144C12: got '#N/A'Expecting numeric in M1144 / R1144C13: got '#N/A'Expecting numeric in C1145 / R1145C3: got '#N/A'Expecting numeric in D1145 / R1145C4: got '#N/A'Expecting numeric in E1145 / R1145C5: got '#N/A'Expecting numeric in F1145 / R1145C6: got '#N/A'Expecting numeric in G1145 / R1145C7: got '#N/A'Expecting numeric in K1145 / R1145C11: got '#N/A'Expecting numeric in L1145 / R1145C12: got '#N/A'Expecting numeric in M1145 / R1145C13: got '#N/A'Expecting numeric in C1146 / R1146C3: got '#N/A'Expecting numeric in D1146 / R1146C4: got '#N/A'Expecting numeric in E1146 / R1146C5: got '#N/A'Expecting numeric in F1146 / R1146C6: got '#N/A'Expecting numeric in G1146 / R1146C7: got '#N/A'Expecting numeric in K1146 / R1146C11: got '#N/A'Expecting numeric in L1146 / R1146C12: got '#N/A'Expecting numeric in M1146 / R1146C13: got '#N/A'Expecting numeric in C1147 / R1147C3: got '#N/A'Expecting numeric in D1147 / R1147C4: got '#N/A'Expecting numeric in E1147 / R1147C5: got '#N/A'Expecting numeric in F1147 / R1147C6: got '#N/A'Expecting numeric in G1147 / R1147C7: got '#N/A'Expecting numeric in K1147 / R1147C11: got '#N/A'Expecting numeric in L1147 / R1147C12: got '#N/A'Expecting numeric in M1147 / R1147C13: got '#N/A'Expecting numeric in C1148 / R1148C3: got '#N/A'Expecting numeric in D1148 / R1148C4: got '#N/A'Expecting numeric in E1148 / R1148C5: got '#N/A'Expecting numeric in F1148 / R1148C6: got '#N/A'Expecting numeric in G1148 / R1148C7: got '#N/A'Expecting numeric in K1148 / R1148C11: got '#N/A'Expecting numeric in L1148 / R1148C12: got '#N/A'Expecting numeric in M1148 / R1148C13: got '#N/A'Expecting numeric in C1149 / R1149C3: got '#N/A'Expecting numeric in D1149 / R1149C4: got '#N/A'Expecting numeric in E1149 / R1149C5: got '#N/A'Expecting numeric in F1149 / R1149C6: got '#N/A'Expecting numeric in G1149 / R1149C7: got '#N/A'Expecting numeric in K1149 / R1149C11: got '#N/A'Expecting numeric in L1149 / R1149C12: got '#N/A'Expecting numeric in M1149 / R1149C13: got '#N/A'Expecting numeric in C1150 / R1150C3: got '#N/A'Expecting numeric in D1150 / R1150C4: got '#N/A'Expecting numeric in E1150 / R1150C5: got '#N/A'Expecting numeric in F1150 / R1150C6: got '#N/A'Expecting numeric in G1150 / R1150C7: got '#N/A'Expecting numeric in K1150 / R1150C11: got '#N/A'Expecting numeric in L1150 / R1150C12: got '#N/A'Expecting numeric in M1150 / R1150C13: got '#N/A'Expecting numeric in C1151 / R1151C3: got '#N/A'Expecting numeric in D1151 / R1151C4: got '#N/A'Expecting numeric in E1151 / R1151C5: got '#N/A'Expecting numeric in F1151 / R1151C6: got '#N/A'Expecting numeric in G1151 / R1151C7: got '#N/A'Expecting numeric in K1151 / R1151C11: got '#N/A'Expecting numeric in L1151 / R1151C12: got '#N/A'Expecting numeric in M1151 / R1151C13: got '#N/A'Expecting numeric in C1152 / R1152C3: got '#N/A'Expecting numeric in D1152 / R1152C4: got '#N/A'Expecting numeric in E1152 / R1152C5: got '#N/A'Expecting numeric in F1152 / R1152C6: got '#N/A'Expecting numeric in G1152 / R1152C7: got '#N/A'Expecting numeric in K1152 / R1152C11: got '#N/A'Expecting numeric in L1152 / R1152C12: got '#N/A'Expecting numeric in M1152 / R1152C13: got '#N/A'Expecting numeric in C1153 / R1153C3: got '#N/A'Expecting numeric in D1153 / R1153C4: got '#N/A'Expecting numeric in E1153 / R1153C5: got '#N/A'Expecting numeric in F1153 / R1153C6: got '#N/A'Expecting numeric in G1153 / R1153C7: got '#N/A'Expecting numeric in K1153 / R1153C11: got '#N/A'Expecting numeric in L1153 / R1153C12: got '#N/A'Expecting numeric in M1153 / R1153C13: got '#N/A'Expecting numeric in C1154 / R1154C3: got '#N/A'Expecting numeric in D1154 / R1154C4: got '#N/A'Expecting numeric in E1154 / R1154C5: got '#N/A'Expecting numeric in F1154 / R1154C6: got '#N/A'Expecting numeric in G1154 / R1154C7: got '#N/A'Expecting numeric in K1154 / R1154C11: got '#N/A'Expecting numeric in L1154 / R1154C12: got '#N/A'Expecting numeric in M1154 / R1154C13: got '#N/A'Expecting numeric in C1155 / R1155C3: got '#N/A'Expecting numeric in D1155 / R1155C4: got '#N/A'Expecting numeric in E1155 / R1155C5: got '#N/A'Expecting numeric in F1155 / R1155C6: got '#N/A'Expecting numeric in G1155 / R1155C7: got '#N/A'Expecting numeric in K1155 / R1155C11: got '#N/A'Expecting numeric in L1155 / R1155C12: got '#N/A'Expecting numeric in M1155 / R1155C13: got '#N/A'Expecting numeric in C1156 / R1156C3: got '#N/A'Expecting numeric in D1156 / R1156C4: got '#N/A'Expecting numeric in E1156 / R1156C5: got '#N/A'Expecting numeric in F1156 / R1156C6: got '#N/A'Expecting numeric in G1156 / R1156C7: got '#N/A'Expecting numeric in K1156 / R1156C11: got '#N/A'Expecting numeric in L1156 / R1156C12: got '#N/A'Expecting numeric in M1156 / R1156C13: got '#N/A'Expecting numeric in C1157 / R1157C3: got '#N/A'Expecting numeric in D1157 / R1157C4: got '#N/A'Expecting numeric in E1157 / R1157C5: got '#N/A'Expecting numeric in F1157 / R1157C6: got '#N/A'Expecting numeric in G1157 / R1157C7: got '#N/A'Expecting numeric in K1157 / R1157C11: got '#N/A'Expecting numeric in L1157 / R1157C12: got '#N/A'Expecting numeric in M1157 / R1157C13: got '#N/A'Expecting numeric in C1158 / R1158C3: got '#N/A'Expecting numeric in D1158 / R1158C4: got '#N/A'Expecting numeric in E1158 / R1158C5: got '#N/A'Expecting numeric in F1158 / R1158C6: got '#N/A'Expecting numeric in G1158 / R1158C7: got '#N/A'Expecting numeric in K1158 / R1158C11: got '#N/A'Expecting numeric in L1158 / R1158C12: got '#N/A'Expecting numeric in M1158 / R1158C13: got '#N/A'Expecting numeric in C1159 / R1159C3: got '#N/A'Expecting numeric in D1159 / R1159C4: got '#N/A'Expecting numeric in E1159 / R1159C5: got '#N/A'Expecting numeric in F1159 / R1159C6: got '#N/A'Expecting numeric in G1159 / R1159C7: got '#N/A'Expecting numeric in K1159 / R1159C11: got '#N/A'Expecting numeric in L1159 / R1159C12: got '#N/A'Expecting numeric in M1159 / R1159C13: got '#N/A'Expecting numeric in C1160 / R1160C3: got '#N/A'Expecting numeric in D1160 / R1160C4: got '#N/A'Expecting numeric in E1160 / R1160C5: got '#N/A'Expecting numeric in F1160 / R1160C6: got '#N/A'Expecting numeric in G1160 / R1160C7: got '#N/A'Expecting numeric in K1160 / R1160C11: got '#N/A'Expecting numeric in L1160 / R1160C12: got '#N/A'Expecting numeric in M1160 / R1160C13: got '#N/A'Expecting numeric in C1161 / R1161C3: got '#N/A'Expecting numeric in D1161 / R1161C4: got '#N/A'Expecting numeric in E1161 / R1161C5: got '#N/A'Expecting numeric in F1161 / R1161C6: got '#N/A'Expecting numeric in G1161 / R1161C7: got '#N/A'Expecting numeric in K1161 / R1161C11: got '#N/A'Expecting numeric in L1161 / R1161C12: got '#N/A'Expecting numeric in M1161 / R1161C13: got '#N/A'Expecting numeric in C1162 / R1162C3: got '#N/A'Expecting numeric in D1162 / R1162C4: got '#N/A'Expecting numeric in E1162 / R1162C5: got '#N/A'Expecting numeric in F1162 / R1162C6: got '#N/A'Expecting numeric in G1162 / R1162C7: got '#N/A'Expecting numeric in K1162 / R1162C11: got '#N/A'Expecting numeric in L1162 / R1162C12: got '#N/A'Expecting numeric in M1162 / R1162C13: got '#N/A'Expecting numeric in C1163 / R1163C3: got '#N/A'Expecting numeric in D1163 / R1163C4: got '#N/A'Expecting numeric in E1163 / R1163C5: got '#N/A'Expecting numeric in F1163 / R1163C6: got '#N/A'Expecting numeric in G1163 / R1163C7: got '#N/A'Expecting numeric in K1163 / R1163C11: got '#N/A'Expecting numeric in L1163 / R1163C12: got '#N/A'Expecting numeric in M1163 / R1163C13: got '#N/A'Expecting numeric in C1164 / R1164C3: got '#N/A'Expecting numeric in D1164 / R1164C4: got '#N/A'Expecting numeric in E1164 / R1164C5: got '#N/A'Expecting numeric in F1164 / R1164C6: got '#N/A'Expecting numeric in G1164 / R1164C7: got '#N/A'Expecting numeric in K1164 / R1164C11: got '#N/A'Expecting numeric in L1164 / R1164C12: got '#N/A'Expecting numeric in M1164 / R1164C13: got '#N/A'Expecting numeric in C1165 / R1165C3: got '#N/A'Expecting numeric in D1165 / R1165C4: got '#N/A'Expecting numeric in E1165 / R1165C5: got '#N/A'Expecting numeric in F1165 / R1165C6: got '#N/A'Expecting numeric in G1165 / R1165C7: got '#N/A'Expecting numeric in K1165 / R1165C11: got '#N/A'Expecting numeric in L1165 / R1165C12: got '#N/A'Expecting numeric in M1165 / R1165C13: got '#N/A'Expecting numeric in C1166 / R1166C3: got '#N/A'Expecting numeric in D1166 / R1166C4: got '#N/A'Expecting numeric in E1166 / R1166C5: got '#N/A'Expecting numeric in F1166 / R1166C6: got '#N/A'Expecting numeric in G1166 / R1166C7: got '#N/A'Expecting numeric in K1166 / R1166C11: got '#N/A'Expecting numeric in L1166 / R1166C12: got '#N/A'Expecting numeric in M1166 / R1166C13: got '#N/A'Expecting numeric in C1167 / R1167C3: got '#N/A'Expecting numeric in D1167 / R1167C4: got '#N/A'Expecting numeric in E1167 / R1167C5: got '#N/A'Expecting numeric in F1167 / R1167C6: got '#N/A'Expecting numeric in G1167 / R1167C7: got '#N/A'Expecting numeric in K1167 / R1167C11: got '#N/A'Expecting numeric in L1167 / R1167C12: got '#N/A'Expecting numeric in M1167 / R1167C13: got '#N/A'Expecting numeric in C1168 / R1168C3: got '#N/A'Expecting numeric in D1168 / R1168C4: got '#N/A'Expecting numeric in E1168 / R1168C5: got '#N/A'Expecting numeric in F1168 / R1168C6: got '#N/A'Expecting numeric in G1168 / R1168C7: got '#N/A'Expecting numeric in K1168 / R1168C11: got '#N/A'Expecting numeric in L1168 / R1168C12: got '#N/A'Expecting numeric in M1168 / R1168C13: got '#N/A'Expecting numeric in C1169 / R1169C3: got '#N/A'Expecting numeric in D1169 / R1169C4: got '#N/A'Expecting numeric in E1169 / R1169C5: got '#N/A'Expecting numeric in F1169 / R1169C6: got '#N/A'Expecting numeric in G1169 / R1169C7: got '#N/A'Expecting numeric in K1169 / R1169C11: got '#N/A'Expecting numeric in L1169 / R1169C12: got '#N/A'Expecting numeric in M1169 / R1169C13: got '#N/A'Expecting numeric in C1170 / R1170C3: got '#N/A'Expecting numeric in D1170 / R1170C4: got '#N/A'Expecting numeric in E1170 / R1170C5: got '#N/A'Expecting numeric in F1170 / R1170C6: got '#N/A'Expecting numeric in G1170 / R1170C7: got '#N/A'Expecting numeric in K1170 / R1170C11: got '#N/A'Expecting numeric in L1170 / R1170C12: got '#N/A'Expecting numeric in M1170 / R1170C13: got '#N/A'Expecting numeric in C1171 / R1171C3: got '#N/A'Expecting numeric in D1171 / R1171C4: got '#N/A'Expecting numeric in E1171 / R1171C5: got '#N/A'Expecting numeric in F1171 / R1171C6: got '#N/A'Expecting numeric in G1171 / R1171C7: got '#N/A'Expecting numeric in K1171 / R1171C11: got '#N/A'Expecting numeric in L1171 / R1171C12: got '#N/A'Expecting numeric in M1171 / R1171C13: got '#N/A'Expecting numeric in C1172 / R1172C3: got '#N/A'Expecting numeric in D1172 / R1172C4: got '#N/A'Expecting numeric in E1172 / R1172C5: got '#N/A'Expecting numeric in F1172 / R1172C6: got '#N/A'Expecting numeric in G1172 / R1172C7: got '#N/A'Expecting numeric in K1172 / R1172C11: got '#N/A'Expecting numeric in L1172 / R1172C12: got '#N/A'Expecting numeric in M1172 / R1172C13: got '#N/A'Expecting numeric in C1173 / R1173C3: got '#N/A'Expecting numeric in D1173 / R1173C4: got '#N/A'Expecting numeric in E1173 / R1173C5: got '#N/A'Expecting numeric in F1173 / R1173C6: got '#N/A'Expecting numeric in G1173 / R1173C7: got '#N/A'Expecting numeric in K1173 / R1173C11: got '#N/A'Expecting numeric in L1173 / R1173C12: got '#N/A'Expecting numeric in M1173 / R1173C13: got '#N/A'Expecting numeric in C1174 / R1174C3: got '#N/A'Expecting numeric in D1174 / R1174C4: got '#N/A'Expecting numeric in E1174 / R1174C5: got '#N/A'Expecting numeric in F1174 / R1174C6: got '#N/A'Expecting numeric in G1174 / R1174C7: got '#N/A'Expecting numeric in K1174 / R1174C11: got '#N/A'Expecting numeric in L1174 / R1174C12: got '#N/A'Expecting numeric in M1174 / R1174C13: got '#N/A'Expecting numeric in C1175 / R1175C3: got '#N/A'Expecting numeric in D1175 / R1175C4: got '#N/A'Expecting numeric in E1175 / R1175C5: got '#N/A'Expecting numeric in F1175 / R1175C6: got '#N/A'Expecting numeric in G1175 / R1175C7: got '#N/A'Expecting numeric in K1175 / R1175C11: got '#N/A'Expecting numeric in L1175 / R1175C12: got '#N/A'Expecting numeric in M1175 / R1175C13: got '#N/A'Expecting numeric in C1176 / R1176C3: got '#N/A'Expecting numeric in D1176 / R1176C4: got '#N/A'Expecting numeric in E1176 / R1176C5: got '#N/A'Expecting numeric in F1176 / R1176C6: got '#N/A'Expecting numeric in G1176 / R1176C7: got '#N/A'Expecting numeric in K1176 / R1176C11: got '#N/A'Expecting numeric in L1176 / R1176C12: got '#N/A'Expecting numeric in M1176 / R1176C13: got '#N/A'Expecting numeric in C1177 / R1177C3: got '#N/A'Expecting numeric in D1177 / R1177C4: got '#N/A'Expecting numeric in E1177 / R1177C5: got '#N/A'Expecting numeric in F1177 / R1177C6: got '#N/A'Expecting numeric in G1177 / R1177C7: got '#N/A'Expecting numeric in K1177 / R1177C11: got '#N/A'Expecting numeric in L1177 / R1177C12: got '#N/A'Expecting numeric in M1177 / R1177C13: got '#N/A'Expecting numeric in C1178 / R1178C3: got '#N/A'Expecting numeric in D1178 / R1178C4: got '#N/A'Expecting numeric in E1178 / R1178C5: got '#N/A'Expecting numeric in F1178 / R1178C6: got '#N/A'Expecting numeric in G1178 / R1178C7: got '#N/A'Expecting numeric in K1178 / R1178C11: got '#N/A'Expecting numeric in L1178 / R1178C12: got '#N/A'Expecting numeric in M1178 / R1178C13: got '#N/A'Expecting numeric in C1179 / R1179C3: got '#N/A'Expecting numeric in D1179 / R1179C4: got '#N/A'Expecting numeric in E1179 / R1179C5: got '#N/A'Expecting numeric in F1179 / R1179C6: got '#N/A'Expecting numeric in G1179 / R1179C7: got '#N/A'Expecting numeric in K1179 / R1179C11: got '#N/A'Expecting numeric in L1179 / R1179C12: got '#N/A'Expecting numeric in M1179 / R1179C13: got '#N/A'Expecting numeric in C1180 / R1180C3: got '#N/A'Expecting numeric in D1180 / R1180C4: got '#N/A'Expecting numeric in E1180 / R1180C5: got '#N/A'Expecting numeric in F1180 / R1180C6: got '#N/A'Expecting numeric in G1180 / R1180C7: got '#N/A'Expecting numeric in K1180 / R1180C11: got '#N/A'Expecting numeric in L1180 / R1180C12: got '#N/A'Expecting numeric in M1180 / R1180C13: got '#N/A'Expecting numeric in C1181 / R1181C3: got '#N/A'Expecting numeric in D1181 / R1181C4: got '#N/A'Expecting numeric in E1181 / R1181C5: got '#N/A'Expecting numeric in F1181 / R1181C6: got '#N/A'Expecting numeric in G1181 / R1181C7: got '#N/A'Expecting numeric in K1181 / R1181C11: got '#N/A'Expecting numeric in L1181 / R1181C12: got '#N/A'Expecting numeric in M1181 / R1181C13: got '#N/A'Expecting numeric in C1182 / R1182C3: got '#N/A'Expecting numeric in D1182 / R1182C4: got '#N/A'Expecting numeric in E1182 / R1182C5: got '#N/A'Expecting numeric in F1182 / R1182C6: got '#N/A'Expecting numeric in G1182 / R1182C7: got '#N/A'Expecting numeric in K1182 / R1182C11: got '#N/A'Expecting numeric in L1182 / R1182C12: got '#N/A'Expecting numeric in M1182 / R1182C13: got '#N/A'Expecting numeric in C1183 / R1183C3: got '#N/A'Expecting numeric in D1183 / R1183C4: got '#N/A'Expecting numeric in E1183 / R1183C5: got '#N/A'Expecting numeric in F1183 / R1183C6: got '#N/A'Expecting numeric in G1183 / R1183C7: got '#N/A'Expecting numeric in K1183 / R1183C11: got '#N/A'Expecting numeric in L1183 / R1183C12: got '#N/A'Expecting numeric in M1183 / R1183C13: got '#N/A'Expecting numeric in C1184 / R1184C3: got '#N/A'Expecting numeric in D1184 / R1184C4: got '#N/A'Expecting numeric in E1184 / R1184C5: got '#N/A'Expecting numeric in F1184 / R1184C6: got '#N/A'Expecting numeric in G1184 / R1184C7: got '#N/A'Expecting numeric in K1184 / R1184C11: got '#N/A'Expecting numeric in L1184 / R1184C12: got '#N/A'Expecting numeric in M1184 / R1184C13: got '#N/A'Expecting numeric in C1185 / R1185C3: got '#N/A'Expecting numeric in D1185 / R1185C4: got '#N/A'Expecting numeric in E1185 / R1185C5: got '#N/A'Expecting numeric in F1185 / R1185C6: got '#N/A'Expecting numeric in G1185 / R1185C7: got '#N/A'Expecting numeric in K1185 / R1185C11: got '#N/A'Expecting numeric in L1185 / R1185C12: got '#N/A'Expecting numeric in M1185 / R1185C13: got '#N/A'Expecting numeric in C1186 / R1186C3: got '#N/A'Expecting numeric in D1186 / R1186C4: got '#N/A'Expecting numeric in E1186 / R1186C5: got '#N/A'Expecting numeric in F1186 / R1186C6: got '#N/A'Expecting numeric in G1186 / R1186C7: got '#N/A'Expecting numeric in K1186 / R1186C11: got '#N/A'Expecting numeric in L1186 / R1186C12: got '#N/A'Expecting numeric in M1186 / R1186C13: got '#N/A'Expecting numeric in C1187 / R1187C3: got '#N/A'Expecting numeric in D1187 / R1187C4: got '#N/A'Expecting numeric in E1187 / R1187C5: got '#N/A'Expecting numeric in F1187 / R1187C6: got '#N/A'Expecting numeric in G1187 / R1187C7: got '#N/A'Expecting numeric in K1187 / R1187C11: got '#N/A'Expecting numeric in L1187 / R1187C12: got '#N/A'Expecting numeric in M1187 / R1187C13: got '#N/A'Expecting numeric in C1188 / R1188C3: got '#N/A'Expecting numeric in D1188 / R1188C4: got '#N/A'Expecting numeric in E1188 / R1188C5: got '#N/A'Expecting numeric in F1188 / R1188C6: got '#N/A'Expecting numeric in G1188 / R1188C7: got '#N/A'Expecting numeric in K1188 / R1188C11: got '#N/A'Expecting numeric in L1188 / R1188C12: got '#N/A'Expecting numeric in M1188 / R1188C13: got '#N/A'Expecting numeric in C1189 / R1189C3: got '#N/A'Expecting numeric in D1189 / R1189C4: got '#N/A'Expecting numeric in E1189 / R1189C5: got '#N/A'Expecting numeric in F1189 / R1189C6: got '#N/A'Expecting numeric in G1189 / R1189C7: got '#N/A'Expecting numeric in K1189 / R1189C11: got '#N/A'Expecting numeric in L1189 / R1189C12: got '#N/A'Expecting numeric in M1189 / R1189C13: got '#N/A'Expecting numeric in C1190 / R1190C3: got '#N/A'Expecting numeric in D1190 / R1190C4: got '#N/A'Expecting numeric in E1190 / R1190C5: got '#N/A'Expecting numeric in F1190 / R1190C6: got '#N/A'Expecting numeric in G1190 / R1190C7: got '#N/A'Expecting numeric in K1190 / R1190C11: got '#N/A'Expecting numeric in L1190 / R1190C12: got '#N/A'Expecting numeric in M1190 / R1190C13: got '#N/A'Expecting numeric in C1191 / R1191C3: got '#N/A'Expecting numeric in D1191 / R1191C4: got '#N/A'Expecting numeric in E1191 / R1191C5: got '#N/A'Expecting numeric in F1191 / R1191C6: got '#N/A'Expecting numeric in G1191 / R1191C7: got '#N/A'Expecting numeric in K1191 / R1191C11: got '#N/A'Expecting numeric in L1191 / R1191C12: got '#N/A'Expecting numeric in M1191 / R1191C13: got '#N/A'Expecting numeric in C1192 / R1192C3: got '#N/A'Expecting numeric in D1192 / R1192C4: got '#N/A'Expecting numeric in E1192 / R1192C5: got '#N/A'Expecting numeric in F1192 / R1192C6: got '#N/A'Expecting numeric in G1192 / R1192C7: got '#N/A'Expecting numeric in K1192 / R1192C11: got '#N/A'Expecting numeric in L1192 / R1192C12: got '#N/A'Expecting numeric in M1192 / R1192C13: got '#N/A'Expecting numeric in C1193 / R1193C3: got '#N/A'Expecting numeric in D1193 / R1193C4: got '#N/A'Expecting numeric in E1193 / R1193C5: got '#N/A'Expecting numeric in F1193 / R1193C6: got '#N/A'Expecting numeric in G1193 / R1193C7: got '#N/A'Expecting numeric in K1193 / R1193C11: got '#N/A'Expecting numeric in L1193 / R1193C12: got '#N/A'Expecting numeric in M1193 / R1193C13: got '#N/A'Expecting numeric in C1194 / R1194C3: got '#N/A'Expecting numeric in D1194 / R1194C4: got '#N/A'Expecting numeric in E1194 / R1194C5: got '#N/A'Expecting numeric in F1194 / R1194C6: got '#N/A'Expecting numeric in G1194 / R1194C7: got '#N/A'Expecting numeric in K1194 / R1194C11: got '#N/A'Expecting numeric in L1194 / R1194C12: got '#N/A'Expecting numeric in M1194 / R1194C13: got '#N/A'Expecting numeric in C1195 / R1195C3: got '#N/A'Expecting numeric in D1195 / R1195C4: got '#N/A'Expecting numeric in E1195 / R1195C5: got '#N/A'Expecting numeric in F1195 / R1195C6: got '#N/A'Expecting numeric in G1195 / R1195C7: got '#N/A'Expecting numeric in K1195 / R1195C11: got '#N/A'Expecting numeric in L1195 / R1195C12: got '#N/A'Expecting numeric in M1195 / R1195C13: got '#N/A'Expecting numeric in C1196 / R1196C3: got '#N/A'Expecting numeric in D1196 / R1196C4: got '#N/A'Expecting numeric in E1196 / R1196C5: got '#N/A'Expecting numeric in F1196 / R1196C6: got '#N/A'Expecting numeric in G1196 / R1196C7: got '#N/A'Expecting numeric in K1196 / R1196C11: got '#N/A'Expecting numeric in L1196 / R1196C12: got '#N/A'Expecting numeric in M1196 / R1196C13: got '#N/A'Expecting numeric in C1197 / R1197C3: got '#N/A'Expecting numeric in D1197 / R1197C4: got '#N/A'Expecting numeric in E1197 / R1197C5: got '#N/A'Expecting numeric in F1197 / R1197C6: got '#N/A'Expecting numeric in G1197 / R1197C7: got '#N/A'Expecting numeric in K1197 / R1197C11: got '#N/A'Expecting numeric in L1197 / R1197C12: got '#N/A'Expecting numeric in M1197 / R1197C13: got '#N/A'Expecting numeric in C1198 / R1198C3: got '#N/A'Expecting numeric in D1198 / R1198C4: got '#N/A'Expecting numeric in E1198 / R1198C5: got '#N/A'Expecting numeric in F1198 / R1198C6: got '#N/A'Expecting numeric in G1198 / R1198C7: got '#N/A'Expecting numeric in K1198 / R1198C11: got '#N/A'Expecting numeric in L1198 / R1198C12: got '#N/A'Expecting numeric in M1198 / R1198C13: got '#N/A'Expecting numeric in C1199 / R1199C3: got '#N/A'Expecting numeric in D1199 / R1199C4: got '#N/A'Expecting numeric in E1199 / R1199C5: got '#N/A'Expecting numeric in F1199 / R1199C6: got '#N/A'Expecting numeric in G1199 / R1199C7: got '#N/A'Expecting numeric in K1199 / R1199C11: got '#N/A'Expecting numeric in L1199 / R1199C12: got '#N/A'Expecting numeric in M1199 / R1199C13: got '#N/A'Expecting numeric in C1200 / R1200C3: got '#N/A'Expecting numeric in D1200 / R1200C4: got '#N/A'Expecting numeric in E1200 / R1200C5: got '#N/A'Expecting numeric in F1200 / R1200C6: got '#N/A'Expecting numeric in G1200 / R1200C7: got '#N/A'Expecting numeric in K1200 / R1200C11: got '#N/A'Expecting numeric in L1200 / R1200C12: got '#N/A'Expecting numeric in M1200 / R1200C13: got '#N/A'Expecting numeric in C1201 / R1201C3: got '#N/A'Expecting numeric in D1201 / R1201C4: got '#N/A'Expecting numeric in E1201 / R1201C5: got '#N/A'Expecting numeric in F1201 / R1201C6: got '#N/A'Expecting numeric in G1201 / R1201C7: got '#N/A'Expecting numeric in K1201 / R1201C11: got '#N/A'Expecting numeric in L1201 / R1201C12: got '#N/A'Expecting numeric in M1201 / R1201C13: got '#N/A'Expecting numeric in C1202 / R1202C3: got '#N/A'Expecting numeric in D1202 / R1202C4: got '#N/A'Expecting numeric in E1202 / R1202C5: got '#N/A'Expecting numeric in F1202 / R1202C6: got '#N/A'Expecting numeric in G1202 / R1202C7: got '#N/A'Expecting numeric in K1202 / R1202C11: got '#N/A'Expecting numeric in L1202 / R1202C12: got '#N/A'Expecting numeric in M1202 / R1202C13: got '#N/A'Expecting numeric in C1203 / R1203C3: got '#N/A'Expecting numeric in D1203 / R1203C4: got '#N/A'Expecting numeric in E1203 / R1203C5: got '#N/A'Expecting numeric in F1203 / R1203C6: got '#N/A'Expecting numeric in G1203 / R1203C7: got '#N/A'Expecting numeric in K1203 / R1203C11: got '#N/A'Expecting numeric in L1203 / R1203C12: got '#N/A'Expecting numeric in M1203 / R1203C13: got '#N/A'Expecting numeric in C1204 / R1204C3: got '#N/A'Expecting numeric in D1204 / R1204C4: got '#N/A'Expecting numeric in E1204 / R1204C5: got '#N/A'Expecting numeric in F1204 / R1204C6: got '#N/A'Expecting numeric in G1204 / R1204C7: got '#N/A'Expecting numeric in K1204 / R1204C11: got '#N/A'Expecting numeric in L1204 / R1204C12: got '#N/A'Expecting numeric in M1204 / R1204C13: got '#N/A'Expecting numeric in C1205 / R1205C3: got '#N/A'Expecting numeric in D1205 / R1205C4: got '#N/A'Expecting numeric in E1205 / R1205C5: got '#N/A'Expecting numeric in F1205 / R1205C6: got '#N/A'Expecting numeric in G1205 / R1205C7: got '#N/A'Expecting numeric in K1205 / R1205C11: got '#N/A'Expecting numeric in L1205 / R1205C12: got '#N/A'Expecting numeric in M1205 / R1205C13: got '#N/A'Expecting numeric in C1206 / R1206C3: got '#N/A'Expecting numeric in D1206 / R1206C4: got '#N/A'Expecting numeric in E1206 / R1206C5: got '#N/A'Expecting numeric in F1206 / R1206C6: got '#N/A'Expecting numeric in G1206 / R1206C7: got '#N/A'Expecting numeric in K1206 / R1206C11: got '#N/A'Expecting numeric in L1206 / R1206C12: got '#N/A'Expecting numeric in M1206 / R1206C13: got '#N/A'Expecting numeric in C1207 / R1207C3: got '#N/A'Expecting numeric in D1207 / R1207C4: got '#N/A'Expecting numeric in E1207 / R1207C5: got '#N/A'Expecting numeric in F1207 / R1207C6: got '#N/A'Expecting numeric in G1207 / R1207C7: got '#N/A'Expecting numeric in K1207 / R1207C11: got '#N/A'Expecting numeric in L1207 / R1207C12: got '#N/A'Expecting numeric in M1207 / R1207C13: got '#N/A'Expecting numeric in C1208 / R1208C3: got '#N/A'Expecting numeric in D1208 / R1208C4: got '#N/A'Expecting numeric in E1208 / R1208C5: got '#N/A'Expecting numeric in F1208 / R1208C6: got '#N/A'Expecting numeric in G1208 / R1208C7: got '#N/A'Expecting numeric in K1208 / R1208C11: got '#N/A'Expecting numeric in L1208 / R1208C12: got '#N/A'Expecting numeric in M1208 / R1208C13: got '#N/A'Expecting numeric in C1209 / R1209C3: got '#N/A'Expecting numeric in D1209 / R1209C4: got '#N/A'Expecting numeric in E1209 / R1209C5: got '#N/A'Expecting numeric in F1209 / R1209C6: got '#N/A'Expecting numeric in G1209 / R1209C7: got '#N/A'Expecting numeric in K1209 / R1209C11: got '#N/A'Expecting numeric in L1209 / R1209C12: got '#N/A'Expecting numeric in M1209 / R1209C13: got '#N/A'Expecting numeric in C1210 / R1210C3: got '#N/A'Expecting numeric in D1210 / R1210C4: got '#N/A'Expecting numeric in E1210 / R1210C5: got '#N/A'Expecting numeric in F1210 / R1210C6: got '#N/A'Expecting numeric in G1210 / R1210C7: got '#N/A'Expecting numeric in K1210 / R1210C11: got '#N/A'Expecting numeric in L1210 / R1210C12: got '#N/A'Expecting numeric in M1210 / R1210C13: got '#N/A'Expecting numeric in C1211 / R1211C3: got '#N/A'Expecting numeric in D1211 / R1211C4: got '#N/A'Expecting numeric in E1211 / R1211C5: got '#N/A'Expecting numeric in F1211 / R1211C6: got '#N/A'Expecting numeric in G1211 / R1211C7: got '#N/A'Expecting numeric in K1211 / R1211C11: got '#N/A'Expecting numeric in L1211 / R1211C12: got '#N/A'Expecting numeric in M1211 / R1211C13: got '#N/A'Expecting numeric in C1212 / R1212C3: got '#N/A'Expecting numeric in D1212 / R1212C4: got '#N/A'Expecting numeric in E1212 / R1212C5: got '#N/A'Expecting numeric in F1212 / R1212C6: got '#N/A'Expecting numeric in G1212 / R1212C7: got '#N/A'Expecting numeric in K1212 / R1212C11: got '#N/A'Expecting numeric in L1212 / R1212C12: got '#N/A'Expecting numeric in M1212 / R1212C13: got '#N/A'Expecting numeric in C1213 / R1213C3: got '#N/A'Expecting numeric in D1213 / R1213C4: got '#N/A'Expecting numeric in E1213 / R1213C5: got '#N/A'Expecting numeric in F1213 / R1213C6: got '#N/A'Expecting numeric in G1213 / R1213C7: got '#N/A'Expecting numeric in K1213 / R1213C11: got '#N/A'Expecting numeric in L1213 / R1213C12: got '#N/A'Expecting numeric in M1213 / R1213C13: got '#N/A'Expecting numeric in C1214 / R1214C3: got '#N/A'Expecting numeric in D1214 / R1214C4: got '#N/A'Expecting numeric in E1214 / R1214C5: got '#N/A'Expecting numeric in F1214 / R1214C6: got '#N/A'Expecting numeric in G1214 / R1214C7: got '#N/A'Expecting numeric in K1214 / R1214C11: got '#N/A'Expecting numeric in L1214 / R1214C12: got '#N/A'Expecting numeric in M1214 / R1214C13: got '#N/A'Expecting numeric in C1215 / R1215C3: got '#N/A'Expecting numeric in D1215 / R1215C4: got '#N/A'Expecting numeric in E1215 / R1215C5: got '#N/A'Expecting numeric in F1215 / R1215C6: got '#N/A'Expecting numeric in G1215 / R1215C7: got '#N/A'Expecting numeric in K1215 / R1215C11: got '#N/A'Expecting numeric in L1215 / R1215C12: got '#N/A'Expecting numeric in M1215 / R1215C13: got '#N/A'Expecting numeric in C1216 / R1216C3: got '#N/A'Expecting numeric in D1216 / R1216C4: got '#N/A'Expecting numeric in E1216 / R1216C5: got '#N/A'Expecting numeric in F1216 / R1216C6: got '#N/A'Expecting numeric in G1216 / R1216C7: got '#N/A'Expecting numeric in K1216 / R1216C11: got '#N/A'Expecting numeric in L1216 / R1216C12: got '#N/A'Expecting numeric in M1216 / R1216C13: got '#N/A'Expecting numeric in C1217 / R1217C3: got '#N/A'Expecting numeric in D1217 / R1217C4: got '#N/A'Expecting numeric in E1217 / R1217C5: got '#N/A'Expecting numeric in F1217 / R1217C6: got '#N/A'Expecting numeric in G1217 / R1217C7: got '#N/A'Expecting numeric in K1217 / R1217C11: got '#N/A'Expecting numeric in L1217 / R1217C12: got '#N/A'Expecting numeric in M1217 / R1217C13: got '#N/A'Expecting numeric in C1218 / R1218C3: got '#N/A'Expecting numeric in D1218 / R1218C4: got '#N/A'Expecting numeric in E1218 / R1218C5: got '#N/A'Expecting numeric in F1218 / R1218C6: got '#N/A'Expecting numeric in G1218 / R1218C7: got '#N/A'Expecting numeric in K1218 / R1218C11: got '#N/A'Expecting numeric in L1218 / R1218C12: got '#N/A'Expecting numeric in M1218 / R1218C13: got '#N/A'Expecting numeric in C1219 / R1219C3: got '#N/A'Expecting numeric in D1219 / R1219C4: got '#N/A'Expecting numeric in E1219 / R1219C5: got '#N/A'Expecting numeric in F1219 / R1219C6: got '#N/A'Expecting numeric in G1219 / R1219C7: got '#N/A'Expecting numeric in K1219 / R1219C11: got '#N/A'Expecting numeric in L1219 / R1219C12: got '#N/A'Expecting numeric in M1219 / R1219C13: got '#N/A'Expecting numeric in C1220 / R1220C3: got '#N/A'Expecting numeric in D1220 / R1220C4: got '#N/A'Expecting numeric in E1220 / R1220C5: got '#N/A'Expecting numeric in F1220 / R1220C6: got '#N/A'Expecting numeric in G1220 / R1220C7: got '#N/A'Expecting numeric in K1220 / R1220C11: got '#N/A'Expecting numeric in L1220 / R1220C12: got '#N/A'Expecting numeric in M1220 / R1220C13: got '#N/A'Expecting numeric in C1221 / R1221C3: got '#N/A'Expecting numeric in D1221 / R1221C4: got '#N/A'Expecting numeric in E1221 / R1221C5: got '#N/A'Expecting numeric in F1221 / R1221C6: got '#N/A'Expecting numeric in G1221 / R1221C7: got '#N/A'Expecting numeric in K1221 / R1221C11: got '#N/A'Expecting numeric in L1221 / R1221C12: got '#N/A'Expecting numeric in M1221 / R1221C13: got '#N/A'Expecting numeric in C1222 / R1222C3: got '#N/A'Expecting numeric in D1222 / R1222C4: got '#N/A'Expecting numeric in E1222 / R1222C5: got '#N/A'Expecting numeric in F1222 / R1222C6: got '#N/A'Expecting numeric in G1222 / R1222C7: got '#N/A'Expecting numeric in K1222 / R1222C11: got '#N/A'Expecting numeric in L1222 / R1222C12: got '#N/A'Expecting numeric in M1222 / R1222C13: got '#N/A'Expecting numeric in C1223 / R1223C3: got '#N/A'Expecting numeric in D1223 / R1223C4: got '#N/A'Expecting numeric in E1223 / R1223C5: got '#N/A'Expecting numeric in F1223 / R1223C6: got '#N/A'Expecting numeric in G1223 / R1223C7: got '#N/A'Expecting numeric in K1223 / R1223C11: got '#N/A'Expecting numeric in L1223 / R1223C12: got '#N/A'Expecting numeric in M1223 / R1223C13: got '#N/A'Expecting numeric in C1224 / R1224C3: got '#N/A'Expecting numeric in D1224 / R1224C4: got '#N/A'Expecting numeric in E1224 / R1224C5: got '#N/A'Expecting numeric in F1224 / R1224C6: got '#N/A'Expecting numeric in G1224 / R1224C7: got '#N/A'Expecting numeric in K1224 / R1224C11: got '#N/A'Expecting numeric in L1224 / R1224C12: got '#N/A'Expecting numeric in M1224 / R1224C13: got '#N/A'Expecting numeric in C1225 / R1225C3: got '#N/A'Expecting numeric in D1225 / R1225C4: got '#N/A'Expecting numeric in E1225 / R1225C5: got '#N/A'Expecting numeric in F1225 / R1225C6: got '#N/A'Expecting numeric in G1225 / R1225C7: got '#N/A'Expecting numeric in K1225 / R1225C11: got '#N/A'Expecting numeric in L1225 / R1225C12: got '#N/A'Expecting numeric in M1225 / R1225C13: got '#N/A'Expecting numeric in C1226 / R1226C3: got '#N/A'Expecting numeric in D1226 / R1226C4: got '#N/A'Expecting numeric in E1226 / R1226C5: got '#N/A'Expecting numeric in F1226 / R1226C6: got '#N/A'Expecting numeric in G1226 / R1226C7: got '#N/A'Expecting numeric in K1226 / R1226C11: got '#N/A'Expecting numeric in L1226 / R1226C12: got '#N/A'Expecting numeric in M1226 / R1226C13: got '#N/A'Expecting numeric in C1227 / R1227C3: got '#N/A'Expecting numeric in D1227 / R1227C4: got '#N/A'Expecting numeric in E1227 / R1227C5: got '#N/A'Expecting numeric in F1227 / R1227C6: got '#N/A'Expecting numeric in G1227 / R1227C7: got '#N/A'Expecting numeric in K1227 / R1227C11: got '#N/A'Expecting numeric in L1227 / R1227C12: got '#N/A'Expecting numeric in M1227 / R1227C13: got '#N/A'Expecting numeric in C1228 / R1228C3: got '#N/A'Expecting numeric in D1228 / R1228C4: got '#N/A'Expecting numeric in E1228 / R1228C5: got '#N/A'Expecting numeric in F1228 / R1228C6: got '#N/A'Expecting numeric in G1228 / R1228C7: got '#N/A'Expecting numeric in K1228 / R1228C11: got '#N/A'Expecting numeric in L1228 / R1228C12: got '#N/A'Expecting numeric in M1228 / R1228C13: got '#N/A'Expecting numeric in C1229 / R1229C3: got '#N/A'Expecting numeric in D1229 / R1229C4: got '#N/A'Expecting numeric in E1229 / R1229C5: got '#N/A'Expecting numeric in F1229 / R1229C6: got '#N/A'Expecting numeric in G1229 / R1229C7: got '#N/A'Expecting numeric in K1229 / R1229C11: got '#N/A'Expecting numeric in L1229 / R1229C12: got '#N/A'Expecting numeric in M1229 / R1229C13: got '#N/A'Expecting numeric in C1230 / R1230C3: got '#N/A'Expecting numeric in D1230 / R1230C4: got '#N/A'Expecting numeric in E1230 / R1230C5: got '#N/A'Expecting numeric in F1230 / R1230C6: got '#N/A'Expecting numeric in G1230 / R1230C7: got '#N/A'Expecting numeric in K1230 / R1230C11: got '#N/A'Expecting numeric in L1230 / R1230C12: got '#N/A'Expecting numeric in M1230 / R1230C13: got '#N/A'Expecting numeric in C1231 / R1231C3: got '#N/A'Expecting numeric in D1231 / R1231C4: got '#N/A'Expecting numeric in E1231 / R1231C5: got '#N/A'Expecting numeric in F1231 / R1231C6: got '#N/A'Expecting numeric in G1231 / R1231C7: got '#N/A'Expecting numeric in K1231 / R1231C11: got '#N/A'Expecting numeric in L1231 / R1231C12: got '#N/A'Expecting numeric in M1231 / R1231C13: got '#N/A'Expecting numeric in C1232 / R1232C3: got '#N/A'Expecting numeric in D1232 / R1232C4: got '#N/A'Expecting numeric in E1232 / R1232C5: got '#N/A'Expecting numeric in F1232 / R1232C6: got '#N/A'Expecting numeric in G1232 / R1232C7: got '#N/A'Expecting numeric in K1232 / R1232C11: got '#N/A'Expecting numeric in L1232 / R1232C12: got '#N/A'Expecting numeric in M1232 / R1232C13: got '#N/A'Expecting numeric in C1233 / R1233C3: got '#N/A'Expecting numeric in D1233 / R1233C4: got '#N/A'Expecting numeric in E1233 / R1233C5: got '#N/A'Expecting numeric in F1233 / R1233C6: got '#N/A'Expecting numeric in G1233 / R1233C7: got '#N/A'Expecting numeric in K1233 / R1233C11: got '#N/A'Expecting numeric in L1233 / R1233C12: got '#N/A'Expecting numeric in M1233 / R1233C13: got '#N/A'Expecting numeric in C1234 / R1234C3: got '#N/A'Expecting numeric in D1234 / R1234C4: got '#N/A'Expecting numeric in E1234 / R1234C5: got '#N/A'Expecting numeric in F1234 / R1234C6: got '#N/A'Expecting numeric in G1234 / R1234C7: got '#N/A'Expecting numeric in K1234 / R1234C11: got '#N/A'Expecting numeric in L1234 / R1234C12: got '#N/A'Expecting numeric in M1234 / R1234C13: got '#N/A'Expecting numeric in C1235 / R1235C3: got '#N/A'Expecting numeric in D1235 / R1235C4: got '#N/A'Expecting numeric in E1235 / R1235C5: got '#N/A'Expecting numeric in F1235 / R1235C6: got '#N/A'Expecting numeric in G1235 / R1235C7: got '#N/A'Expecting numeric in K1235 / R1235C11: got '#N/A'Expecting numeric in L1235 / R1235C12: got '#N/A'Expecting numeric in M1235 / R1235C13: got '#N/A'Expecting numeric in C1236 / R1236C3: got '#N/A'Expecting numeric in D1236 / R1236C4: got '#N/A'Expecting numeric in E1236 / R1236C5: got '#N/A'Expecting numeric in F1236 / R1236C6: got '#N/A'Expecting numeric in G1236 / R1236C7: got '#N/A'Expecting numeric in K1236 / R1236C11: got '#N/A'Expecting numeric in L1236 / R1236C12: got '#N/A'Expecting numeric in M1236 / R1236C13: got '#N/A'Expecting numeric in C1237 / R1237C3: got '#N/A'Expecting numeric in D1237 / R1237C4: got '#N/A'Expecting numeric in E1237 / R1237C5: got '#N/A'Expecting numeric in F1237 / R1237C6: got '#N/A'Expecting numeric in G1237 / R1237C7: got '#N/A'Expecting numeric in K1237 / R1237C11: got '#N/A'Expecting numeric in L1237 / R1237C12: got '#N/A'Expecting numeric in M1237 / R1237C13: got '#N/A'Expecting numeric in C1238 / R1238C3: got '#N/A'Expecting numeric in D1238 / R1238C4: got '#N/A'Expecting numeric in E1238 / R1238C5: got '#N/A'Expecting numeric in F1238 / R1238C6: got '#N/A'Expecting numeric in G1238 / R1238C7: got '#N/A'Expecting numeric in K1238 / R1238C11: got '#N/A'Expecting numeric in L1238 / R1238C12: got '#N/A'Expecting numeric in M1238 / R1238C13: got '#N/A'Expecting numeric in C1239 / R1239C3: got '#N/A'Expecting numeric in D1239 / R1239C4: got '#N/A'Expecting numeric in E1239 / R1239C5: got '#N/A'Expecting numeric in F1239 / R1239C6: got '#N/A'Expecting numeric in G1239 / R1239C7: got '#N/A'Expecting numeric in K1239 / R1239C11: got '#N/A'Expecting numeric in L1239 / R1239C12: got '#N/A'Expecting numeric in M1239 / R1239C13: got '#N/A'Expecting numeric in C1240 / R1240C3: got '#N/A'Expecting numeric in D1240 / R1240C4: got '#N/A'Expecting numeric in E1240 / R1240C5: got '#N/A'Expecting numeric in F1240 / R1240C6: got '#N/A'Expecting numeric in G1240 / R1240C7: got '#N/A'Expecting numeric in K1240 / R1240C11: got '#N/A'Expecting numeric in L1240 / R1240C12: got '#N/A'Expecting numeric in M1240 / R1240C13: got '#N/A'Expecting numeric in C1241 / R1241C3: got '#N/A'Expecting numeric in D1241 / R1241C4: got '#N/A'Expecting numeric in E1241 / R1241C5: got '#N/A'Expecting numeric in F1241 / R1241C6: got '#N/A'Expecting numeric in G1241 / R1241C7: got '#N/A'Expecting numeric in K1241 / R1241C11: got '#N/A'Expecting numeric in L1241 / R1241C12: got '#N/A'Expecting numeric in M1241 / R1241C13: got '#N/A'Expecting numeric in C1242 / R1242C3: got '#N/A'Expecting numeric in D1242 / R1242C4: got '#N/A'Expecting numeric in E1242 / R1242C5: got '#N/A'Expecting numeric in F1242 / R1242C6: got '#N/A'Expecting numeric in G1242 / R1242C7: got '#N/A'Expecting numeric in K1242 / R1242C11: got '#N/A'Expecting numeric in L1242 / R1242C12: got '#N/A'Expecting numeric in M1242 / R1242C13: got '#N/A'Expecting numeric in C1243 / R1243C3: got '#N/A'Expecting numeric in D1243 / R1243C4: got '#N/A'Expecting numeric in E1243 / R1243C5: got '#N/A'Expecting numeric in F1243 / R1243C6: got '#N/A'Expecting numeric in G1243 / R1243C7: got '#N/A'Expecting numeric in K1243 / R1243C11: got '#N/A'Expecting numeric in L1243 / R1243C12: got '#N/A'Expecting numeric in M1243 / R1243C13: got '#N/A'Expecting numeric in C1244 / R1244C3: got '#N/A'Expecting numeric in D1244 / R1244C4: got '#N/A'Expecting numeric in E1244 / R1244C5: got '#N/A'Expecting numeric in F1244 / R1244C6: got '#N/A'Expecting numeric in G1244 / R1244C7: got '#N/A'Expecting numeric in K1244 / R1244C11: got '#N/A'Expecting numeric in L1244 / R1244C12: got '#N/A'Expecting numeric in M1244 / R1244C13: got '#N/A'Expecting numeric in C1245 / R1245C3: got '#N/A'Expecting numeric in D1245 / R1245C4: got '#N/A'Expecting numeric in E1245 / R1245C5: got '#N/A'Expecting numeric in F1245 / R1245C6: got '#N/A'Expecting numeric in G1245 / R1245C7: got '#N/A'Expecting numeric in K1245 / R1245C11: got '#N/A'Expecting numeric in L1245 / R1245C12: got '#N/A'Expecting numeric in M1245 / R1245C13: got '#N/A'Expecting numeric in C1246 / R1246C3: got '#N/A'Expecting numeric in D1246 / R1246C4: got '#N/A'Expecting numeric in E1246 / R1246C5: got '#N/A'Expecting numeric in F1246 / R1246C6: got '#N/A'Expecting numeric in G1246 / R1246C7: got '#N/A'Expecting numeric in K1246 / R1246C11: got '#N/A'Expecting numeric in L1246 / R1246C12: got '#N/A'Expecting numeric in M1246 / R1246C13: got '#N/A'Expecting numeric in C1247 / R1247C3: got '#N/A'Expecting numeric in D1247 / R1247C4: got '#N/A'Expecting numeric in E1247 / R1247C5: got '#N/A'Expecting numeric in F1247 / R1247C6: got '#N/A'Expecting numeric in G1247 / R1247C7: got '#N/A'Expecting numeric in K1247 / R1247C11: got '#N/A'Expecting numeric in L1247 / R1247C12: got '#N/A'Expecting numeric in M1247 / R1247C13: got '#N/A'Expecting numeric in C1248 / R1248C3: got '#N/A'Expecting numeric in D1248 / R1248C4: got '#N/A'Expecting numeric in E1248 / R1248C5: got '#N/A'Expecting numeric in F1248 / R1248C6: got '#N/A'Expecting numeric in G1248 / R1248C7: got '#N/A'Expecting numeric in K1248 / R1248C11: got '#N/A'Expecting numeric in L1248 / R1248C12: got '#N/A'Expecting numeric in M1248 / R1248C13: got '#N/A'Expecting numeric in C1249 / R1249C3: got '#N/A'Expecting numeric in D1249 / R1249C4: got '#N/A'Expecting numeric in E1249 / R1249C5: got '#N/A'Expecting numeric in F1249 / R1249C6: got '#N/A'Expecting numeric in G1249 / R1249C7: got '#N/A'Expecting numeric in K1249 / R1249C11: got '#N/A'Expecting numeric in L1249 / R1249C12: got '#N/A'Expecting numeric in M1249 / R1249C13: got '#N/A'Expecting numeric in C1250 / R1250C3: got '#N/A'Expecting numeric in D1250 / R1250C4: got '#N/A'Expecting numeric in E1250 / R1250C5: got '#N/A'Expecting numeric in F1250 / R1250C6: got '#N/A'Expecting numeric in G1250 / R1250C7: got '#N/A'Expecting numeric in K1250 / R1250C11: got '#N/A'Expecting numeric in L1250 / R1250C12: got '#N/A'Expecting numeric in M1250 / R1250C13: got '#N/A'Expecting numeric in C1251 / R1251C3: got '#N/A'Expecting numeric in D1251 / R1251C4: got '#N/A'Expecting numeric in E1251 / R1251C5: got '#N/A'Expecting numeric in F1251 / R1251C6: got '#N/A'Expecting numeric in G1251 / R1251C7: got '#N/A'Expecting numeric in K1251 / R1251C11: got '#N/A'Expecting numeric in L1251 / R1251C12: got '#N/A'Expecting numeric in M1251 / R1251C13: got '#N/A'Expecting numeric in C1252 / R1252C3: got '#N/A'Expecting numeric in D1252 / R1252C4: got '#N/A'Expecting numeric in E1252 / R1252C5: got '#N/A'Expecting numeric in F1252 / R1252C6: got '#N/A'Expecting numeric in G1252 / R1252C7: got '#N/A'Expecting numeric in K1252 / R1252C11: got '#N/A'Expecting numeric in L1252 / R1252C12: got '#N/A'Expecting numeric in M1252 / R1252C13: got '#N/A'Expecting numeric in C1253 / R1253C3: got '#N/A'Expecting numeric in D1253 / R1253C4: got '#N/A'Expecting numeric in E1253 / R1253C5: got '#N/A'Expecting numeric in F1253 / R1253C6: got '#N/A'Expecting numeric in G1253 / R1253C7: got '#N/A'Expecting numeric in K1253 / R1253C11: got '#N/A'Expecting numeric in L1253 / R1253C12: got '#N/A'Expecting numeric in M1253 / R1253C13: got '#N/A'Expecting numeric in C1254 / R1254C3: got '#N/A'Expecting numeric in D1254 / R1254C4: got '#N/A'Expecting numeric in E1254 / R1254C5: got '#N/A'Expecting numeric in F1254 / R1254C6: got '#N/A'Expecting numeric in G1254 / R1254C7: got '#N/A'Expecting numeric in K1254 / R1254C11: got '#N/A'Expecting numeric in L1254 / R1254C12: got '#N/A'Expecting numeric in M1254 / R1254C13: got '#N/A'Expecting numeric in C1255 / R1255C3: got '#N/A'Expecting numeric in D1255 / R1255C4: got '#N/A'Expecting numeric in E1255 / R1255C5: got '#N/A'Expecting numeric in F1255 / R1255C6: got '#N/A'Expecting numeric in G1255 / R1255C7: got '#N/A'Expecting numeric in K1255 / R1255C11: got '#N/A'Expecting numeric in L1255 / R1255C12: got '#N/A'Expecting numeric in M1255 / R1255C13: got '#N/A'Expecting numeric in C1256 / R1256C3: got '#N/A'Expecting numeric in D1256 / R1256C4: got '#N/A'Expecting numeric in E1256 / R1256C5: got '#N/A'Expecting numeric in F1256 / R1256C6: got '#N/A'Expecting numeric in G1256 / R1256C7: got '#N/A'Expecting numeric in K1256 / R1256C11: got '#N/A'Expecting numeric in L1256 / R1256C12: got '#N/A'Expecting numeric in M1256 / R1256C13: got '#N/A'Expecting numeric in C1257 / R1257C3: got '#N/A'Expecting numeric in D1257 / R1257C4: got '#N/A'Expecting numeric in E1257 / R1257C5: got '#N/A'Expecting numeric in F1257 / R1257C6: got '#N/A'Expecting numeric in G1257 / R1257C7: got '#N/A'Expecting numeric in K1257 / R1257C11: got '#N/A'Expecting numeric in L1257 / R1257C12: got '#N/A'Expecting numeric in M1257 / R1257C13: got '#N/A'Expecting numeric in C1258 / R1258C3: got '#N/A'Expecting numeric in D1258 / R1258C4: got '#N/A'Expecting numeric in E1258 / R1258C5: got '#N/A'Expecting numeric in F1258 / R1258C6: got '#N/A'Expecting numeric in G1258 / R1258C7: got '#N/A'Expecting numeric in K1258 / R1258C11: got '#N/A'Expecting numeric in L1258 / R1258C12: got '#N/A'Expecting numeric in M1258 / R1258C13: got '#N/A'Expecting numeric in C1259 / R1259C3: got '#N/A'Expecting numeric in D1259 / R1259C4: got '#N/A'Expecting numeric in E1259 / R1259C5: got '#N/A'Expecting numeric in F1259 / R1259C6: got '#N/A'Expecting numeric in G1259 / R1259C7: got '#N/A'Expecting numeric in K1259 / R1259C11: got '#N/A'Expecting numeric in L1259 / R1259C12: got '#N/A'Expecting numeric in M1259 / R1259C13: got '#N/A'Expecting numeric in C1260 / R1260C3: got '#N/A'Expecting numeric in D1260 / R1260C4: got '#N/A'Expecting numeric in E1260 / R1260C5: got '#N/A'Expecting numeric in F1260 / R1260C6: got '#N/A'Expecting numeric in G1260 / R1260C7: got '#N/A'Expecting numeric in K1260 / R1260C11: got '#N/A'Expecting numeric in L1260 / R1260C12: got '#N/A'Expecting numeric in M1260 / R1260C13: got '#N/A'Expecting numeric in C1261 / R1261C3: got '#N/A'Expecting numeric in D1261 / R1261C4: got '#N/A'Expecting numeric in E1261 / R1261C5: got '#N/A'Expecting numeric in F1261 / R1261C6: got '#N/A'Expecting numeric in G1261 / R1261C7: got '#N/A'Expecting numeric in K1261 / R1261C11: got '#N/A'Expecting numeric in L1261 / R1261C12: got '#N/A'Expecting numeric in M1261 / R1261C13: got '#N/A'Expecting numeric in C1262 / R1262C3: got '#N/A'Expecting numeric in D1262 / R1262C4: got '#N/A'Expecting numeric in E1262 / R1262C5: got '#N/A'Expecting numeric in F1262 / R1262C6: got '#N/A'Expecting numeric in G1262 / R1262C7: got '#N/A'Expecting numeric in K1262 / R1262C11: got '#N/A'Expecting numeric in L1262 / R1262C12: got '#N/A'Expecting numeric in M1262 / R1262C13: got '#N/A'Expecting numeric in C1263 / R1263C3: got '#N/A'Expecting numeric in D1263 / R1263C4: got '#N/A'Expecting numeric in E1263 / R1263C5: got '#N/A'Expecting numeric in F1263 / R1263C6: got '#N/A'Expecting numeric in G1263 / R1263C7: got '#N/A'Expecting numeric in K1263 / R1263C11: got '#N/A'Expecting numeric in L1263 / R1263C12: got '#N/A'Expecting numeric in M1263 / R1263C13: got '#N/A'Expecting numeric in C1264 / R1264C3: got '#N/A'Expecting numeric in D1264 / R1264C4: got '#N/A'Expecting numeric in E1264 / R1264C5: got '#N/A'Expecting numeric in F1264 / R1264C6: got '#N/A'Expecting numeric in G1264 / R1264C7: got '#N/A'Expecting numeric in K1264 / R1264C11: got '#N/A'Expecting numeric in L1264 / R1264C12: got '#N/A'Expecting numeric in M1264 / R1264C13: got '#N/A'Expecting numeric in C1265 / R1265C3: got '#N/A'Expecting numeric in D1265 / R1265C4: got '#N/A'Expecting numeric in E1265 / R1265C5: got '#N/A'Expecting numeric in F1265 / R1265C6: got '#N/A'Expecting numeric in G1265 / R1265C7: got '#N/A'Expecting numeric in K1265 / R1265C11: got '#N/A'Expecting numeric in L1265 / R1265C12: got '#N/A'Expecting numeric in M1265 / R1265C13: got '#N/A'Expecting numeric in C1266 / R1266C3: got '#N/A'Expecting numeric in D1266 / R1266C4: got '#N/A'Expecting numeric in E1266 / R1266C5: got '#N/A'Expecting numeric in F1266 / R1266C6: got '#N/A'Expecting numeric in G1266 / R1266C7: got '#N/A'Expecting numeric in K1266 / R1266C11: got '#N/A'Expecting numeric in L1266 / R1266C12: got '#N/A'Expecting numeric in M1266 / R1266C13: got '#N/A'Expecting numeric in C1267 / R1267C3: got '#N/A'Expecting numeric in D1267 / R1267C4: got '#N/A'Expecting numeric in E1267 / R1267C5: got '#N/A'Expecting numeric in F1267 / R1267C6: got '#N/A'Expecting numeric in G1267 / R1267C7: got '#N/A'Expecting numeric in K1267 / R1267C11: got '#N/A'Expecting numeric in L1267 / R1267C12: got '#N/A'Expecting numeric in M1267 / R1267C13: got '#N/A'Expecting numeric in C1268 / R1268C3: got '#N/A'Expecting numeric in D1268 / R1268C4: got '#N/A'Expecting numeric in E1268 / R1268C5: got '#N/A'Expecting numeric in F1268 / R1268C6: got '#N/A'Expecting numeric in G1268 / R1268C7: got '#N/A'Expecting numeric in K1268 / R1268C11: got '#N/A'Expecting numeric in L1268 / R1268C12: got '#N/A'Expecting numeric in M1268 / R1268C13: got '#N/A'Expecting numeric in C1269 / R1269C3: got '#N/A'Expecting numeric in D1269 / R1269C4: got '#N/A'Expecting numeric in E1269 / R1269C5: got '#N/A'Expecting numeric in F1269 / R1269C6: got '#N/A'Expecting numeric in G1269 / R1269C7: got '#N/A'Expecting numeric in K1269 / R1269C11: got '#N/A'Expecting numeric in L1269 / R1269C12: got '#N/A'Expecting numeric in M1269 / R1269C13: got '#N/A'Expecting numeric in C1270 / R1270C3: got '#N/A'Expecting numeric in D1270 / R1270C4: got '#N/A'Expecting numeric in E1270 / R1270C5: got '#N/A'Expecting numeric in F1270 / R1270C6: got '#N/A'Expecting numeric in G1270 / R1270C7: got '#N/A'Expecting numeric in K1270 / R1270C11: got '#N/A'Expecting numeric in L1270 / R1270C12: got '#N/A'Expecting numeric in M1270 / R1270C13: got '#N/A'Expecting numeric in C1271 / R1271C3: got '#N/A'Expecting numeric in D1271 / R1271C4: got '#N/A'Expecting numeric in E1271 / R1271C5: got '#N/A'Expecting numeric in F1271 / R1271C6: got '#N/A'Expecting numeric in G1271 / R1271C7: got '#N/A'Expecting numeric in K1271 / R1271C11: got '#N/A'Expecting numeric in L1271 / R1271C12: got '#N/A'Expecting numeric in M1271 / R1271C13: got '#N/A'Expecting numeric in C1272 / R1272C3: got '#N/A'Expecting numeric in D1272 / R1272C4: got '#N/A'Expecting numeric in E1272 / R1272C5: got '#N/A'Expecting numeric in F1272 / R1272C6: got '#N/A'Expecting numeric in G1272 / R1272C7: got '#N/A'Expecting numeric in K1272 / R1272C11: got '#N/A'Expecting numeric in L1272 / R1272C12: got '#N/A'Expecting numeric in M1272 / R1272C13: got '#N/A'Expecting numeric in C1273 / R1273C3: got '#N/A'Expecting numeric in D1273 / R1273C4: got '#N/A'Expecting numeric in E1273 / R1273C5: got '#N/A'Expecting numeric in F1273 / R1273C6: got '#N/A'Expecting numeric in G1273 / R1273C7: got '#N/A'Expecting numeric in K1273 / R1273C11: got '#N/A'Expecting numeric in L1273 / R1273C12: got '#N/A'Expecting numeric in M1273 / R1273C13: got '#N/A'Expecting numeric in C1274 / R1274C3: got '#N/A'Expecting numeric in D1274 / R1274C4: got '#N/A'Expecting numeric in E1274 / R1274C5: got '#N/A'Expecting numeric in F1274 / R1274C6: got '#N/A'Expecting numeric in G1274 / R1274C7: got '#N/A'Expecting numeric in K1274 / R1274C11: got '#N/A'Expecting numeric in L1274 / R1274C12: got '#N/A'Expecting numeric in M1274 / R1274C13: got '#N/A'Expecting numeric in C1275 / R1275C3: got '#N/A'Expecting numeric in D1275 / R1275C4: got '#N/A'Expecting numeric in E1275 / R1275C5: got '#N/A'Expecting numeric in F1275 / R1275C6: got '#N/A'Expecting numeric in G1275 / R1275C7: got '#N/A'Expecting numeric in K1275 / R1275C11: got '#N/A'Expecting numeric in L1275 / R1275C12: got '#N/A'Expecting numeric in M1275 / R1275C13: got '#N/A'Expecting numeric in C1276 / R1276C3: got '#N/A'Expecting numeric in D1276 / R1276C4: got '#N/A'Expecting numeric in E1276 / R1276C5: got '#N/A'Expecting numeric in F1276 / R1276C6: got '#N/A'Expecting numeric in G1276 / R1276C7: got '#N/A'Expecting numeric in K1276 / R1276C11: got '#N/A'Expecting numeric in L1276 / R1276C12: got '#N/A'Expecting numeric in M1276 / R1276C13: got '#N/A'Expecting numeric in C1277 / R1277C3: got '#N/A'Expecting numeric in D1277 / R1277C4: got '#N/A'Expecting numeric in E1277 / R1277C5: got '#N/A'Expecting numeric in F1277 / R1277C6: got '#N/A'Expecting numeric in G1277 / R1277C7: got '#N/A'Expecting numeric in K1277 / R1277C11: got '#N/A'Expecting numeric in L1277 / R1277C12: got '#N/A'Expecting numeric in M1277 / R1277C13: got '#N/A'Expecting numeric in C1278 / R1278C3: got '#N/A'Expecting numeric in D1278 / R1278C4: got '#N/A'Expecting numeric in E1278 / R1278C5: got '#N/A'Expecting numeric in F1278 / R1278C6: got '#N/A'Expecting numeric in G1278 / R1278C7: got '#N/A'Expecting numeric in K1278 / R1278C11: got '#N/A'Expecting numeric in L1278 / R1278C12: got '#N/A'Expecting numeric in M1278 / R1278C13: got '#N/A'Expecting numeric in C1279 / R1279C3: got '#N/A'Expecting numeric in D1279 / R1279C4: got '#N/A'Expecting numeric in E1279 / R1279C5: got '#N/A'Expecting numeric in F1279 / R1279C6: got '#N/A'Expecting numeric in G1279 / R1279C7: got '#N/A'Expecting numeric in K1279 / R1279C11: got '#N/A'Expecting numeric in L1279 / R1279C12: got '#N/A'Expecting numeric in M1279 / R1279C13: got '#N/A'Expecting numeric in C1280 / R1280C3: got '#N/A'Expecting numeric in D1280 / R1280C4: got '#N/A'Expecting numeric in E1280 / R1280C5: got '#N/A'Expecting numeric in F1280 / R1280C6: got '#N/A'Expecting numeric in G1280 / R1280C7: got '#N/A'Expecting numeric in K1280 / R1280C11: got '#N/A'Expecting numeric in L1280 / R1280C12: got '#N/A'Expecting numeric in M1280 / R1280C13: got '#N/A'Expecting numeric in C1281 / R1281C3: got '#N/A'Expecting numeric in D1281 / R1281C4: got '#N/A'Expecting numeric in E1281 / R1281C5: got '#N/A'Expecting numeric in F1281 / R1281C6: got '#N/A'Expecting numeric in G1281 / R1281C7: got '#N/A'Expecting numeric in K1281 / R1281C11: got '#N/A'Expecting numeric in L1281 / R1281C12: got '#N/A'Expecting numeric in M1281 / R1281C13: got '#N/A'Expecting numeric in C1282 / R1282C3: got '#N/A'Expecting numeric in D1282 / R1282C4: got '#N/A'Expecting numeric in E1282 / R1282C5: got '#N/A'Expecting numeric in F1282 / R1282C6: got '#N/A'Expecting numeric in G1282 / R1282C7: got '#N/A'Expecting numeric in K1282 / R1282C11: got '#N/A'Expecting numeric in L1282 / R1282C12: got '#N/A'Expecting numeric in M1282 / R1282C13: got '#N/A'Expecting numeric in C1283 / R1283C3: got '#N/A'Expecting numeric in D1283 / R1283C4: got '#N/A'Expecting numeric in E1283 / R1283C5: got '#N/A'Expecting numeric in F1283 / R1283C6: got '#N/A'Expecting numeric in G1283 / R1283C7: got '#N/A'Expecting numeric in K1283 / R1283C11: got '#N/A'Expecting numeric in L1283 / R1283C12: got '#N/A'Expecting numeric in M1283 / R1283C13: got '#N/A'Expecting numeric in C1284 / R1284C3: got '#N/A'Expecting numeric in D1284 / R1284C4: got '#N/A'Expecting numeric in E1284 / R1284C5: got '#N/A'Expecting numeric in F1284 / R1284C6: got '#N/A'Expecting numeric in G1284 / R1284C7: got '#N/A'Expecting numeric in K1284 / R1284C11: got '#N/A'Expecting numeric in L1284 / R1284C12: got '#N/A'Expecting numeric in M1284 / R1284C13: got '#N/A'Expecting numeric in C1285 / R1285C3: got '#N/A'Expecting numeric in D1285 / R1285C4: got '#N/A'Expecting numeric in E1285 / R1285C5: got '#N/A'Expecting numeric in F1285 / R1285C6: got '#N/A'Expecting numeric in G1285 / R1285C7: got '#N/A'Expecting numeric in K1285 / R1285C11: got '#N/A'Expecting numeric in L1285 / R1285C12: got '#N/A'Expecting numeric in M1285 / R1285C13: got '#N/A'Expecting numeric in C1286 / R1286C3: got '#N/A'Expecting numeric in D1286 / R1286C4: got '#N/A'Expecting numeric in E1286 / R1286C5: got '#N/A'Expecting numeric in F1286 / R1286C6: got '#N/A'Expecting numeric in G1286 / R1286C7: got '#N/A'Expecting numeric in K1286 / R1286C11: got '#N/A'Expecting numeric in L1286 / R1286C12: got '#N/A'Expecting numeric in M1286 / R1286C13: got '#N/A'Expecting numeric in C1287 / R1287C3: got '#N/A'Expecting numeric in D1287 / R1287C4: got '#N/A'Expecting numeric in E1287 / R1287C5: got '#N/A'Expecting numeric in F1287 / R1287C6: got '#N/A'Expecting numeric in G1287 / R1287C7: got '#N/A'Expecting numeric in K1287 / R1287C11: got '#N/A'Expecting numeric in L1287 / R1287C12: got '#N/A'Expecting numeric in M1287 / R1287C13: got '#N/A'Expecting numeric in C1288 / R1288C3: got '#N/A'Expecting numeric in D1288 / R1288C4: got '#N/A'Expecting numeric in E1288 / R1288C5: got '#N/A'Expecting numeric in F1288 / R1288C6: got '#N/A'Expecting numeric in G1288 / R1288C7: got '#N/A'Expecting numeric in K1288 / R1288C11: got '#N/A'Expecting numeric in L1288 / R1288C12: got '#N/A'Expecting numeric in M1288 / R1288C13: got '#N/A'Expecting numeric in C1289 / R1289C3: got '#N/A'Expecting numeric in D1289 / R1289C4: got '#N/A'Expecting numeric in E1289 / R1289C5: got '#N/A'Expecting numeric in F1289 / R1289C6: got '#N/A'Expecting numeric in G1289 / R1289C7: got '#N/A'Expecting numeric in K1289 / R1289C11: got '#N/A'Expecting numeric in L1289 / R1289C12: got '#N/A'Expecting numeric in M1289 / R1289C13: got '#N/A'Expecting numeric in C1290 / R1290C3: got '#N/A'Expecting numeric in D1290 / R1290C4: got '#N/A'Expecting numeric in E1290 / R1290C5: got '#N/A'Expecting numeric in F1290 / R1290C6: got '#N/A'Expecting numeric in G1290 / R1290C7: got '#N/A'Expecting numeric in K1290 / R1290C11: got '#N/A'Expecting numeric in L1290 / R1290C12: got '#N/A'Expecting numeric in M1290 / R1290C13: got '#N/A'Expecting numeric in C1291 / R1291C3: got '#N/A'Expecting numeric in D1291 / R1291C4: got '#N/A'Expecting numeric in E1291 / R1291C5: got '#N/A'Expecting numeric in F1291 / R1291C6: got '#N/A'Expecting numeric in G1291 / R1291C7: got '#N/A'Expecting numeric in K1291 / R1291C11: got '#N/A'Expecting numeric in L1291 / R1291C12: got '#N/A'Expecting numeric in M1291 / R1291C13: got '#N/A'Expecting numeric in C1292 / R1292C3: got '#N/A'Expecting numeric in D1292 / R1292C4: got '#N/A'Expecting numeric in E1292 / R1292C5: got '#N/A'Expecting numeric in F1292 / R1292C6: got '#N/A'Expecting numeric in G1292 / R1292C7: got '#N/A'Expecting numeric in K1292 / R1292C11: got '#N/A'Expecting numeric in L1292 / R1292C12: got '#N/A'Expecting numeric in M1292 / R1292C13: got '#N/A'Expecting numeric in C1293 / R1293C3: got '#N/A'Expecting numeric in D1293 / R1293C4: got '#N/A'Expecting numeric in E1293 / R1293C5: got '#N/A'Expecting numeric in F1293 / R1293C6: got '#N/A'Expecting numeric in G1293 / R1293C7: got '#N/A'Expecting numeric in K1293 / R1293C11: got '#N/A'Expecting numeric in L1293 / R1293C12: got '#N/A'Expecting numeric in M1293 / R1293C13: got '#N/A'Expecting numeric in C1294 / R1294C3: got '#N/A'Expecting numeric in D1294 / R1294C4: got '#N/A'Expecting numeric in E1294 / R1294C5: got '#N/A'Expecting numeric in F1294 / R1294C6: got '#N/A'Expecting numeric in G1294 / R1294C7: got '#N/A'Expecting numeric in K1294 / R1294C11: got '#N/A'Expecting numeric in L1294 / R1294C12: got '#N/A'Expecting numeric in M1294 / R1294C13: got '#N/A'Expecting numeric in C1295 / R1295C3: got '#N/A'Expecting numeric in D1295 / R1295C4: got '#N/A'Expecting numeric in E1295 / R1295C5: got '#N/A'Expecting numeric in F1295 / R1295C6: got '#N/A'Expecting numeric in G1295 / R1295C7: got '#N/A'Expecting numeric in K1295 / R1295C11: got '#N/A'Expecting numeric in L1295 / R1295C12: got '#N/A'Expecting numeric in M1295 / R1295C13: got '#N/A'Expecting numeric in C1296 / R1296C3: got '#N/A'Expecting numeric in D1296 / R1296C4: got '#N/A'Expecting numeric in E1296 / R1296C5: got '#N/A'Expecting numeric in F1296 / R1296C6: got '#N/A'Expecting numeric in G1296 / R1296C7: got '#N/A'Expecting numeric in K1296 / R1296C11: got '#N/A'Expecting numeric in L1296 / R1296C12: got '#N/A'Expecting numeric in M1296 / R1296C13: got '#N/A'Expecting numeric in C1297 / R1297C3: got '#N/A'Expecting numeric in D1297 / R1297C4: got '#N/A'Expecting numeric in E1297 / R1297C5: got '#N/A'Expecting numeric in F1297 / R1297C6: got '#N/A'Expecting numeric in G1297 / R1297C7: got '#N/A'Expecting numeric in K1297 / R1297C11: got '#N/A'Expecting numeric in L1297 / R1297C12: got '#N/A'Expecting numeric in M1297 / R1297C13: got '#N/A'Expecting numeric in C1298 / R1298C3: got '#N/A'Expecting numeric in D1298 / R1298C4: got '#N/A'Expecting numeric in E1298 / R1298C5: got '#N/A'Expecting numeric in F1298 / R1298C6: got '#N/A'Expecting numeric in G1298 / R1298C7: got '#N/A'Expecting numeric in K1298 / R1298C11: got '#N/A'Expecting numeric in L1298 / R1298C12: got '#N/A'Expecting numeric in M1298 / R1298C13: got '#N/A'Expecting numeric in C1299 / R1299C3: got '#N/A'Expecting numeric in D1299 / R1299C4: got '#N/A'Expecting numeric in E1299 / R1299C5: got '#N/A'Expecting numeric in F1299 / R1299C6: got '#N/A'Expecting numeric in G1299 / R1299C7: got '#N/A'Expecting numeric in K1299 / R1299C11: got '#N/A'Expecting numeric in L1299 / R1299C12: got '#N/A'Expecting numeric in M1299 / R1299C13: got '#N/A'Expecting numeric in C1300 / R1300C3: got '#N/A'Expecting numeric in D1300 / R1300C4: got '#N/A'Expecting numeric in E1300 / R1300C5: got '#N/A'Expecting numeric in F1300 / R1300C6: got '#N/A'Expecting numeric in G1300 / R1300C7: got '#N/A'Expecting numeric in K1300 / R1300C11: got '#N/A'Expecting numeric in L1300 / R1300C12: got '#N/A'Expecting numeric in M1300 / R1300C13: got '#N/A'Expecting numeric in C1301 / R1301C3: got '#N/A'Expecting numeric in D1301 / R1301C4: got '#N/A'Expecting numeric in E1301 / R1301C5: got '#N/A'Expecting numeric in F1301 / R1301C6: got '#N/A'Expecting numeric in G1301 / R1301C7: got '#N/A'Expecting numeric in K1301 / R1301C11: got '#N/A'Expecting numeric in L1301 / R1301C12: got '#N/A'Expecting numeric in M1301 / R1301C13: got '#N/A'Expecting numeric in C1302 / R1302C3: got '#N/A'Expecting numeric in D1302 / R1302C4: got '#N/A'Expecting numeric in E1302 / R1302C5: got '#N/A'Expecting numeric in F1302 / R1302C6: got '#N/A'Expecting numeric in G1302 / R1302C7: got '#N/A'Expecting numeric in K1302 / R1302C11: got '#N/A'Expecting numeric in L1302 / R1302C12: got '#N/A'Expecting numeric in M1302 / R1302C13: got '#N/A'Expecting numeric in C1303 / R1303C3: got '#N/A'Expecting numeric in D1303 / R1303C4: got '#N/A'Expecting numeric in E1303 / R1303C5: got '#N/A'Expecting numeric in F1303 / R1303C6: got '#N/A'Expecting numeric in G1303 / R1303C7: got '#N/A'Expecting numeric in K1303 / R1303C11: got '#N/A'Expecting numeric in L1303 / R1303C12: got '#N/A'Expecting numeric in M1303 / R1303C13: got '#N/A'Expecting numeric in C1304 / R1304C3: got '#N/A'Expecting numeric in D1304 / R1304C4: got '#N/A'Expecting numeric in E1304 / R1304C5: got '#N/A'Expecting numeric in F1304 / R1304C6: got '#N/A'Expecting numeric in G1304 / R1304C7: got '#N/A'Expecting numeric in K1304 / R1304C11: got '#N/A'Expecting numeric in L1304 / R1304C12: got '#N/A'Expecting numeric in M1304 / R1304C13: got '#N/A'Expecting numeric in C1305 / R1305C3: got '#N/A'Expecting numeric in D1305 / R1305C4: got '#N/A'Expecting numeric in E1305 / R1305C5: got '#N/A'Expecting numeric in F1305 / R1305C6: got '#N/A'Expecting numeric in G1305 / R1305C7: got '#N/A'Expecting numeric in K1305 / R1305C11: got '#N/A'Expecting numeric in L1305 / R1305C12: got '#N/A'Expecting numeric in M1305 / R1305C13: got '#N/A'Expecting numeric in C1306 / R1306C3: got '#N/A'Expecting numeric in D1306 / R1306C4: got '#N/A'Expecting numeric in E1306 / R1306C5: got '#N/A'Expecting numeric in F1306 / R1306C6: got '#N/A'Expecting numeric in G1306 / R1306C7: got '#N/A'Expecting numeric in K1306 / R1306C11: got '#N/A'Expecting numeric in L1306 / R1306C12: got '#N/A'Expecting numeric in M1306 / R1306C13: got '#N/A'Expecting numeric in C1307 / R1307C3: got '#N/A'Expecting numeric in D1307 / R1307C4: got '#N/A'Expecting numeric in E1307 / R1307C5: got '#N/A'Expecting numeric in F1307 / R1307C6: got '#N/A'Expecting numeric in G1307 / R1307C7: got '#N/A'Expecting numeric in K1307 / R1307C11: got '#N/A'Expecting numeric in L1307 / R1307C12: got '#N/A'Expecting numeric in M1307 / R1307C13: got '#N/A'Expecting numeric in C1308 / R1308C3: got '#N/A'Expecting numeric in D1308 / R1308C4: got '#N/A'Expecting numeric in E1308 / R1308C5: got '#N/A'Expecting numeric in F1308 / R1308C6: got '#N/A'Expecting numeric in G1308 / R1308C7: got '#N/A'Expecting numeric in K1308 / R1308C11: got '#N/A'Expecting numeric in L1308 / R1308C12: got '#N/A'Expecting numeric in M1308 / R1308C13: got '#N/A'Expecting numeric in C1309 / R1309C3: got '#N/A'Expecting numeric in D1309 / R1309C4: got '#N/A'Expecting numeric in E1309 / R1309C5: got '#N/A'Expecting numeric in F1309 / R1309C6: got '#N/A'Expecting numeric in G1309 / R1309C7: got '#N/A'Expecting numeric in K1309 / R1309C11: got '#N/A'Expecting numeric in L1309 / R1309C12: got '#N/A'Expecting numeric in M1309 / R1309C13: got '#N/A'Expecting numeric in C1310 / R1310C3: got '#N/A'Expecting numeric in D1310 / R1310C4: got '#N/A'Expecting numeric in E1310 / R1310C5: got '#N/A'Expecting numeric in F1310 / R1310C6: got '#N/A'Expecting numeric in G1310 / R1310C7: got '#N/A'Expecting numeric in K1310 / R1310C11: got '#N/A'Expecting numeric in L1310 / R1310C12: got '#N/A'Expecting numeric in M1310 / R1310C13: got '#N/A'Expecting numeric in C1311 / R1311C3: got '#N/A'Expecting numeric in D1311 / R1311C4: got '#N/A'Expecting numeric in E1311 / R1311C5: got '#N/A'Expecting numeric in F1311 / R1311C6: got '#N/A'Expecting numeric in G1311 / R1311C7: got '#N/A'Expecting numeric in K1311 / R1311C11: got '#N/A'Expecting numeric in L1311 / R1311C12: got '#N/A'Expecting numeric in M1311 / R1311C13: got '#N/A'Expecting numeric in C1312 / R1312C3: got '#N/A'Expecting numeric in D1312 / R1312C4: got '#N/A'Expecting numeric in E1312 / R1312C5: got '#N/A'Expecting numeric in F1312 / R1312C6: got '#N/A'Expecting numeric in G1312 / R1312C7: got '#N/A'Expecting numeric in K1312 / R1312C11: got '#N/A'Expecting numeric in L1312 / R1312C12: got '#N/A'Expecting numeric in M1312 / R1312C13: got '#N/A'Expecting numeric in C1313 / R1313C3: got '#N/A'Expecting numeric in D1313 / R1313C4: got '#N/A'Expecting numeric in E1313 / R1313C5: got '#N/A'Expecting numeric in F1313 / R1313C6: got '#N/A'Expecting numeric in G1313 / R1313C7: got '#N/A'Expecting numeric in K1313 / R1313C11: got '#N/A'Expecting numeric in L1313 / R1313C12: got '#N/A'Expecting numeric in M1313 / R1313C13: got '#N/A'Expecting numeric in C1314 / R1314C3: got '#N/A'Expecting numeric in D1314 / R1314C4: got '#N/A'Expecting numeric in E1314 / R1314C5: got '#N/A'Expecting numeric in F1314 / R1314C6: got '#N/A'Expecting numeric in G1314 / R1314C7: got '#N/A'Expecting numeric in K1314 / R1314C11: got '#N/A'Expecting numeric in L1314 / R1314C12: got '#N/A'Expecting numeric in M1314 / R1314C13: got '#N/A'Expecting numeric in C1315 / R1315C3: got '#N/A'Expecting numeric in D1315 / R1315C4: got '#N/A'Expecting numeric in E1315 / R1315C5: got '#N/A'Expecting numeric in F1315 / R1315C6: got '#N/A'Expecting numeric in G1315 / R1315C7: got '#N/A'Expecting numeric in K1315 / R1315C11: got '#N/A'Expecting numeric in L1315 / R1315C12: got '#N/A'Expecting numeric in M1315 / R1315C13: got '#N/A'Expecting numeric in C1316 / R1316C3: got '#N/A'Expecting numeric in D1316 / R1316C4: got '#N/A'Expecting numeric in E1316 / R1316C5: got '#N/A'Expecting numeric in F1316 / R1316C6: got '#N/A'Expecting numeric in G1316 / R1316C7: got '#N/A'Expecting numeric in K1316 / R1316C11: got '#N/A'Expecting numeric in L1316 / R1316C12: got '#N/A'Expecting numeric in M1316 / R1316C13: got '#N/A'Expecting numeric in C1317 / R1317C3: got '#N/A'Expecting numeric in D1317 / R1317C4: got '#N/A'Expecting numeric in E1317 / R1317C5: got '#N/A'Expecting numeric in F1317 / R1317C6: got '#N/A'Expecting numeric in G1317 / R1317C7: got '#N/A'Expecting numeric in K1317 / R1317C11: got '#N/A'Expecting numeric in L1317 / R1317C12: got '#N/A'Expecting numeric in M1317 / R1317C13: got '#N/A'Expecting numeric in C1318 / R1318C3: got '#N/A'Expecting numeric in D1318 / R1318C4: got '#N/A'Expecting numeric in E1318 / R1318C5: got '#N/A'Expecting numeric in F1318 / R1318C6: got '#N/A'Expecting numeric in G1318 / R1318C7: got '#N/A'Expecting numeric in K1318 / R1318C11: got '#N/A'Expecting numeric in L1318 / R1318C12: got '#N/A'Expecting numeric in M1318 / R1318C13: got '#N/A'Expecting numeric in C1319 / R1319C3: got '#N/A'Expecting numeric in D1319 / R1319C4: got '#N/A'Expecting numeric in E1319 / R1319C5: got '#N/A'Expecting numeric in F1319 / R1319C6: got '#N/A'Expecting numeric in G1319 / R1319C7: got '#N/A'Expecting numeric in K1319 / R1319C11: got '#N/A'Expecting numeric in L1319 / R1319C12: got '#N/A'Expecting numeric in M1319 / R1319C13: got '#N/A'Expecting numeric in C1320 / R1320C3: got '#N/A'Expecting numeric in D1320 / R1320C4: got '#N/A'Expecting numeric in E1320 / R1320C5: got '#N/A'Expecting numeric in F1320 / R1320C6: got '#N/A'Expecting numeric in G1320 / R1320C7: got '#N/A'Expecting numeric in K1320 / R1320C11: got '#N/A'Expecting numeric in L1320 / R1320C12: got '#N/A'Expecting numeric in M1320 / R1320C13: got '#N/A'Expecting numeric in C1321 / R1321C3: got '#N/A'Expecting numeric in D1321 / R1321C4: got '#N/A'Expecting numeric in E1321 / R1321C5: got '#N/A'Expecting numeric in F1321 / R1321C6: got '#N/A'Expecting numeric in G1321 / R1321C7: got '#N/A'Expecting numeric in K1321 / R1321C11: got '#N/A'Expecting numeric in L1321 / R1321C12: got '#N/A'Expecting numeric in M1321 / R1321C13: got '#N/A'Expecting numeric in C1322 / R1322C3: got '#N/A'Expecting numeric in D1322 / R1322C4: got '#N/A'Expecting numeric in E1322 / R1322C5: got '#N/A'Expecting numeric in F1322 / R1322C6: got '#N/A'Expecting numeric in G1322 / R1322C7: got '#N/A'Expecting numeric in K1322 / R1322C11: got '#N/A'Expecting numeric in L1322 / R1322C12: got '#N/A'Expecting numeric in M1322 / R1322C13: got '#N/A'Expecting numeric in C1323 / R1323C3: got '#N/A'Expecting numeric in D1323 / R1323C4: got '#N/A'Expecting numeric in E1323 / R1323C5: got '#N/A'Expecting numeric in F1323 / R1323C6: got '#N/A'Expecting numeric in G1323 / R1323C7: got '#N/A'Expecting numeric in K1323 / R1323C11: got '#N/A'Expecting numeric in L1323 / R1323C12: got '#N/A'Expecting numeric in M1323 / R1323C13: got '#N/A'Expecting numeric in C1324 / R1324C3: got '#N/A'Expecting numeric in D1324 / R1324C4: got '#N/A'Expecting numeric in E1324 / R1324C5: got '#N/A'Expecting numeric in F1324 / R1324C6: got '#N/A'Expecting numeric in G1324 / R1324C7: got '#N/A'Expecting numeric in K1324 / R1324C11: got '#N/A'Expecting numeric in L1324 / R1324C12: got '#N/A'Expecting numeric in M1324 / R1324C13: got '#N/A'Expecting numeric in C1325 / R1325C3: got '#N/A'Expecting numeric in D1325 / R1325C4: got '#N/A'Expecting numeric in E1325 / R1325C5: got '#N/A'Expecting numeric in F1325 / R1325C6: got '#N/A'Expecting numeric in G1325 / R1325C7: got '#N/A'Expecting numeric in K1325 / R1325C11: got '#N/A'Expecting numeric in L1325 / R1325C12: got '#N/A'Expecting numeric in M1325 / R1325C13: got '#N/A'Expecting numeric in C1326 / R1326C3: got '#N/A'Expecting numeric in D1326 / R1326C4: got '#N/A'Expecting numeric in E1326 / R1326C5: got '#N/A'Expecting numeric in F1326 / R1326C6: got '#N/A'Expecting numeric in G1326 / R1326C7: got '#N/A'Expecting numeric in K1326 / R1326C11: got '#N/A'Expecting numeric in L1326 / R1326C12: got '#N/A'Expecting numeric in M1326 / R1326C13: got '#N/A'Expecting numeric in C1327 / R1327C3: got '#N/A'Expecting numeric in D1327 / R1327C4: got '#N/A'Expecting numeric in E1327 / R1327C5: got '#N/A'Expecting numeric in F1327 / R1327C6: got '#N/A'Expecting numeric in G1327 / R1327C7: got '#N/A'Expecting numeric in K1327 / R1327C11: got '#N/A'Expecting numeric in L1327 / R1327C12: got '#N/A'Expecting numeric in M1327 / R1327C13: got '#N/A'Expecting numeric in C1328 / R1328C3: got '#N/A'Expecting numeric in D1328 / R1328C4: got '#N/A'Expecting numeric in E1328 / R1328C5: got '#N/A'Expecting numeric in F1328 / R1328C6: got '#N/A'Expecting numeric in G1328 / R1328C7: got '#N/A'Expecting numeric in K1328 / R1328C11: got '#N/A'Expecting numeric in L1328 / R1328C12: got '#N/A'Expecting numeric in M1328 / R1328C13: got '#N/A'Expecting numeric in C1329 / R1329C3: got '#N/A'Expecting numeric in D1329 / R1329C4: got '#N/A'Expecting numeric in E1329 / R1329C5: got '#N/A'Expecting numeric in F1329 / R1329C6: got '#N/A'Expecting numeric in G1329 / R1329C7: got '#N/A'Expecting numeric in K1329 / R1329C11: got '#N/A'Expecting numeric in L1329 / R1329C12: got '#N/A'Expecting numeric in M1329 / R1329C13: got '#N/A'Expecting numeric in C1330 / R1330C3: got '#N/A'Expecting numeric in D1330 / R1330C4: got '#N/A'Expecting numeric in E1330 / R1330C5: got '#N/A'Expecting numeric in F1330 / R1330C6: got '#N/A'Expecting numeric in G1330 / R1330C7: got '#N/A'Expecting numeric in K1330 / R1330C11: got '#N/A'Expecting numeric in L1330 / R1330C12: got '#N/A'Expecting numeric in M1330 / R1330C13: got '#N/A'Expecting numeric in C1331 / R1331C3: got '#N/A'Expecting numeric in D1331 / R1331C4: got '#N/A'Expecting numeric in E1331 / R1331C5: got '#N/A'Expecting numeric in F1331 / R1331C6: got '#N/A'Expecting numeric in G1331 / R1331C7: got '#N/A'Expecting numeric in K1331 / R1331C11: got '#N/A'Expecting numeric in L1331 / R1331C12: got '#N/A'Expecting numeric in M1331 / R1331C13: got '#N/A'Expecting numeric in C1332 / R1332C3: got '#N/A'Expecting numeric in D1332 / R1332C4: got '#N/A'Expecting numeric in E1332 / R1332C5: got '#N/A'Expecting numeric in F1332 / R1332C6: got '#N/A'Expecting numeric in G1332 / R1332C7: got '#N/A'Expecting numeric in K1332 / R1332C11: got '#N/A'Expecting numeric in L1332 / R1332C12: got '#N/A'Expecting numeric in M1332 / R1332C13: got '#N/A'Expecting numeric in C1333 / R1333C3: got '#N/A'Expecting numeric in D1333 / R1333C4: got '#N/A'Expecting numeric in E1333 / R1333C5: got '#N/A'Expecting numeric in F1333 / R1333C6: got '#N/A'Expecting numeric in G1333 / R1333C7: got '#N/A'Expecting numeric in K1333 / R1333C11: got '#N/A'Expecting numeric in L1333 / R1333C12: got '#N/A'Expecting numeric in M1333 / R1333C13: got '#N/A'Expecting numeric in C1334 / R1334C3: got '#N/A'Expecting numeric in D1334 / R1334C4: got '#N/A'Expecting numeric in E1334 / R1334C5: got '#N/A'Expecting numeric in F1334 / R1334C6: got '#N/A'Expecting numeric in G1334 / R1334C7: got '#N/A'Expecting numeric in K1334 / R1334C11: got '#N/A'Expecting numeric in L1334 / R1334C12: got '#N/A'Expecting numeric in M1334 / R1334C13: got '#N/A'Expecting numeric in C1335 / R1335C3: got '#N/A'Expecting numeric in D1335 / R1335C4: got '#N/A'Expecting numeric in E1335 / R1335C5: got '#N/A'Expecting numeric in F1335 / R1335C6: got '#N/A'Expecting numeric in G1335 / R1335C7: got '#N/A'Expecting numeric in K1335 / R1335C11: got '#N/A'Expecting numeric in L1335 / R1335C12: got '#N/A'Expecting numeric in M1335 / R1335C13: got '#N/A'Expecting numeric in C1336 / R1336C3: got '#N/A'Expecting numeric in D1336 / R1336C4: got '#N/A'Expecting numeric in E1336 / R1336C5: got '#N/A'Expecting numeric in F1336 / R1336C6: got '#N/A'Expecting numeric in G1336 / R1336C7: got '#N/A'Expecting numeric in K1336 / R1336C11: got '#N/A'Expecting numeric in L1336 / R1336C12: got '#N/A'Expecting numeric in M1336 / R1336C13: got '#N/A'Expecting numeric in C1337 / R1337C3: got '#N/A'Expecting numeric in D1337 / R1337C4: got '#N/A'Expecting numeric in E1337 / R1337C5: got '#N/A'Expecting numeric in F1337 / R1337C6: got '#N/A'Expecting numeric in G1337 / R1337C7: got '#N/A'Expecting numeric in K1337 / R1337C11: got '#N/A'Expecting numeric in L1337 / R1337C12: got '#N/A'Expecting numeric in M1337 / R1337C13: got '#N/A'Expecting numeric in C1338 / R1338C3: got '#N/A'Expecting numeric in D1338 / R1338C4: got '#N/A'Expecting numeric in E1338 / R1338C5: got '#N/A'Expecting numeric in F1338 / R1338C6: got '#N/A'Expecting numeric in G1338 / R1338C7: got '#N/A'Expecting numeric in K1338 / R1338C11: got '#N/A'Expecting numeric in L1338 / R1338C12: got '#N/A'Expecting numeric in M1338 / R1338C13: got '#N/A'Expecting numeric in C1339 / R1339C3: got '#N/A'Expecting numeric in D1339 / R1339C4: got '#N/A'Expecting numeric in E1339 / R1339C5: got '#N/A'Expecting numeric in F1339 / R1339C6: got '#N/A'Expecting numeric in G1339 / R1339C7: got '#N/A'Expecting numeric in K1339 / R1339C11: got '#N/A'Expecting numeric in L1339 / R1339C12: got '#N/A'Expecting numeric in M1339 / R1339C13: got '#N/A'Expecting numeric in C1340 / R1340C3: got '#N/A'Expecting numeric in D1340 / R1340C4: got '#N/A'Expecting numeric in E1340 / R1340C5: got '#N/A'Expecting numeric in F1340 / R1340C6: got '#N/A'Expecting numeric in G1340 / R1340C7: got '#N/A'Expecting numeric in K1340 / R1340C11: got '#N/A'Expecting numeric in L1340 / R1340C12: got '#N/A'Expecting numeric in M1340 / R1340C13: got '#N/A'Expecting numeric in C1341 / R1341C3: got '#N/A'Expecting numeric in D1341 / R1341C4: got '#N/A'Expecting numeric in E1341 / R1341C5: got '#N/A'Expecting numeric in F1341 / R1341C6: got '#N/A'Expecting numeric in G1341 / R1341C7: got '#N/A'Expecting numeric in K1341 / R1341C11: got '#N/A'Expecting numeric in L1341 / R1341C12: got '#N/A'Expecting numeric in M1341 / R1341C13: got '#N/A'Expecting numeric in C1342 / R1342C3: got '#N/A'Expecting numeric in D1342 / R1342C4: got '#N/A'Expecting numeric in E1342 / R1342C5: got '#N/A'Expecting numeric in F1342 / R1342C6: got '#N/A'Expecting numeric in G1342 / R1342C7: got '#N/A'Expecting numeric in K1342 / R1342C11: got '#N/A'Expecting numeric in L1342 / R1342C12: got '#N/A'Expecting numeric in M1342 / R1342C13: got '#N/A'Expecting numeric in C1343 / R1343C3: got '#N/A'Expecting numeric in D1343 / R1343C4: got '#N/A'Expecting numeric in E1343 / R1343C5: got '#N/A'Expecting numeric in F1343 / R1343C6: got '#N/A'Expecting numeric in G1343 / R1343C7: got '#N/A'Expecting numeric in K1343 / R1343C11: got '#N/A'Expecting numeric in L1343 / R1343C12: got '#N/A'Expecting numeric in M1343 / R1343C13: got '#N/A'Expecting numeric in C1344 / R1344C3: got '#N/A'Expecting numeric in D1344 / R1344C4: got '#N/A'Expecting numeric in E1344 / R1344C5: got '#N/A'Expecting numeric in F1344 / R1344C6: got '#N/A'Expecting numeric in G1344 / R1344C7: got '#N/A'Expecting numeric in K1344 / R1344C11: got '#N/A'Expecting numeric in L1344 / R1344C12: got '#N/A'Expecting numeric in M1344 / R1344C13: got '#N/A'Expecting numeric in C1345 / R1345C3: got '#N/A'Expecting numeric in D1345 / R1345C4: got '#N/A'Expecting numeric in E1345 / R1345C5: got '#N/A'Expecting numeric in F1345 / R1345C6: got '#N/A'Expecting numeric in G1345 / R1345C7: got '#N/A'Expecting numeric in K1345 / R1345C11: got '#N/A'Expecting numeric in L1345 / R1345C12: got '#N/A'Expecting numeric in M1345 / R1345C13: got '#N/A'Expecting numeric in C1346 / R1346C3: got '#N/A'Expecting numeric in D1346 / R1346C4: got '#N/A'Expecting numeric in E1346 / R1346C5: got '#N/A'Expecting numeric in F1346 / R1346C6: got '#N/A'Expecting numeric in G1346 / R1346C7: got '#N/A'Expecting numeric in K1346 / R1346C11: got '#N/A'Expecting numeric in L1346 / R1346C12: got '#N/A'Expecting numeric in M1346 / R1346C13: got '#N/A'Expecting numeric in C1347 / R1347C3: got '#N/A'Expecting numeric in D1347 / R1347C4: got '#N/A'Expecting numeric in E1347 / R1347C5: got '#N/A'Expecting numeric in F1347 / R1347C6: got '#N/A'Expecting numeric in G1347 / R1347C7: got '#N/A'Expecting numeric in K1347 / R1347C11: got '#N/A'Expecting numeric in L1347 / R1347C12: got '#N/A'Expecting numeric in M1347 / R1347C13: got '#N/A'Expecting numeric in C1348 / R1348C3: got '#N/A'Expecting numeric in D1348 / R1348C4: got '#N/A'Expecting numeric in E1348 / R1348C5: got '#N/A'Expecting numeric in F1348 / R1348C6: got '#N/A'Expecting numeric in G1348 / R1348C7: got '#N/A'Expecting numeric in K1348 / R1348C11: got '#N/A'Expecting numeric in L1348 / R1348C12: got '#N/A'Expecting numeric in M1348 / R1348C13: got '#N/A'Expecting numeric in C1349 / R1349C3: got '#N/A'Expecting numeric in D1349 / R1349C4: got '#N/A'Expecting numeric in E1349 / R1349C5: got '#N/A'Expecting numeric in F1349 / R1349C6: got '#N/A'Expecting numeric in G1349 / R1349C7: got '#N/A'Expecting numeric in K1349 / R1349C11: got '#N/A'Expecting numeric in L1349 / R1349C12: got '#N/A'Expecting numeric in M1349 / R1349C13: got '#N/A'Expecting numeric in C1350 / R1350C3: got '#N/A'Expecting numeric in D1350 / R1350C4: got '#N/A'Expecting numeric in E1350 / R1350C5: got '#N/A'Expecting numeric in F1350 / R1350C6: got '#N/A'Expecting numeric in G1350 / R1350C7: got '#N/A'Expecting numeric in K1350 / R1350C11: got '#N/A'Expecting numeric in L1350 / R1350C12: got '#N/A'Expecting numeric in M1350 / R1350C13: got '#N/A'Expecting numeric in C1351 / R1351C3: got '#N/A'Expecting numeric in D1351 / R1351C4: got '#N/A'Expecting numeric in E1351 / R1351C5: got '#N/A'Expecting numeric in F1351 / R1351C6: got '#N/A'Expecting numeric in G1351 / R1351C7: got '#N/A'Expecting numeric in K1351 / R1351C11: got '#N/A'Expecting numeric in L1351 / R1351C12: got '#N/A'Expecting numeric in M1351 / R1351C13: got '#N/A'Expecting numeric in C1352 / R1352C3: got '#N/A'Expecting numeric in D1352 / R1352C4: got '#N/A'Expecting numeric in E1352 / R1352C5: got '#N/A'Expecting numeric in F1352 / R1352C6: got '#N/A'Expecting numeric in G1352 / R1352C7: got '#N/A'Expecting numeric in K1352 / R1352C11: got '#N/A'Expecting numeric in L1352 / R1352C12: got '#N/A'Expecting numeric in M1352 / R1352C13: got '#N/A'Expecting numeric in C1353 / R1353C3: got '#N/A'Expecting numeric in D1353 / R1353C4: got '#N/A'Expecting numeric in E1353 / R1353C5: got '#N/A'Expecting numeric in F1353 / R1353C6: got '#N/A'Expecting numeric in G1353 / R1353C7: got '#N/A'Expecting numeric in K1353 / R1353C11: got '#N/A'Expecting numeric in L1353 / R1353C12: got '#N/A'Expecting numeric in M1353 / R1353C13: got '#N/A'Expecting numeric in C1354 / R1354C3: got '#N/A'Expecting numeric in D1354 / R1354C4: got '#N/A'Expecting numeric in E1354 / R1354C5: got '#N/A'Expecting numeric in F1354 / R1354C6: got '#N/A'Expecting numeric in G1354 / R1354C7: got '#N/A'Expecting numeric in K1354 / R1354C11: got '#N/A'Expecting numeric in L1354 / R1354C12: got '#N/A'Expecting numeric in M1354 / R1354C13: got '#N/A'Expecting numeric in C1355 / R1355C3: got '#N/A'Expecting numeric in D1355 / R1355C4: got '#N/A'Expecting numeric in E1355 / R1355C5: got '#N/A'Expecting numeric in F1355 / R1355C6: got '#N/A'Expecting numeric in G1355 / R1355C7: got '#N/A'Expecting numeric in K1355 / R1355C11: got '#N/A'Expecting numeric in L1355 / R1355C12: got '#N/A'Expecting numeric in M1355 / R1355C13: got '#N/A'Expecting numeric in C1356 / R1356C3: got '#N/A'Expecting numeric in D1356 / R1356C4: got '#N/A'Expecting numeric in E1356 / R1356C5: got '#N/A'Expecting numeric in F1356 / R1356C6: got '#N/A'Expecting numeric in G1356 / R1356C7: got '#N/A'Expecting numeric in K1356 / R1356C11: got '#N/A'Expecting numeric in L1356 / R1356C12: got '#N/A'Expecting numeric in M1356 / R1356C13: got '#N/A'Expecting numeric in C1357 / R1357C3: got '#N/A'Expecting numeric in D1357 / R1357C4: got '#N/A'Expecting numeric in E1357 / R1357C5: got '#N/A'Expecting numeric in F1357 / R1357C6: got '#N/A'Expecting numeric in G1357 / R1357C7: got '#N/A'Expecting numeric in K1357 / R1357C11: got '#N/A'Expecting numeric in L1357 / R1357C12: got '#N/A'Expecting numeric in M1357 / R1357C13: got '#N/A'Expecting numeric in C1358 / R1358C3: got '#N/A'Expecting numeric in D1358 / R1358C4: got '#N/A'Expecting numeric in E1358 / R1358C5: got '#N/A'Expecting numeric in F1358 / R1358C6: got '#N/A'Expecting numeric in G1358 / R1358C7: got '#N/A'Expecting numeric in K1358 / R1358C11: got '#N/A'Expecting numeric in L1358 / R1358C12: got '#N/A'Expecting numeric in M1358 / R1358C13: got '#N/A'Expecting numeric in C1359 / R1359C3: got '#N/A'Expecting numeric in D1359 / R1359C4: got '#N/A'Expecting numeric in E1359 / R1359C5: got '#N/A'Expecting numeric in F1359 / R1359C6: got '#N/A'Expecting numeric in G1359 / R1359C7: got '#N/A'Expecting numeric in K1359 / R1359C11: got '#N/A'Expecting numeric in L1359 / R1359C12: got '#N/A'Expecting numeric in M1359 / R1359C13: got '#N/A'Expecting numeric in C1360 / R1360C3: got '#N/A'Expecting numeric in D1360 / R1360C4: got '#N/A'Expecting numeric in E1360 / R1360C5: got '#N/A'Expecting numeric in F1360 / R1360C6: got '#N/A'Expecting numeric in G1360 / R1360C7: got '#N/A'Expecting numeric in K1360 / R1360C11: got '#N/A'Expecting numeric in L1360 / R1360C12: got '#N/A'Expecting numeric in M1360 / R1360C13: got '#N/A'Expecting numeric in C1361 / R1361C3: got '#N/A'Expecting numeric in D1361 / R1361C4: got '#N/A'Expecting numeric in E1361 / R1361C5: got '#N/A'Expecting numeric in F1361 / R1361C6: got '#N/A'Expecting numeric in G1361 / R1361C7: got '#N/A'Expecting numeric in K1361 / R1361C11: got '#N/A'Expecting numeric in L1361 / R1361C12: got '#N/A'Expecting numeric in M1361 / R1361C13: got '#N/A'Expecting numeric in C1362 / R1362C3: got '#N/A'Expecting numeric in D1362 / R1362C4: got '#N/A'Expecting numeric in E1362 / R1362C5: got '#N/A'Expecting numeric in F1362 / R1362C6: got '#N/A'Expecting numeric in G1362 / R1362C7: got '#N/A'Expecting numeric in K1362 / R1362C11: got '#N/A'Expecting numeric in L1362 / R1362C12: got '#N/A'Expecting numeric in M1362 / R1362C13: got '#N/A'Expecting numeric in C1363 / R1363C3: got '#N/A'Expecting numeric in D1363 / R1363C4: got '#N/A'Expecting numeric in E1363 / R1363C5: got '#N/A'Expecting numeric in F1363 / R1363C6: got '#N/A'Expecting numeric in G1363 / R1363C7: got '#N/A'Expecting numeric in K1363 / R1363C11: got '#N/A'Expecting numeric in L1363 / R1363C12: got '#N/A'Expecting numeric in M1363 / R1363C13: got '#N/A'Expecting numeric in C1364 / R1364C3: got '#N/A'Expecting numeric in D1364 / R1364C4: got '#N/A'Expecting numeric in E1364 / R1364C5: got '#N/A'Expecting numeric in F1364 / R1364C6: got '#N/A'Expecting numeric in G1364 / R1364C7: got '#N/A'Expecting numeric in K1364 / R1364C11: got '#N/A'Expecting numeric in L1364 / R1364C12: got '#N/A'Expecting numeric in M1364 / R1364C13: got '#N/A'Expecting numeric in C1365 / R1365C3: got '#N/A'Expecting numeric in D1365 / R1365C4: got '#N/A'Expecting numeric in E1365 / R1365C5: got '#N/A'Expecting numeric in F1365 / R1365C6: got '#N/A'Expecting numeric in G1365 / R1365C7: got '#N/A'Expecting numeric in K1365 / R1365C11: got '#N/A'Expecting numeric in L1365 / R1365C12: got '#N/A'Expecting numeric in M1365 / R1365C13: got '#N/A'Expecting numeric in C1366 / R1366C3: got '#N/A'Expecting numeric in D1366 / R1366C4: got '#N/A'Expecting numeric in E1366 / R1366C5: got '#N/A'Expecting numeric in F1366 / R1366C6: got '#N/A'Expecting numeric in G1366 / R1366C7: got '#N/A'Expecting numeric in K1366 / R1366C11: got '#N/A'Expecting numeric in L1366 / R1366C12: got '#N/A'Expecting numeric in M1366 / R1366C13: got '#N/A'Expecting numeric in C1367 / R1367C3: got '#N/A'Expecting numeric in D1367 / R1367C4: got '#N/A'Expecting numeric in E1367 / R1367C5: got '#N/A'Expecting numeric in F1367 / R1367C6: got '#N/A'Expecting numeric in G1367 / R1367C7: got '#N/A'Expecting numeric in K1367 / R1367C11: got '#N/A'Expecting numeric in L1367 / R1367C12: got '#N/A'Expecting numeric in M1367 / R1367C13: got '#N/A'Expecting numeric in C1368 / R1368C3: got '#N/A'Expecting numeric in D1368 / R1368C4: got '#N/A'Expecting numeric in E1368 / R1368C5: got '#N/A'Expecting numeric in F1368 / R1368C6: got '#N/A'Expecting numeric in G1368 / R1368C7: got '#N/A'Expecting numeric in K1368 / R1368C11: got '#N/A'Expecting numeric in L1368 / R1368C12: got '#N/A'Expecting numeric in M1368 / R1368C13: got '#N/A'Expecting numeric in C1369 / R1369C3: got '#N/A'Expecting numeric in D1369 / R1369C4: got '#N/A'Expecting numeric in E1369 / R1369C5: got '#N/A'Expecting numeric in F1369 / R1369C6: got '#N/A'Expecting numeric in G1369 / R1369C7: got '#N/A'Expecting numeric in K1369 / R1369C11: got '#N/A'Expecting numeric in L1369 / R1369C12: got '#N/A'Expecting numeric in M1369 / R1369C13: got '#N/A'Expecting numeric in C1370 / R1370C3: got '#N/A'Expecting numeric in D1370 / R1370C4: got '#N/A'Expecting numeric in E1370 / R1370C5: got '#N/A'Expecting numeric in F1370 / R1370C6: got '#N/A'Expecting numeric in G1370 / R1370C7: got '#N/A'Expecting numeric in K1370 / R1370C11: got '#N/A'Expecting numeric in L1370 / R1370C12: got '#N/A'Expecting numeric in M1370 / R1370C13: got '#N/A'Expecting numeric in C1371 / R1371C3: got '#N/A'Expecting numeric in D1371 / R1371C4: got '#N/A'Expecting numeric in E1371 / R1371C5: got '#N/A'Expecting numeric in F1371 / R1371C6: got '#N/A'Expecting numeric in G1371 / R1371C7: got '#N/A'Expecting numeric in K1371 / R1371C11: got '#N/A'Expecting numeric in L1371 / R1371C12: got '#N/A'Expecting numeric in M1371 / R1371C13: got '#N/A'Expecting numeric in C1372 / R1372C3: got '#N/A'Expecting numeric in D1372 / R1372C4: got '#N/A'Expecting numeric in E1372 / R1372C5: got '#N/A'Expecting numeric in F1372 / R1372C6: got '#N/A'Expecting numeric in G1372 / R1372C7: got '#N/A'Expecting numeric in K1372 / R1372C11: got '#N/A'Expecting numeric in L1372 / R1372C12: got '#N/A'Expecting numeric in M1372 / R1372C13: got '#N/A'Expecting numeric in C1373 / R1373C3: got '#N/A'Expecting numeric in D1373 / R1373C4: got '#N/A'Expecting numeric in E1373 / R1373C5: got '#N/A'Expecting numeric in F1373 / R1373C6: got '#N/A'Expecting numeric in G1373 / R1373C7: got '#N/A'Expecting numeric in K1373 / R1373C11: got '#N/A'Expecting numeric in L1373 / R1373C12: got '#N/A'Expecting numeric in M1373 / R1373C13: got '#N/A'Expecting numeric in C1374 / R1374C3: got '#N/A'Expecting numeric in D1374 / R1374C4: got '#N/A'Expecting numeric in E1374 / R1374C5: got '#N/A'Expecting numeric in F1374 / R1374C6: got '#N/A'Expecting numeric in G1374 / R1374C7: got '#N/A'Expecting numeric in K1374 / R1374C11: got '#N/A'Expecting numeric in L1374 / R1374C12: got '#N/A'Expecting numeric in M1374 / R1374C13: got '#N/A'Expecting numeric in C1375 / R1375C3: got '#N/A'Expecting numeric in D1375 / R1375C4: got '#N/A'Expecting numeric in E1375 / R1375C5: got '#N/A'Expecting numeric in F1375 / R1375C6: got '#N/A'Expecting numeric in G1375 / R1375C7: got '#N/A'Expecting numeric in K1375 / R1375C11: got '#N/A'Expecting numeric in L1375 / R1375C12: got '#N/A'Expecting numeric in M1375 / R1375C13: got '#N/A'Expecting numeric in C1376 / R1376C3: got '#N/A'Expecting numeric in D1376 / R1376C4: got '#N/A'Expecting numeric in E1376 / R1376C5: got '#N/A'Expecting numeric in F1376 / R1376C6: got '#N/A'Expecting numeric in G1376 / R1376C7: got '#N/A'Expecting numeric in K1376 / R1376C11: got '#N/A'Expecting numeric in L1376 / R1376C12: got '#N/A'Expecting numeric in M1376 / R1376C13: got '#N/A'Expecting numeric in C1377 / R1377C3: got '#N/A'Expecting numeric in D1377 / R1377C4: got '#N/A'Expecting numeric in E1377 / R1377C5: got '#N/A'Expecting numeric in F1377 / R1377C6: got '#N/A'Expecting numeric in G1377 / R1377C7: got '#N/A'Expecting numeric in K1377 / R1377C11: got '#N/A'Expecting numeric in L1377 / R1377C12: got '#N/A'Expecting numeric in M1377 / R1377C13: got '#N/A'Expecting numeric in C1378 / R1378C3: got '#N/A'Expecting numeric in D1378 / R1378C4: got '#N/A'Expecting numeric in E1378 / R1378C5: got '#N/A'Expecting numeric in F1378 / R1378C6: got '#N/A'Expecting numeric in G1378 / R1378C7: got '#N/A'Expecting numeric in K1378 / R1378C11: got '#N/A'Expecting numeric in L1378 / R1378C12: got '#N/A'Expecting numeric in M1378 / R1378C13: got '#N/A'Expecting numeric in C1379 / R1379C3: got '#N/A'Expecting numeric in D1379 / R1379C4: got '#N/A'Expecting numeric in E1379 / R1379C5: got '#N/A'Expecting numeric in F1379 / R1379C6: got '#N/A'Expecting numeric in G1379 / R1379C7: got '#N/A'Expecting numeric in K1379 / R1379C11: got '#N/A'Expecting numeric in L1379 / R1379C12: got '#N/A'Expecting numeric in M1379 / R1379C13: got '#N/A'Expecting numeric in C1380 / R1380C3: got '#N/A'Expecting numeric in D1380 / R1380C4: got '#N/A'Expecting numeric in E1380 / R1380C5: got '#N/A'Expecting numeric in F1380 / R1380C6: got '#N/A'Expecting numeric in G1380 / R1380C7: got '#N/A'Expecting numeric in K1380 / R1380C11: got '#N/A'Expecting numeric in L1380 / R1380C12: got '#N/A'Expecting numeric in M1380 / R1380C13: got '#N/A'Expecting numeric in C1381 / R1381C3: got '#N/A'Expecting numeric in D1381 / R1381C4: got '#N/A'Expecting numeric in E1381 / R1381C5: got '#N/A'Expecting numeric in F1381 / R1381C6: got '#N/A'Expecting numeric in G1381 / R1381C7: got '#N/A'Expecting numeric in K1381 / R1381C11: got '#N/A'Expecting numeric in L1381 / R1381C12: got '#N/A'Expecting numeric in M1381 / R1381C13: got '#N/A'Expecting numeric in C1382 / R1382C3: got '#N/A'Expecting numeric in D1382 / R1382C4: got '#N/A'Expecting numeric in E1382 / R1382C5: got '#N/A'Expecting numeric in F1382 / R1382C6: got '#N/A'Expecting numeric in G1382 / R1382C7: got '#N/A'Expecting numeric in K1382 / R1382C11: got '#N/A'Expecting numeric in L1382 / R1382C12: got '#N/A'Expecting numeric in M1382 / R1382C13: got '#N/A'Expecting numeric in C1383 / R1383C3: got '#N/A'Expecting numeric in D1383 / R1383C4: got '#N/A'Expecting numeric in E1383 / R1383C5: got '#N/A'Expecting numeric in F1383 / R1383C6: got '#N/A'Expecting numeric in G1383 / R1383C7: got '#N/A'Expecting numeric in K1383 / R1383C11: got '#N/A'Expecting numeric in L1383 / R1383C12: got '#N/A'Expecting numeric in M1383 / R1383C13: got '#N/A'Expecting numeric in C1384 / R1384C3: got '#N/A'Expecting numeric in D1384 / R1384C4: got '#N/A'Expecting numeric in E1384 / R1384C5: got '#N/A'Expecting numeric in F1384 / R1384C6: got '#N/A'Expecting numeric in G1384 / R1384C7: got '#N/A'Expecting numeric in K1384 / R1384C11: got '#N/A'Expecting numeric in L1384 / R1384C12: got '#N/A'Expecting numeric in M1384 / R1384C13: got '#N/A'Expecting numeric in C1385 / R1385C3: got '#N/A'Expecting numeric in D1385 / R1385C4: got '#N/A'Expecting numeric in E1385 / R1385C5: got '#N/A'Expecting numeric in F1385 / R1385C6: got '#N/A'Expecting numeric in G1385 / R1385C7: got '#N/A'Expecting numeric in K1385 / R1385C11: got '#N/A'Expecting numeric in L1385 / R1385C12: got '#N/A'Expecting numeric in M1385 / R1385C13: got '#N/A'Expecting numeric in C1386 / R1386C3: got '#N/A'Expecting numeric in D1386 / R1386C4: got '#N/A'Expecting numeric in E1386 / R1386C5: got '#N/A'Expecting numeric in F1386 / R1386C6: got '#N/A'Expecting numeric in G1386 / R1386C7: got '#N/A'Expecting numeric in K1386 / R1386C11: got '#N/A'Expecting numeric in L1386 / R1386C12: got '#N/A'Expecting numeric in M1386 / R1386C13: got '#N/A'Expecting numeric in C1387 / R1387C3: got '#N/A'Expecting numeric in D1387 / R1387C4: got '#N/A'Expecting numeric in E1387 / R1387C5: got '#N/A'Expecting numeric in F1387 / R1387C6: got '#N/A'Expecting numeric in G1387 / R1387C7: got '#N/A'Expecting numeric in K1387 / R1387C11: got '#N/A'Expecting numeric in L1387 / R1387C12: got '#N/A'Expecting numeric in M1387 / R1387C13: got '#N/A'Expecting numeric in C1388 / R1388C3: got '#N/A'Expecting numeric in D1388 / R1388C4: got '#N/A'Expecting numeric in E1388 / R1388C5: got '#N/A'Expecting numeric in F1388 / R1388C6: got '#N/A'Expecting numeric in G1388 / R1388C7: got '#N/A'Expecting numeric in K1388 / R1388C11: got '#N/A'Expecting numeric in L1388 / R1388C12: got '#N/A'Expecting numeric in M1388 / R1388C13: got '#N/A'Expecting numeric in C1389 / R1389C3: got '#N/A'Expecting numeric in D1389 / R1389C4: got '#N/A'Expecting numeric in E1389 / R1389C5: got '#N/A'Expecting numeric in F1389 / R1389C6: got '#N/A'Expecting numeric in G1389 / R1389C7: got '#N/A'Expecting numeric in K1389 / R1389C11: got '#N/A'Expecting numeric in L1389 / R1389C12: got '#N/A'Expecting numeric in M1389 / R1389C13: got '#N/A'Expecting numeric in C1390 / R1390C3: got '#N/A'Expecting numeric in D1390 / R1390C4: got '#N/A'Expecting numeric in E1390 / R1390C5: got '#N/A'Expecting numeric in F1390 / R1390C6: got '#N/A'Expecting numeric in G1390 / R1390C7: got '#N/A'Expecting numeric in K1390 / R1390C11: got '#N/A'Expecting numeric in L1390 / R1390C12: got '#N/A'Expecting numeric in M1390 / R1390C13: got '#N/A'Expecting numeric in C1391 / R1391C3: got '#N/A'Expecting numeric in D1391 / R1391C4: got '#N/A'Expecting numeric in E1391 / R1391C5: got '#N/A'Expecting numeric in F1391 / R1391C6: got '#N/A'Expecting numeric in G1391 / R1391C7: got '#N/A'Expecting numeric in K1391 / R1391C11: got '#N/A'Expecting numeric in L1391 / R1391C12: got '#N/A'Expecting numeric in M1391 / R1391C13: got '#N/A'Expecting numeric in C1392 / R1392C3: got '#N/A'Expecting numeric in D1392 / R1392C4: got '#N/A'Expecting numeric in E1392 / R1392C5: got '#N/A'Expecting numeric in F1392 / R1392C6: got '#N/A'Expecting numeric in G1392 / R1392C7: got '#N/A'Expecting numeric in K1392 / R1392C11: got '#N/A'Expecting numeric in L1392 / R1392C12: got '#N/A'Expecting numeric in M1392 / R1392C13: got '#N/A'Expecting numeric in C1393 / R1393C3: got '#N/A'Expecting numeric in D1393 / R1393C4: got '#N/A'Expecting numeric in E1393 / R1393C5: got '#N/A'Expecting numeric in F1393 / R1393C6: got '#N/A'Expecting numeric in G1393 / R1393C7: got '#N/A'Expecting numeric in K1393 / R1393C11: got '#N/A'Expecting numeric in L1393 / R1393C12: got '#N/A'Expecting numeric in M1393 / R1393C13: got '#N/A'Expecting numeric in C1394 / R1394C3: got '#N/A'Expecting numeric in D1394 / R1394C4: got '#N/A'Expecting numeric in E1394 / R1394C5: got '#N/A'Expecting numeric in F1394 / R1394C6: got '#N/A'Expecting numeric in G1394 / R1394C7: got '#N/A'Expecting numeric in K1394 / R1394C11: got '#N/A'Expecting numeric in L1394 / R1394C12: got '#N/A'Expecting numeric in M1394 / R1394C13: got '#N/A'Expecting numeric in C1395 / R1395C3: got '#N/A'Expecting numeric in D1395 / R1395C4: got '#N/A'Expecting numeric in E1395 / R1395C5: got '#N/A'Expecting numeric in F1395 / R1395C6: got '#N/A'Expecting numeric in G1395 / R1395C7: got '#N/A'Expecting numeric in K1395 / R1395C11: got '#N/A'Expecting numeric in L1395 / R1395C12: got '#N/A'Expecting numeric in M1395 / R1395C13: got '#N/A'Expecting numeric in C1396 / R1396C3: got '#N/A'Expecting numeric in D1396 / R1396C4: got '#N/A'Expecting numeric in E1396 / R1396C5: got '#N/A'Expecting numeric in F1396 / R1396C6: got '#N/A'Expecting numeric in G1396 / R1396C7: got '#N/A'Expecting numeric in K1396 / R1396C11: got '#N/A'Expecting numeric in L1396 / R1396C12: got '#N/A'Expecting numeric in M1396 / R1396C13: got '#N/A'Expecting numeric in C1397 / R1397C3: got '#N/A'Expecting numeric in D1397 / R1397C4: got '#N/A'Expecting numeric in E1397 / R1397C5: got '#N/A'Expecting numeric in F1397 / R1397C6: got '#N/A'Expecting numeric in G1397 / R1397C7: got '#N/A'Expecting numeric in K1397 / R1397C11: got '#N/A'Expecting numeric in L1397 / R1397C12: got '#N/A'Expecting numeric in M1397 / R1397C13: got '#N/A'Expecting numeric in C1398 / R1398C3: got '#N/A'Expecting numeric in D1398 / R1398C4: got '#N/A'Expecting numeric in E1398 / R1398C5: got '#N/A'Expecting numeric in F1398 / R1398C6: got '#N/A'Expecting numeric in G1398 / R1398C7: got '#N/A'Expecting numeric in K1398 / R1398C11: got '#N/A'Expecting numeric in L1398 / R1398C12: got '#N/A'Expecting numeric in M1398 / R1398C13: got '#N/A'Expecting numeric in C1399 / R1399C3: got '#N/A'Expecting numeric in D1399 / R1399C4: got '#N/A'Expecting numeric in E1399 / R1399C5: got '#N/A'Expecting numeric in F1399 / R1399C6: got '#N/A'Expecting numeric in G1399 / R1399C7: got '#N/A'Expecting numeric in K1399 / R1399C11: got '#N/A'Expecting numeric in L1399 / R1399C12: got '#N/A'Expecting numeric in M1399 / R1399C13: got '#N/A'Expecting numeric in C1400 / R1400C3: got '#N/A'Expecting numeric in D1400 / R1400C4: got '#N/A'Expecting numeric in E1400 / R1400C5: got '#N/A'Expecting numeric in F1400 / R1400C6: got '#N/A'Expecting numeric in G1400 / R1400C7: got '#N/A'Expecting numeric in K1400 / R1400C11: got '#N/A'Expecting numeric in L1400 / R1400C12: got '#N/A'Expecting numeric in M1400 / R1400C13: got '#N/A'Expecting numeric in C1401 / R1401C3: got '#N/A'Expecting numeric in D1401 / R1401C4: got '#N/A'Expecting numeric in E1401 / R1401C5: got '#N/A'Expecting numeric in F1401 / R1401C6: got '#N/A'Expecting numeric in G1401 / R1401C7: got '#N/A'Expecting numeric in K1401 / R1401C11: got '#N/A'Expecting numeric in L1401 / R1401C12: got '#N/A'Expecting numeric in M1401 / R1401C13: got '#N/A'Expecting numeric in C1402 / R1402C3: got '#N/A'Expecting numeric in D1402 / R1402C4: got '#N/A'Expecting numeric in E1402 / R1402C5: got '#N/A'Expecting numeric in F1402 / R1402C6: got '#N/A'Expecting numeric in G1402 / R1402C7: got '#N/A'Expecting numeric in K1402 / R1402C11: got '#N/A'Expecting numeric in L1402 / R1402C12: got '#N/A'Expecting numeric in M1402 / R1402C13: got '#N/A'Expecting numeric in C1403 / R1403C3: got '#N/A'Expecting numeric in D1403 / R1403C4: got '#N/A'Expecting numeric in E1403 / R1403C5: got '#N/A'Expecting numeric in F1403 / R1403C6: got '#N/A'Expecting numeric in G1403 / R1403C7: got '#N/A'Expecting numeric in K1403 / R1403C11: got '#N/A'Expecting numeric in L1403 / R1403C12: got '#N/A'Expecting numeric in M1403 / R1403C13: got '#N/A'Expecting numeric in C1404 / R1404C3: got '#N/A'Expecting numeric in D1404 / R1404C4: got '#N/A'Expecting numeric in E1404 / R1404C5: got '#N/A'Expecting numeric in F1404 / R1404C6: got '#N/A'Expecting numeric in G1404 / R1404C7: got '#N/A'Expecting numeric in K1404 / R1404C11: got '#N/A'Expecting numeric in L1404 / R1404C12: got '#N/A'Expecting numeric in M1404 / R1404C13: got '#N/A'Expecting numeric in C1405 / R1405C3: got '#N/A'Expecting numeric in D1405 / R1405C4: got '#N/A'Expecting numeric in E1405 / R1405C5: got '#N/A'Expecting numeric in F1405 / R1405C6: got '#N/A'Expecting numeric in G1405 / R1405C7: got '#N/A'Expecting numeric in K1405 / R1405C11: got '#N/A'Expecting numeric in L1405 / R1405C12: got '#N/A'Expecting numeric in M1405 / R1405C13: got '#N/A'Expecting numeric in C1406 / R1406C3: got '#N/A'Expecting numeric in D1406 / R1406C4: got '#N/A'Expecting numeric in E1406 / R1406C5: got '#N/A'Expecting numeric in F1406 / R1406C6: got '#N/A'Expecting numeric in G1406 / R1406C7: got '#N/A'Expecting numeric in K1406 / R1406C11: got '#N/A'Expecting numeric in L1406 / R1406C12: got '#N/A'Expecting numeric in M1406 / R1406C13: got '#N/A'Expecting numeric in C1407 / R1407C3: got '#N/A'Expecting numeric in D1407 / R1407C4: got '#N/A'Expecting numeric in E1407 / R1407C5: got '#N/A'Expecting numeric in F1407 / R1407C6: got '#N/A'Expecting numeric in G1407 / R1407C7: got '#N/A'Expecting numeric in K1407 / R1407C11: got '#N/A'Expecting numeric in L1407 / R1407C12: got '#N/A'Expecting numeric in M1407 / R1407C13: got '#N/A'Expecting numeric in C1408 / R1408C3: got '#N/A'Expecting numeric in D1408 / R1408C4: got '#N/A'Expecting numeric in E1408 / R1408C5: got '#N/A'Expecting numeric in F1408 / R1408C6: got '#N/A'Expecting numeric in G1408 / R1408C7: got '#N/A'Expecting numeric in K1408 / R1408C11: got '#N/A'Expecting numeric in L1408 / R1408C12: got '#N/A'Expecting numeric in M1408 / R1408C13: got '#N/A'Expecting numeric in C1409 / R1409C3: got '#N/A'Expecting numeric in D1409 / R1409C4: got '#N/A'Expecting numeric in E1409 / R1409C5: got '#N/A'Expecting numeric in F1409 / R1409C6: got '#N/A'Expecting numeric in G1409 / R1409C7: got '#N/A'Expecting numeric in K1409 / R1409C11: got '#N/A'Expecting numeric in L1409 / R1409C12: got '#N/A'Expecting numeric in M1409 / R1409C13: got '#N/A'Expecting numeric in C1410 / R1410C3: got '#N/A'Expecting numeric in D1410 / R1410C4: got '#N/A'Expecting numeric in E1410 / R1410C5: got '#N/A'Expecting numeric in F1410 / R1410C6: got '#N/A'Expecting numeric in G1410 / R1410C7: got '#N/A'Expecting numeric in K1410 / R1410C11: got '#N/A'Expecting numeric in L1410 / R1410C12: got '#N/A'Expecting numeric in M1410 / R1410C13: got '#N/A'Expecting numeric in C1411 / R1411C3: got '#N/A'Expecting numeric in D1411 / R1411C4: got '#N/A'Expecting numeric in E1411 / R1411C5: got '#N/A'Expecting numeric in G1411 / R1411C7: got '#N/A'Expecting numeric in K1411 / R1411C11: got '#N/A'Expecting numeric in L1411 / R1411C12: got '#N/A'Expecting numeric in M1411 / R1411C13: got '#N/A'Expecting numeric in C1412 / R1412C3: got '#N/A'Expecting numeric in D1412 / R1412C4: got '#N/A'Expecting numeric in E1412 / R1412C5: got '#N/A'Expecting numeric in G1412 / R1412C7: got '#N/A'Expecting numeric in K1412 / R1412C11: got '#N/A'Expecting numeric in L1412 / R1412C12: got '#N/A'Expecting numeric in M1412 / R1412C13: got '#N/A'Expecting numeric in C1413 / R1413C3: got '#N/A'Expecting numeric in D1413 / R1413C4: got '#N/A'Expecting numeric in E1413 / R1413C5: got '#N/A'Expecting numeric in G1413 / R1413C7: got '#N/A'Expecting numeric in K1413 / R1413C11: got '#N/A'Expecting numeric in L1413 / R1413C12: got '#N/A'Expecting numeric in M1413 / R1413C13: got '#N/A'Expecting numeric in C1414 / R1414C3: got '#N/A'Expecting numeric in D1414 / R1414C4: got '#N/A'Expecting numeric in E1414 / R1414C5: got '#N/A'Expecting numeric in G1414 / R1414C7: got '#N/A'Expecting numeric in K1414 / R1414C11: got '#N/A'Expecting numeric in L1414 / R1414C12: got '#N/A'Expecting numeric in M1414 / R1414C13: got '#N/A'Expecting numeric in C1415 / R1415C3: got '#N/A'Expecting numeric in D1415 / R1415C4: got '#N/A'Expecting numeric in E1415 / R1415C5: got '#N/A'Expecting numeric in G1415 / R1415C7: got '#N/A'Expecting numeric in K1415 / R1415C11: got '#N/A'Expecting numeric in L1415 / R1415C12: got '#N/A'Expecting numeric in M1415 / R1415C13: got '#N/A'Expecting numeric in C1416 / R1416C3: got '#N/A'Expecting numeric in D1416 / R1416C4: got '#N/A'Expecting numeric in E1416 / R1416C5: got '#N/A'Expecting numeric in G1416 / R1416C7: got '#N/A'Expecting numeric in K1416 / R1416C11: got '#N/A'Expecting numeric in L1416 / R1416C12: got '#N/A'Expecting numeric in M1416 / R1416C13: got '#N/A'Expecting numeric in C1417 / R1417C3: got '#N/A'Expecting numeric in D1417 / R1417C4: got '#N/A'Expecting numeric in E1417 / R1417C5: got '#N/A'Expecting numeric in G1417 / R1417C7: got '#N/A'Expecting numeric in K1417 / R1417C11: got '#N/A'Expecting numeric in L1417 / R1417C12: got '#N/A'Expecting numeric in M1417 / R1417C13: got '#N/A'Expecting numeric in C1418 / R1418C3: got '#N/A'Expecting numeric in D1418 / R1418C4: got '#N/A'Expecting numeric in E1418 / R1418C5: got '#N/A'Expecting numeric in G1418 / R1418C7: got '#N/A'Expecting numeric in K1418 / R1418C11: got '#N/A'Expecting numeric in L1418 / R1418C12: got '#N/A'Expecting numeric in M1418 / R1418C13: got '#N/A'Expecting numeric in C1419 / R1419C3: got '#N/A'Expecting numeric in D1419 / R1419C4: got '#N/A'Expecting numeric in E1419 / R1419C5: got '#N/A'Expecting numeric in G1419 / R1419C7: got '#N/A'Expecting numeric in K1419 / R1419C11: got '#N/A'Expecting numeric in L1419 / R1419C12: got '#N/A'Expecting numeric in M1419 / R1419C13: got '#N/A'Expecting numeric in C1420 / R1420C3: got '#N/A'Expecting numeric in D1420 / R1420C4: got '#N/A'Expecting numeric in E1420 / R1420C5: got '#N/A'Expecting numeric in G1420 / R1420C7: got '#N/A'Expecting numeric in K1420 / R1420C11: got '#N/A'Expecting numeric in L1420 / R1420C12: got '#N/A'Expecting numeric in M1420 / R1420C13: got '#N/A'Expecting numeric in C1421 / R1421C3: got '#N/A'Expecting numeric in D1421 / R1421C4: got '#N/A'Expecting numeric in E1421 / R1421C5: got '#N/A'Expecting numeric in G1421 / R1421C7: got '#N/A'Expecting numeric in K1421 / R1421C11: got '#N/A'Expecting numeric in L1421 / R1421C12: got '#N/A'Expecting numeric in M1421 / R1421C13: got '#N/A'Expecting numeric in C1422 / R1422C3: got '#N/A'Expecting numeric in D1422 / R1422C4: got '#N/A'Expecting numeric in E1422 / R1422C5: got '#N/A'Expecting numeric in G1422 / R1422C7: got '#N/A'Expecting numeric in K1422 / R1422C11: got '#N/A'Expecting numeric in L1422 / R1422C12: got '#N/A'Expecting numeric in M1422 / R1422C13: got '#N/A'Expecting numeric in C1423 / R1423C3: got '#N/A'Expecting numeric in D1423 / R1423C4: got '#N/A'Expecting numeric in E1423 / R1423C5: got '#N/A'Expecting numeric in G1423 / R1423C7: got '#N/A'Expecting numeric in K1423 / R1423C11: got '#N/A'Expecting numeric in L1423 / R1423C12: got '#N/A'Expecting numeric in M1423 / R1423C13: got '#N/A'Expecting numeric in C1424 / R1424C3: got '#N/A'Expecting numeric in D1424 / R1424C4: got '#N/A'Expecting numeric in E1424 / R1424C5: got '#N/A'Expecting numeric in G1424 / R1424C7: got '#N/A'Expecting numeric in K1424 / R1424C11: got '#N/A'Expecting numeric in L1424 / R1424C12: got '#N/A'Expecting numeric in M1424 / R1424C13: got '#N/A'Expecting numeric in C1425 / R1425C3: got '#N/A'Expecting numeric in D1425 / R1425C4: got '#N/A'Expecting numeric in E1425 / R1425C5: got '#N/A'Expecting numeric in G1425 / R1425C7: got '#N/A'Expecting numeric in K1425 / R1425C11: got '#N/A'Expecting numeric in L1425 / R1425C12: got '#N/A'Expecting numeric in C1426 / R1426C3: got '#N/A'Expecting numeric in D1426 / R1426C4: got '#N/A'Expecting numeric in E1426 / R1426C5: got '#N/A'Expecting numeric in G1426 / R1426C7: got '#N/A'Expecting numeric in K1426 / R1426C11: got '#N/A'Expecting numeric in L1426 / R1426C12: got '#N/A'Expecting numeric in C1427 / R1427C3: got '#N/A'Expecting numeric in D1427 / R1427C4: got '#N/A'Expecting numeric in E1427 / R1427C5: got '#N/A'Expecting numeric in G1427 / R1427C7: got '#N/A'Expecting numeric in K1427 / R1427C11: got '#N/A'Expecting numeric in L1427 / R1427C12: got '#N/A'Expecting numeric in C1428 / R1428C3: got '#N/A'Expecting numeric in D1428 / R1428C4: got '#N/A'Expecting numeric in E1428 / R1428C5: got '#N/A'Expecting numeric in G1428 / R1428C7: got '#N/A'Expecting numeric in K1428 / R1428C11: got '#N/A'Expecting numeric in L1428 / R1428C12: got '#N/A'Expecting numeric in C1429 / R1429C3: got '#N/A'Expecting numeric in D1429 / R1429C4: got '#N/A'Expecting numeric in E1429 / R1429C5: got '#N/A'Expecting numeric in G1429 / R1429C7: got '#N/A'Expecting numeric in K1429 / R1429C11: got '#N/A'Expecting numeric in L1429 / R1429C12: got '#N/A'Expecting numeric in C1430 / R1430C3: got '#N/A'Expecting numeric in D1430 / R1430C4: got '#N/A'Expecting numeric in E1430 / R1430C5: got '#N/A'Expecting numeric in G1430 / R1430C7: got '#N/A'Expecting numeric in K1430 / R1430C11: got '#N/A'Expecting numeric in L1430 / R1430C12: got '#N/A'Expecting numeric in C1431 / R1431C3: got '#N/A'Expecting numeric in D1431 / R1431C4: got '#N/A'Expecting numeric in E1431 / R1431C5: got '#N/A'Expecting numeric in G1431 / R1431C7: got '#N/A'Expecting numeric in K1431 / R1431C11: got '#N/A'Expecting numeric in L1431 / R1431C12: got '#N/A'Expecting numeric in C1432 / R1432C3: got '#N/A'Expecting numeric in D1432 / R1432C4: got '#N/A'Expecting numeric in E1432 / R1432C5: got '#N/A'Expecting numeric in G1432 / R1432C7: got '#N/A'Expecting numeric in K1432 / R1432C11: got '#N/A'Expecting numeric in L1432 / R1432C12: got '#N/A'Expecting numeric in C1433 / R1433C3: got '#N/A'Expecting numeric in D1433 / R1433C4: got '#N/A'Expecting numeric in E1433 / R1433C5: got '#N/A'Expecting numeric in G1433 / R1433C7: got '#N/A'Expecting numeric in K1433 / R1433C11: got '#N/A'Expecting numeric in L1433 / R1433C12: got '#N/A'Expecting numeric in C1434 / R1434C3: got '#N/A'Expecting numeric in D1434 / R1434C4: got '#N/A'Expecting numeric in E1434 / R1434C5: got '#N/A'Expecting numeric in G1434 / R1434C7: got '#N/A'Expecting numeric in K1434 / R1434C11: got '#N/A'Expecting numeric in L1434 / R1434C12: got '#N/A'Expecting numeric in C1435 / R1435C3: got '#N/A'Expecting numeric in D1435 / R1435C4: got '#N/A'Expecting numeric in E1435 / R1435C5: got '#N/A'Expecting numeric in G1435 / R1435C7: got '#N/A'Expecting numeric in K1435 / R1435C11: got '#N/A'Expecting numeric in L1435 / R1435C12: got '#N/A'Expecting numeric in C1436 / R1436C3: got '#N/A'Expecting numeric in D1436 / R1436C4: got '#N/A'Expecting numeric in E1436 / R1436C5: got '#N/A'Expecting numeric in G1436 / R1436C7: got '#N/A'Expecting numeric in K1436 / R1436C11: got '#N/A'Expecting numeric in L1436 / R1436C12: got '#N/A'Expecting numeric in C1437 / R1437C3: got '#N/A'Expecting numeric in D1437 / R1437C4: got '#N/A'Expecting numeric in E1437 / R1437C5: got '#N/A'Expecting numeric in G1437 / R1437C7: got '#N/A'Expecting numeric in K1437 / R1437C11: got '#N/A'Expecting numeric in L1437 / R1437C12: got '#N/A'Expecting numeric in C1438 / R1438C3: got '#N/A'Expecting numeric in D1438 / R1438C4: got '#N/A'Expecting numeric in E1438 / R1438C5: got '#N/A'Expecting numeric in G1438 / R1438C7: got '#N/A'Expecting numeric in K1438 / R1438C11: got '#N/A'Expecting numeric in L1438 / R1438C12: got '#N/A'Expecting numeric in C1439 / R1439C3: got '#N/A'Expecting numeric in D1439 / R1439C4: got '#N/A'Expecting numeric in E1439 / R1439C5: got '#N/A'Expecting numeric in G1439 / R1439C7: got '#N/A'Expecting numeric in K1439 / R1439C11: got '#N/A'Expecting numeric in L1439 / R1439C12: got '#N/A'Expecting numeric in C1440 / R1440C3: got '#N/A'Expecting numeric in D1440 / R1440C4: got '#N/A'Expecting numeric in E1440 / R1440C5: got '#N/A'Expecting numeric in G1440 / R1440C7: got '#N/A'Expecting numeric in K1440 / R1440C11: got '#N/A'Expecting numeric in L1440 / R1440C12: got '#N/A'Expecting numeric in C1441 / R1441C3: got '#N/A'Expecting numeric in D1441 / R1441C4: got '#N/A'Expecting numeric in E1441 / R1441C5: got '#N/A'Expecting numeric in G1441 / R1441C7: got '#N/A'Expecting numeric in K1441 / R1441C11: got '#N/A'Expecting numeric in L1441 / R1441C12: got '#N/A'Expecting numeric in C1442 / R1442C3: got '#N/A'Expecting numeric in D1442 / R1442C4: got '#N/A'Expecting numeric in E1442 / R1442C5: got '#N/A'Expecting numeric in G1442 / R1442C7: got '#N/A'Expecting numeric in K1442 / R1442C11: got '#N/A'Expecting numeric in L1442 / R1442C12: got '#N/A'Expecting numeric in C1443 / R1443C3: got '#N/A'Expecting numeric in D1443 / R1443C4: got '#N/A'Expecting numeric in E1443 / R1443C5: got '#N/A'Expecting numeric in G1443 / R1443C7: got '#N/A'Expecting numeric in K1443 / R1443C11: got '#N/A'Expecting numeric in L1443 / R1443C12: got '#N/A'Expecting numeric in C1444 / R1444C3: got '#N/A'Expecting numeric in D1444 / R1444C4: got '#N/A'Expecting numeric in E1444 / R1444C5: got '#N/A'Expecting numeric in G1444 / R1444C7: got '#N/A'Expecting numeric in K1444 / R1444C11: got '#N/A'Expecting numeric in L1444 / R1444C12: got '#N/A'Expecting numeric in C1445 / R1445C3: got '#N/A'Expecting numeric in D1445 / R1445C4: got '#N/A'Expecting numeric in E1445 / R1445C5: got '#N/A'Expecting numeric in G1445 / R1445C7: got '#N/A'Expecting numeric in K1445 / R1445C11: got '#N/A'Expecting numeric in L1445 / R1445C12: got '#N/A'Expecting numeric in C1446 / R1446C3: got '#N/A'Expecting numeric in D1446 / R1446C4: got '#N/A'Expecting numeric in E1446 / R1446C5: got '#N/A'Expecting numeric in G1446 / R1446C7: got '#N/A'Expecting numeric in K1446 / R1446C11: got '#N/A'Expecting numeric in L1446 / R1446C12: got '#N/A'Expecting numeric in C1447 / R1447C3: got '#N/A'Expecting numeric in D1447 / R1447C4: got '#N/A'Expecting numeric in E1447 / R1447C5: got '#N/A'Expecting numeric in G1447 / R1447C7: got '#N/A'Expecting numeric in K1447 / R1447C11: got '#N/A'Expecting numeric in L1447 / R1447C12: got '#N/A'Expecting numeric in C1448 / R1448C3: got '#N/A'Expecting numeric in D1448 / R1448C4: got '#N/A'Expecting numeric in E1448 / R1448C5: got '#N/A'Expecting numeric in G1448 / R1448C7: got '#N/A'Expecting numeric in K1448 / R1448C11: got '#N/A'Expecting numeric in L1448 / R1448C12: got '#N/A'Expecting numeric in C1449 / R1449C3: got '#N/A'Expecting numeric in D1449 / R1449C4: got '#N/A'Expecting numeric in E1449 / R1449C5: got '#N/A'Expecting numeric in G1449 / R1449C7: got '#N/A'Expecting numeric in K1449 / R1449C11: got '#N/A'Expecting numeric in L1449 / R1449C12: got '#N/A'Expecting numeric in C1450 / R1450C3: got '#N/A'Expecting numeric in D1450 / R1450C4: got '#N/A'Expecting numeric in E1450 / R1450C5: got '#N/A'Expecting numeric in G1450 / R1450C7: got '#N/A'Expecting numeric in K1450 / R1450C11: got '#N/A'Expecting numeric in L1450 / R1450C12: got '#N/A'Expecting numeric in C1451 / R1451C3: got '#N/A'Expecting numeric in D1451 / R1451C4: got '#N/A'Expecting numeric in E1451 / R1451C5: got '#N/A'Expecting numeric in G1451 / R1451C7: got '#N/A'Expecting numeric in K1451 / R1451C11: got '#N/A'Expecting numeric in L1451 / R1451C12: got '#N/A'Expecting numeric in C1452 / R1452C3: got '#N/A'Expecting numeric in D1452 / R1452C4: got '#N/A'Expecting numeric in E1452 / R1452C5: got '#N/A'Expecting numeric in G1452 / R1452C7: got '#N/A'Expecting numeric in K1452 / R1452C11: got '#N/A'Expecting numeric in L1452 / R1452C12: got '#N/A'Expecting numeric in C1453 / R1453C3: got '#N/A'Expecting numeric in D1453 / R1453C4: got '#N/A'Expecting numeric in E1453 / R1453C5: got '#N/A'Expecting numeric in G1453 / R1453C7: got '#N/A'Expecting numeric in K1453 / R1453C11: got '#N/A'Expecting numeric in L1453 / R1453C12: got '#N/A'Expecting numeric in C1454 / R1454C3: got '#N/A'Expecting numeric in D1454 / R1454C4: got '#N/A'Expecting numeric in E1454 / R1454C5: got '#N/A'Expecting numeric in G1454 / R1454C7: got '#N/A'Expecting numeric in K1454 / R1454C11: got '#N/A'Expecting numeric in L1454 / R1454C12: got '#N/A'Expecting numeric in C1455 / R1455C3: got '#N/A'Expecting numeric in D1455 / R1455C4: got '#N/A'Expecting numeric in E1455 / R1455C5: got '#N/A'Expecting numeric in G1455 / R1455C7: got '#N/A'Expecting numeric in K1455 / R1455C11: got '#N/A'Expecting numeric in L1455 / R1455C12: got '#N/A'Expecting numeric in C1456 / R1456C3: got '#N/A'Expecting numeric in D1456 / R1456C4: got '#N/A'Expecting numeric in E1456 / R1456C5: got '#N/A'Expecting numeric in G1456 / R1456C7: got '#N/A'Expecting numeric in K1456 / R1456C11: got '#N/A'Expecting numeric in L1456 / R1456C12: got '#N/A'Expecting numeric in C1457 / R1457C3: got '#N/A'Expecting numeric in D1457 / R1457C4: got '#N/A'Expecting numeric in E1457 / R1457C5: got '#N/A'Expecting numeric in G1457 / R1457C7: got '#N/A'Expecting numeric in K1457 / R1457C11: got '#N/A'Expecting numeric in L1457 / R1457C12: got '#N/A'Expecting numeric in C1458 / R1458C3: got '#N/A'Expecting numeric in D1458 / R1458C4: got '#N/A'Expecting numeric in E1458 / R1458C5: got '#N/A'Expecting numeric in G1458 / R1458C7: got '#N/A'Expecting numeric in K1458 / R1458C11: got '#N/A'Expecting numeric in L1458 / R1458C12: got '#N/A'Expecting numeric in C1459 / R1459C3: got '#N/A'Expecting numeric in D1459 / R1459C4: got '#N/A'Expecting numeric in E1459 / R1459C5: got '#N/A'Expecting numeric in G1459 / R1459C7: got '#N/A'Expecting numeric in K1459 / R1459C11: got '#N/A'Expecting numeric in L1459 / R1459C12: got '#N/A'Expecting numeric in C1460 / R1460C3: got '#N/A'Expecting numeric in D1460 / R1460C4: got '#N/A'Expecting numeric in E1460 / R1460C5: got '#N/A'Expecting numeric in G1460 / R1460C7: got '#N/A'Expecting numeric in K1460 / R1460C11: got '#N/A'Expecting numeric in L1460 / R1460C12: got '#N/A'Expecting numeric in C1461 / R1461C3: got '#N/A'Expecting numeric in D1461 / R1461C4: got '#N/A'Expecting numeric in E1461 / R1461C5: got '#N/A'Expecting numeric in G1461 / R1461C7: got '#N/A'Expecting numeric in K1461 / R1461C11: got '#N/A'Expecting numeric in L1461 / R1461C12: got '#N/A'Expecting numeric in C1462 / R1462C3: got '#N/A'Expecting numeric in D1462 / R1462C4: got '#N/A'Expecting numeric in E1462 / R1462C5: got '#N/A'Expecting numeric in G1462 / R1462C7: got '#N/A'Expecting numeric in K1462 / R1462C11: got '#N/A'Expecting numeric in L1462 / R1462C12: got '#N/A'Expecting numeric in C1463 / R1463C3: got '#N/A'Expecting numeric in D1463 / R1463C4: got '#N/A'Expecting numeric in E1463 / R1463C5: got '#N/A'Expecting numeric in G1463 / R1463C7: got '#N/A'Expecting numeric in K1463 / R1463C11: got '#N/A'Expecting numeric in L1463 / R1463C12: got '#N/A'Expecting numeric in C1464 / R1464C3: got '#N/A'Expecting numeric in D1464 / R1464C4: got '#N/A'Expecting numeric in E1464 / R1464C5: got '#N/A'Expecting numeric in G1464 / R1464C7: got '#N/A'Expecting numeric in K1464 / R1464C11: got '#N/A'Expecting numeric in L1464 / R1464C12: got '#N/A'Expecting numeric in C1465 / R1465C3: got '#N/A'Expecting numeric in D1465 / R1465C4: got '#N/A'Expecting numeric in E1465 / R1465C5: got '#N/A'Expecting numeric in G1465 / R1465C7: got '#N/A'Expecting numeric in K1465 / R1465C11: got '#N/A'Expecting numeric in L1465 / R1465C12: got '#N/A'Expecting numeric in C1466 / R1466C3: got '#N/A'Expecting numeric in D1466 / R1466C4: got '#N/A'Expecting numeric in E1466 / R1466C5: got '#N/A'Expecting numeric in G1466 / R1466C7: got '#N/A'Expecting numeric in K1466 / R1466C11: got '#N/A'Expecting numeric in L1466 / R1466C12: got '#N/A'Expecting numeric in C1467 / R1467C3: got '#N/A'Expecting numeric in D1467 / R1467C4: got '#N/A'Expecting numeric in E1467 / R1467C5: got '#N/A'Expecting numeric in G1467 / R1467C7: got '#N/A'Expecting numeric in K1467 / R1467C11: got '#N/A'Expecting numeric in L1467 / R1467C12: got '#N/A'Expecting numeric in C1468 / R1468C3: got '#N/A'Expecting numeric in D1468 / R1468C4: got '#N/A'Expecting numeric in E1468 / R1468C5: got '#N/A'Expecting numeric in G1468 / R1468C7: got '#N/A'Expecting numeric in K1468 / R1468C11: got '#N/A'Expecting numeric in L1468 / R1468C12: got '#N/A'Expecting numeric in C1469 / R1469C3: got '#N/A'Expecting numeric in D1469 / R1469C4: got '#N/A'Expecting numeric in E1469 / R1469C5: got '#N/A'Expecting numeric in G1469 / R1469C7: got '#N/A'Expecting numeric in K1469 / R1469C11: got '#N/A'Expecting numeric in L1469 / R1469C12: got '#N/A'Expecting numeric in C1470 / R1470C3: got '#N/A'Expecting numeric in D1470 / R1470C4: got '#N/A'Expecting numeric in E1470 / R1470C5: got '#N/A'Expecting numeric in G1470 / R1470C7: got '#N/A'Expecting numeric in K1470 / R1470C11: got '#N/A'Expecting numeric in L1470 / R1470C12: got '#N/A'Expecting numeric in C1471 / R1471C3: got '#N/A'Expecting numeric in D1471 / R1471C4: got '#N/A'Expecting numeric in E1471 / R1471C5: got '#N/A'Expecting numeric in G1471 / R1471C7: got '#N/A'Expecting numeric in K1471 / R1471C11: got '#N/A'Expecting numeric in L1471 / R1471C12: got '#N/A'Expecting numeric in C1472 / R1472C3: got '#N/A'Expecting numeric in D1472 / R1472C4: got '#N/A'Expecting numeric in E1472 / R1472C5: got '#N/A'Expecting numeric in G1472 / R1472C7: got '#N/A'Expecting numeric in K1472 / R1472C11: got '#N/A'Expecting numeric in L1472 / R1472C12: got '#N/A'Expecting numeric in C1473 / R1473C3: got '#N/A'Expecting numeric in D1473 / R1473C4: got '#N/A'Expecting numeric in E1473 / R1473C5: got '#N/A'Expecting numeric in G1473 / R1473C7: got '#N/A'Expecting numeric in K1473 / R1473C11: got '#N/A'Expecting numeric in L1473 / R1473C12: got '#N/A'Expecting numeric in C1474 / R1474C3: got '#N/A'Expecting numeric in D1474 / R1474C4: got '#N/A'Expecting numeric in E1474 / R1474C5: got '#N/A'Expecting numeric in G1474 / R1474C7: got '#N/A'Expecting numeric in K1474 / R1474C11: got '#N/A'Expecting numeric in L1474 / R1474C12: got '#N/A'Expecting numeric in C1475 / R1475C3: got '#N/A'Expecting numeric in D1475 / R1475C4: got '#N/A'Expecting numeric in E1475 / R1475C5: got '#N/A'Expecting numeric in G1475 / R1475C7: got '#N/A'Expecting numeric in K1475 / R1475C11: got '#N/A'Expecting numeric in L1475 / R1475C12: got '#N/A'Expecting numeric in C1476 / R1476C3: got '#N/A'Expecting numeric in D1476 / R1476C4: got '#N/A'Expecting numeric in E1476 / R1476C5: got '#N/A'Expecting numeric in G1476 / R1476C7: got '#N/A'Expecting numeric in K1476 / R1476C11: got '#N/A'Expecting numeric in L1476 / R1476C12: got '#N/A'Expecting numeric in C1477 / R1477C3: got '#N/A'Expecting numeric in D1477 / R1477C4: got '#N/A'Expecting numeric in E1477 / R1477C5: got '#N/A'Expecting numeric in G1477 / R1477C7: got '#N/A'Expecting numeric in K1477 / R1477C11: got '#N/A'Expecting numeric in L1477 / R1477C12: got '#N/A'Expecting numeric in C1478 / R1478C3: got '#N/A'Expecting numeric in D1478 / R1478C4: got '#N/A'Expecting numeric in E1478 / R1478C5: got '#N/A'Expecting numeric in G1478 / R1478C7: got '#N/A'Expecting numeric in K1478 / R1478C11: got '#N/A'Expecting numeric in L1478 / R1478C12: got '#N/A'Expecting numeric in C1479 / R1479C3: got '#N/A'Expecting numeric in D1479 / R1479C4: got '#N/A'Expecting numeric in E1479 / R1479C5: got '#N/A'Expecting numeric in G1479 / R1479C7: got '#N/A'Expecting numeric in K1479 / R1479C11: got '#N/A'Expecting numeric in L1479 / R1479C12: got '#N/A'Expecting numeric in C1480 / R1480C3: got '#N/A'Expecting numeric in D1480 / R1480C4: got '#N/A'Expecting numeric in E1480 / R1480C5: got '#N/A'Expecting numeric in G1480 / R1480C7: got '#N/A'Expecting numeric in K1480 / R1480C11: got '#N/A'Expecting numeric in L1480 / R1480C12: got '#N/A'Expecting numeric in C1481 / R1481C3: got '#N/A'Expecting numeric in D1481 / R1481C4: got '#N/A'Expecting numeric in E1481 / R1481C5: got '#N/A'Expecting numeric in G1481 / R1481C7: got '#N/A'Expecting numeric in K1481 / R1481C11: got '#N/A'Expecting numeric in L1481 / R1481C12: got '#N/A'Expecting numeric in C1482 / R1482C3: got '#N/A'Expecting numeric in D1482 / R1482C4: got '#N/A'Expecting numeric in E1482 / R1482C5: got '#N/A'Expecting numeric in G1482 / R1482C7: got '#N/A'Expecting numeric in K1482 / R1482C11: got '#N/A'Expecting numeric in L1482 / R1482C12: got '#N/A'Expecting numeric in C1483 / R1483C3: got '#N/A'Expecting numeric in D1483 / R1483C4: got '#N/A'Expecting numeric in E1483 / R1483C5: got '#N/A'Expecting numeric in G1483 / R1483C7: got '#N/A'Expecting numeric in K1483 / R1483C11: got '#N/A'Expecting numeric in L1483 / R1483C12: got '#N/A'Expecting numeric in C1484 / R1484C3: got '#N/A'Expecting numeric in D1484 / R1484C4: got '#N/A'Expecting numeric in E1484 / R1484C5: got '#N/A'Expecting numeric in G1484 / R1484C7: got '#N/A'Expecting numeric in K1484 / R1484C11: got '#N/A'Expecting numeric in L1484 / R1484C12: got '#N/A'Expecting numeric in C1485 / R1485C3: got '#N/A'Expecting numeric in D1485 / R1485C4: got '#N/A'Expecting numeric in E1485 / R1485C5: got '#N/A'Expecting numeric in G1485 / R1485C7: got '#N/A'Expecting numeric in K1485 / R1485C11: got '#N/A'Expecting numeric in L1485 / R1485C12: got '#N/A'Expecting numeric in C1486 / R1486C3: got '#N/A'Expecting numeric in D1486 / R1486C4: got '#N/A'Expecting numeric in E1486 / R1486C5: got '#N/A'Expecting numeric in G1486 / R1486C7: got '#N/A'Expecting numeric in K1486 / R1486C11: got '#N/A'Expecting numeric in L1486 / R1486C12: got '#N/A'Expecting numeric in C1487 / R1487C3: got '#N/A'Expecting numeric in D1487 / R1487C4: got '#N/A'Expecting numeric in E1487 / R1487C5: got '#N/A'Expecting numeric in G1487 / R1487C7: got '#N/A'Expecting numeric in K1487 / R1487C11: got '#N/A'Expecting numeric in L1487 / R1487C12: got '#N/A'Expecting numeric in C1488 / R1488C3: got '#N/A'Expecting numeric in D1488 / R1488C4: got '#N/A'Expecting numeric in E1488 / R1488C5: got '#N/A'Expecting numeric in G1488 / R1488C7: got '#N/A'Expecting numeric in K1488 / R1488C11: got '#N/A'Expecting numeric in L1488 / R1488C12: got '#N/A'Expecting numeric in C1489 / R1489C3: got '#N/A'Expecting numeric in D1489 / R1489C4: got '#N/A'Expecting numeric in E1489 / R1489C5: got '#N/A'Expecting numeric in G1489 / R1489C7: got '#N/A'Expecting numeric in K1489 / R1489C11: got '#N/A'Expecting numeric in L1489 / R1489C12: got '#N/A'Expecting numeric in C1490 / R1490C3: got '#N/A'Expecting numeric in D1490 / R1490C4: got '#N/A'Expecting numeric in E1490 / R1490C5: got '#N/A'Expecting numeric in G1490 / R1490C7: got '#N/A'Expecting numeric in K1490 / R1490C11: got '#N/A'Expecting numeric in L1490 / R1490C12: got '#N/A'Expecting numeric in C1491 / R1491C3: got '#N/A'Expecting numeric in D1491 / R1491C4: got '#N/A'Expecting numeric in E1491 / R1491C5: got '#N/A'Expecting numeric in G1491 / R1491C7: got '#N/A'Expecting numeric in K1491 / R1491C11: got '#N/A'Expecting numeric in L1491 / R1491C12: got '#N/A'Expecting numeric in C1492 / R1492C3: got '#N/A'Expecting numeric in D1492 / R1492C4: got '#N/A'Expecting numeric in E1492 / R1492C5: got '#N/A'Expecting numeric in G1492 / R1492C7: got '#N/A'Expecting numeric in K1492 / R1492C11: got '#N/A'Expecting numeric in L1492 / R1492C12: got '#N/A'Expecting numeric in C1493 / R1493C3: got '#N/A'Expecting numeric in D1493 / R1493C4: got '#N/A'Expecting numeric in E1493 / R1493C5: got '#N/A'Expecting numeric in G1493 / R1493C7: got '#N/A'Expecting numeric in K1493 / R1493C11: got '#N/A'Expecting numeric in L1493 / R1493C12: got '#N/A'Expecting numeric in C1494 / R1494C3: got '#N/A'Expecting numeric in D1494 / R1494C4: got '#N/A'Expecting numeric in E1494 / R1494C5: got '#N/A'Expecting numeric in G1494 / R1494C7: got '#N/A'Expecting numeric in K1494 / R1494C11: got '#N/A'Expecting numeric in L1494 / R1494C12: got '#N/A'Expecting numeric in C1495 / R1495C3: got '#N/A'Expecting numeric in D1495 / R1495C4: got '#N/A'Expecting numeric in E1495 / R1495C5: got '#N/A'Expecting numeric in G1495 / R1495C7: got '#N/A'Expecting numeric in K1495 / R1495C11: got '#N/A'Expecting numeric in L1495 / R1495C12: got '#N/A'Expecting numeric in C1496 / R1496C3: got '#N/A'Expecting numeric in D1496 / R1496C4: got '#N/A'Expecting numeric in E1496 / R1496C5: got '#N/A'Expecting numeric in G1496 / R1496C7: got '#N/A'Expecting numeric in K1496 / R1496C11: got '#N/A'Expecting numeric in L1496 / R1496C12: got '#N/A'Expecting numeric in C1497 / R1497C3: got '#N/A'Expecting numeric in D1497 / R1497C4: got '#N/A'Expecting numeric in E1497 / R1497C5: got '#N/A'Expecting numeric in G1497 / R1497C7: got '#N/A'Expecting numeric in K1497 / R1497C11: got '#N/A'Expecting numeric in L1497 / R1497C12: got '#N/A'Expecting numeric in C1498 / R1498C3: got '#N/A'Expecting numeric in D1498 / R1498C4: got '#N/A'Expecting numeric in E1498 / R1498C5: got '#N/A'Expecting numeric in G1498 / R1498C7: got '#N/A'Expecting numeric in K1498 / R1498C11: got '#N/A'Expecting numeric in L1498 / R1498C12: got '#N/A'Expecting numeric in C1499 / R1499C3: got '#N/A'Expecting numeric in D1499 / R1499C4: got '#N/A'Expecting numeric in E1499 / R1499C5: got '#N/A'Expecting numeric in G1499 / R1499C7: got '#N/A'Expecting numeric in K1499 / R1499C11: got '#N/A'Expecting numeric in L1499 / R1499C12: got '#N/A'Expecting numeric in C1500 / R1500C3: got '#N/A'Expecting numeric in D1500 / R1500C4: got '#N/A'Expecting numeric in E1500 / R1500C5: got '#N/A'Expecting numeric in G1500 / R1500C7: got '#N/A'Expecting numeric in K1500 / R1500C11: got '#N/A'Expecting numeric in L1500 / R1500C12: got '#N/A'Expecting numeric in C1501 / R1501C3: got '#N/A'Expecting numeric in D1501 / R1501C4: got '#N/A'Expecting numeric in E1501 / R1501C5: got '#N/A'Expecting numeric in G1501 / R1501C7: got '#N/A'Expecting numeric in K1501 / R1501C11: got '#N/A'Expecting numeric in L1501 / R1501C12: got '#N/A'Expecting numeric in C1502 / R1502C3: got '#N/A'Expecting numeric in D1502 / R1502C4: got '#N/A'Expecting numeric in E1502 / R1502C5: got '#N/A'Expecting numeric in G1502 / R1502C7: got '#N/A'Expecting numeric in K1502 / R1502C11: got '#N/A'Expecting numeric in L1502 / R1502C12: got '#N/A'Expecting numeric in C1503 / R1503C3: got '#N/A'Expecting numeric in D1503 / R1503C4: got '#N/A'Expecting numeric in E1503 / R1503C5: got '#N/A'Expecting numeric in G1503 / R1503C7: got '#N/A'Expecting numeric in K1503 / R1503C11: got '#N/A'Expecting numeric in L1503 / R1503C12: got '#N/A'Expecting numeric in C1504 / R1504C3: got '#N/A'Expecting numeric in D1504 / R1504C4: got '#N/A'Expecting numeric in E1504 / R1504C5: got '#N/A'Expecting numeric in G1504 / R1504C7: got '#N/A'Expecting numeric in K1504 / R1504C11: got '#N/A'Expecting numeric in L1504 / R1504C12: got '#N/A'Expecting numeric in C1505 / R1505C3: got '#N/A'Expecting numeric in D1505 / R1505C4: got '#N/A'Expecting numeric in E1505 / R1505C5: got '#N/A'Expecting numeric in G1505 / R1505C7: got '#N/A'Expecting numeric in K1505 / R1505C11: got '#N/A'Expecting numeric in L1505 / R1505C12: got '#N/A'Expecting numeric in C1506 / R1506C3: got '#N/A'Expecting numeric in D1506 / R1506C4: got '#N/A'Expecting numeric in E1506 / R1506C5: got '#N/A'Expecting numeric in G1506 / R1506C7: got '#N/A'Expecting numeric in K1506 / R1506C11: got '#N/A'Expecting numeric in L1506 / R1506C12: got '#N/A'Expecting numeric in C1507 / R1507C3: got '#N/A'Expecting numeric in D1507 / R1507C4: got '#N/A'Expecting numeric in E1507 / R1507C5: got '#N/A'Expecting numeric in G1507 / R1507C7: got '#N/A'Expecting numeric in K1507 / R1507C11: got '#N/A'Expecting numeric in L1507 / R1507C12: got '#N/A'Expecting numeric in C1508 / R1508C3: got '#N/A'Expecting numeric in D1508 / R1508C4: got '#N/A'Expecting numeric in E1508 / R1508C5: got '#N/A'Expecting numeric in G1508 / R1508C7: got '#N/A'Expecting numeric in K1508 / R1508C11: got '#N/A'Expecting numeric in L1508 / R1508C12: got '#N/A'Expecting numeric in C1509 / R1509C3: got '#N/A'Expecting numeric in D1509 / R1509C4: got '#N/A'Expecting numeric in E1509 / R1509C5: got '#N/A'Expecting numeric in G1509 / R1509C7: got '#N/A'Expecting numeric in K1509 / R1509C11: got '#N/A'Expecting numeric in L1509 / R1509C12: got '#N/A'Expecting numeric in C1510 / R1510C3: got '#N/A'Expecting numeric in D1510 / R1510C4: got '#N/A'Expecting numeric in E1510 / R1510C5: got '#N/A'Expecting numeric in G1510 / R1510C7: got '#N/A'Expecting numeric in K1510 / R1510C11: got '#N/A'Expecting numeric in L1510 / R1510C12: got '#N/A'Expecting numeric in C1511 / R1511C3: got '#N/A'Expecting numeric in D1511 / R1511C4: got '#N/A'Expecting numeric in E1511 / R1511C5: got '#N/A'Expecting numeric in G1511 / R1511C7: got '#N/A'Expecting numeric in K1511 / R1511C11: got '#N/A'Expecting numeric in L1511 / R1511C12: got '#N/A'Expecting numeric in C1512 / R1512C3: got '#N/A'Expecting numeric in D1512 / R1512C4: got '#N/A'Expecting numeric in E1512 / R1512C5: got '#N/A'Expecting numeric in G1512 / R1512C7: got '#N/A'Expecting numeric in K1512 / R1512C11: got '#N/A'Expecting numeric in L1512 / R1512C12: got '#N/A'Expecting numeric in C1513 / R1513C3: got '#N/A'Expecting numeric in D1513 / R1513C4: got '#N/A'Expecting numeric in E1513 / R1513C5: got '#N/A'Expecting numeric in G1513 / R1513C7: got '#N/A'Expecting numeric in K1513 / R1513C11: got '#N/A'Expecting numeric in L1513 / R1513C12: got '#N/A'Expecting numeric in C1514 / R1514C3: got '#N/A'Expecting numeric in D1514 / R1514C4: got '#N/A'Expecting numeric in E1514 / R1514C5: got '#N/A'Expecting numeric in G1514 / R1514C7: got '#N/A'Expecting numeric in K1514 / R1514C11: got '#N/A'Expecting numeric in L1514 / R1514C12: got '#N/A'Expecting numeric in C1515 / R1515C3: got '#N/A'Expecting numeric in D1515 / R1515C4: got '#N/A'Expecting numeric in E1515 / R1515C5: got '#N/A'Expecting numeric in G1515 / R1515C7: got '#N/A'Expecting numeric in K1515 / R1515C11: got '#N/A'Expecting numeric in L1515 / R1515C12: got '#N/A'Expecting numeric in C1516 / R1516C3: got '#N/A'Expecting numeric in D1516 / R1516C4: got '#N/A'Expecting numeric in E1516 / R1516C5: got '#N/A'Expecting numeric in G1516 / R1516C7: got '#N/A'Expecting numeric in K1516 / R1516C11: got '#N/A'Expecting numeric in L1516 / R1516C12: got '#N/A'Expecting numeric in C1517 / R1517C3: got '#N/A'Expecting numeric in D1517 / R1517C4: got '#N/A'Expecting numeric in E1517 / R1517C5: got '#N/A'Expecting numeric in G1517 / R1517C7: got '#N/A'Expecting numeric in K1517 / R1517C11: got '#N/A'Expecting numeric in L1517 / R1517C12: got '#N/A'Expecting numeric in C1518 / R1518C3: got '#N/A'Expecting numeric in D1518 / R1518C4: got '#N/A'Expecting numeric in E1518 / R1518C5: got '#N/A'Expecting numeric in G1518 / R1518C7: got '#N/A'Expecting numeric in K1518 / R1518C11: got '#N/A'Expecting numeric in L1518 / R1518C12: got '#N/A'Expecting numeric in C1519 / R1519C3: got '#N/A'Expecting numeric in D1519 / R1519C4: got '#N/A'Expecting numeric in E1519 / R1519C5: got '#N/A'Expecting numeric in G1519 / R1519C7: got '#N/A'Expecting numeric in K1519 / R1519C11: got '#N/A'Expecting numeric in L1519 / R1519C12: got '#N/A'Expecting numeric in C1520 / R1520C3: got '#N/A'Expecting numeric in D1520 / R1520C4: got '#N/A'Expecting numeric in E1520 / R1520C5: got '#N/A'Expecting numeric in G1520 / R1520C7: got '#N/A'Expecting numeric in K1520 / R1520C11: got '#N/A'Expecting numeric in L1520 / R1520C12: got '#N/A'Expecting numeric in C1521 / R1521C3: got '#N/A'Expecting numeric in D1521 / R1521C4: got '#N/A'Expecting numeric in E1521 / R1521C5: got '#N/A'Expecting numeric in G1521 / R1521C7: got '#N/A'Expecting numeric in K1521 / R1521C11: got '#N/A'Expecting numeric in L1521 / R1521C12: got '#N/A'Expecting numeric in C1522 / R1522C3: got '#N/A'Expecting numeric in D1522 / R1522C4: got '#N/A'Expecting numeric in E1522 / R1522C5: got '#N/A'Expecting numeric in G1522 / R1522C7: got '#N/A'Expecting numeric in K1522 / R1522C11: got '#N/A'Expecting numeric in L1522 / R1522C12: got '#N/A'Expecting numeric in C1523 / R1523C3: got '#N/A'Expecting numeric in D1523 / R1523C4: got '#N/A'Expecting numeric in E1523 / R1523C5: got '#N/A'Expecting numeric in G1523 / R1523C7: got '#N/A'Expecting numeric in K1523 / R1523C11: got '#N/A'Expecting numeric in L1523 / R1523C12: got '#N/A'Expecting numeric in C1524 / R1524C3: got '#N/A'Expecting numeric in D1524 / R1524C4: got '#N/A'Expecting numeric in E1524 / R1524C5: got '#N/A'Expecting numeric in G1524 / R1524C7: got '#N/A'Expecting numeric in K1524 / R1524C11: got '#N/A'Expecting numeric in L1524 / R1524C12: got '#N/A'Expecting numeric in C1525 / R1525C3: got '#N/A'Expecting numeric in D1525 / R1525C4: got '#N/A'Expecting numeric in E1525 / R1525C5: got '#N/A'Expecting numeric in G1525 / R1525C7: got '#N/A'Expecting numeric in K1525 / R1525C11: got '#N/A'Expecting numeric in L1525 / R1525C12: got '#N/A'Expecting numeric in C1526 / R1526C3: got '#N/A'Expecting numeric in D1526 / R1526C4: got '#N/A'Expecting numeric in E1526 / R1526C5: got '#N/A'Expecting numeric in G1526 / R1526C7: got '#N/A'Expecting numeric in K1526 / R1526C11: got '#N/A'Expecting numeric in L1526 / R1526C12: got '#N/A'Expecting numeric in C1527 / R1527C3: got '#N/A'Expecting numeric in D1527 / R1527C4: got '#N/A'Expecting numeric in E1527 / R1527C5: got '#N/A'Expecting numeric in G1527 / R1527C7: got '#N/A'Expecting numeric in K1527 / R1527C11: got '#N/A'Expecting numeric in L1527 / R1527C12: got '#N/A'Expecting numeric in C1528 / R1528C3: got '#N/A'Expecting numeric in D1528 / R1528C4: got '#N/A'Expecting numeric in E1528 / R1528C5: got '#N/A'Expecting numeric in G1528 / R1528C7: got '#N/A'Expecting numeric in K1528 / R1528C11: got '#N/A'Expecting numeric in L1528 / R1528C12: got '#N/A'Expecting numeric in C1529 / R1529C3: got '#N/A'Expecting numeric in D1529 / R1529C4: got '#N/A'Expecting numeric in E1529 / R1529C5: got '#N/A'Expecting numeric in G1529 / R1529C7: got '#N/A'Expecting numeric in K1529 / R1529C11: got '#N/A'Expecting numeric in L1529 / R1529C12: got '#N/A'Expecting numeric in C1530 / R1530C3: got '#N/A'Expecting numeric in D1530 / R1530C4: got '#N/A'Expecting numeric in E1530 / R1530C5: got '#N/A'Expecting numeric in G1530 / R1530C7: got '#N/A'Expecting numeric in K1530 / R1530C11: got '#N/A'Expecting numeric in L1530 / R1530C12: got '#N/A'Expecting numeric in C1531 / R1531C3: got '#N/A'Expecting numeric in D1531 / R1531C4: got '#N/A'Expecting numeric in E1531 / R1531C5: got '#N/A'Expecting numeric in G1531 / R1531C7: got '#N/A'Expecting numeric in K1531 / R1531C11: got '#N/A'Expecting numeric in L1531 / R1531C12: got '#N/A'Expecting numeric in C1532 / R1532C3: got '#N/A'Expecting numeric in D1532 / R1532C4: got '#N/A'Expecting numeric in E1532 / R1532C5: got '#N/A'Expecting numeric in G1532 / R1532C7: got '#N/A'Expecting numeric in K1532 / R1532C11: got '#N/A'Expecting numeric in L1532 / R1532C12: got '#N/A'Expecting numeric in C1533 / R1533C3: got '#N/A'Expecting numeric in D1533 / R1533C4: got '#N/A'Expecting numeric in E1533 / R1533C5: got '#N/A'Expecting numeric in G1533 / R1533C7: got '#N/A'Expecting numeric in K1533 / R1533C11: got '#N/A'Expecting numeric in L1533 / R1533C12: got '#N/A'Expecting numeric in C1534 / R1534C3: got '#N/A'Expecting numeric in D1534 / R1534C4: got '#N/A'Expecting numeric in E1534 / R1534C5: got '#N/A'Expecting numeric in G1534 / R1534C7: got '#N/A'Expecting numeric in K1534 / R1534C11: got '#N/A'Expecting numeric in L1534 / R1534C12: got '#N/A'Expecting numeric in C1535 / R1535C3: got '#N/A'Expecting numeric in D1535 / R1535C4: got '#N/A'Expecting numeric in E1535 / R1535C5: got '#N/A'Expecting numeric in G1535 / R1535C7: got '#N/A'Expecting numeric in K1535 / R1535C11: got '#N/A'Expecting numeric in L1535 / R1535C12: got '#N/A'Expecting numeric in C1536 / R1536C3: got '#N/A'Expecting numeric in D1536 / R1536C4: got '#N/A'Expecting numeric in E1536 / R1536C5: got '#N/A'Expecting numeric in G1536 / R1536C7: got '#N/A'Expecting numeric in K1536 / R1536C11: got '#N/A'Expecting numeric in L1536 / R1536C12: got '#N/A'Expecting numeric in C1537 / R1537C3: got '#N/A'Expecting numeric in D1537 / R1537C4: got '#N/A'Expecting numeric in E1537 / R1537C5: got '#N/A'Expecting numeric in G1537 / R1537C7: got '#N/A'Expecting numeric in K1537 / R1537C11: got '#N/A'Expecting numeric in L1537 / R1537C12: got '#N/A'Expecting numeric in C1538 / R1538C3: got '#N/A'Expecting numeric in D1538 / R1538C4: got '#N/A'Expecting numeric in E1538 / R1538C5: got '#N/A'Expecting numeric in G1538 / R1538C7: got '#N/A'Expecting numeric in K1538 / R1538C11: got '#N/A'Expecting numeric in L1538 / R1538C12: got '#N/A'Expecting numeric in C1539 / R1539C3: got '#N/A'Expecting numeric in D1539 / R1539C4: got '#N/A'Expecting numeric in E1539 / R1539C5: got '#N/A'Expecting numeric in G1539 / R1539C7: got '#N/A'Expecting numeric in K1539 / R1539C11: got '#N/A'Expecting numeric in L1539 / R1539C12: got '#N/A'Expecting numeric in C1540 / R1540C3: got '#N/A'Expecting numeric in D1540 / R1540C4: got '#N/A'Expecting numeric in E1540 / R1540C5: got '#N/A'Expecting numeric in G1540 / R1540C7: got '#N/A'Expecting numeric in K1540 / R1540C11: got '#N/A'Expecting numeric in L1540 / R1540C12: got '#N/A'Expecting numeric in C1541 / R1541C3: got '#N/A'Expecting numeric in D1541 / R1541C4: got '#N/A'Expecting numeric in E1541 / R1541C5: got '#N/A'Expecting numeric in G1541 / R1541C7: got '#N/A'Expecting numeric in K1541 / R1541C11: got '#N/A'Expecting numeric in L1541 / R1541C12: got '#N/A'Expecting numeric in C1542 / R1542C3: got '#N/A'Expecting numeric in D1542 / R1542C4: got '#N/A'Expecting numeric in E1542 / R1542C5: got '#N/A'Expecting numeric in G1542 / R1542C7: got '#N/A'Expecting numeric in K1542 / R1542C11: got '#N/A'Expecting numeric in L1542 / R1542C12: got '#N/A'Expecting numeric in C1543 / R1543C3: got '#N/A'Expecting numeric in D1543 / R1543C4: got '#N/A'Expecting numeric in E1543 / R1543C5: got '#N/A'Expecting numeric in G1543 / R1543C7: got '#N/A'Expecting numeric in K1543 / R1543C11: got '#N/A'Expecting numeric in L1543 / R1543C12: got '#N/A'Expecting numeric in C1544 / R1544C3: got '#N/A'Expecting numeric in D1544 / R1544C4: got '#N/A'Expecting numeric in E1544 / R1544C5: got '#N/A'Expecting numeric in G1544 / R1544C7: got '#N/A'Expecting numeric in K1544 / R1544C11: got '#N/A'Expecting numeric in L1544 / R1544C12: got '#N/A'Expecting numeric in C1545 / R1545C3: got '#N/A'Expecting numeric in D1545 / R1545C4: got '#N/A'Expecting numeric in E1545 / R1545C5: got '#N/A'Expecting numeric in G1545 / R1545C7: got '#N/A'Expecting numeric in K1545 / R1545C11: got '#N/A'Expecting numeric in L1545 / R1545C12: got '#N/A'Expecting numeric in C1546 / R1546C3: got '#N/A'Expecting numeric in D1546 / R1546C4: got '#N/A'Expecting numeric in E1546 / R1546C5: got '#N/A'Expecting numeric in G1546 / R1546C7: got '#N/A'Expecting numeric in K1546 / R1546C11: got '#N/A'Expecting numeric in L1546 / R1546C12: got '#N/A'Expecting numeric in C1547 / R1547C3: got '#N/A'Expecting numeric in D1547 / R1547C4: got '#N/A'Expecting numeric in E1547 / R1547C5: got '#N/A'Expecting numeric in G1547 / R1547C7: got '#N/A'Expecting numeric in K1547 / R1547C11: got '#N/A'Expecting numeric in L1547 / R1547C12: got '#N/A'Expecting numeric in C1548 / R1548C3: got '#N/A'Expecting numeric in D1548 / R1548C4: got '#N/A'Expecting numeric in E1548 / R1548C5: got '#N/A'Expecting numeric in G1548 / R1548C7: got '#N/A'Expecting numeric in K1548 / R1548C11: got '#N/A'Expecting numeric in L1548 / R1548C12: got '#N/A'Expecting numeric in C1549 / R1549C3: got '#N/A'Expecting numeric in D1549 / R1549C4: got '#N/A'Expecting numeric in E1549 / R1549C5: got '#N/A'Expecting numeric in G1549 / R1549C7: got '#N/A'Expecting numeric in K1549 / R1549C11: got '#N/A'Expecting numeric in L1549 / R1549C12: got '#N/A'Expecting numeric in C1550 / R1550C3: got '#N/A'Expecting numeric in D1550 / R1550C4: got '#N/A'Expecting numeric in E1550 / R1550C5: got '#N/A'Expecting numeric in G1550 / R1550C7: got '#N/A'Expecting numeric in K1550 / R1550C11: got '#N/A'Expecting numeric in L1550 / R1550C12: got '#N/A'Expecting numeric in C1551 / R1551C3: got '#N/A'Expecting numeric in D1551 / R1551C4: got '#N/A'Expecting numeric in E1551 / R1551C5: got '#N/A'Expecting numeric in G1551 / R1551C7: got '#N/A'Expecting numeric in K1551 / R1551C11: got '#N/A'Expecting numeric in L1551 / R1551C12: got '#N/A'Expecting numeric in C1552 / R1552C3: got '#N/A'Expecting numeric in D1552 / R1552C4: got '#N/A'Expecting numeric in E1552 / R1552C5: got '#N/A'Expecting numeric in G1552 / R1552C7: got '#N/A'Expecting numeric in K1552 / R1552C11: got '#N/A'Expecting numeric in L1552 / R1552C12: got '#N/A'Expecting numeric in C1553 / R1553C3: got '#N/A'Expecting numeric in D1553 / R1553C4: got '#N/A'Expecting numeric in E1553 / R1553C5: got '#N/A'Expecting numeric in G1553 / R1553C7: got '#N/A'Expecting numeric in K1553 / R1553C11: got '#N/A'Expecting numeric in L1553 / R1553C12: got '#N/A'Expecting numeric in C1554 / R1554C3: got '#N/A'Expecting numeric in D1554 / R1554C4: got '#N/A'Expecting numeric in E1554 / R1554C5: got '#N/A'Expecting numeric in G1554 / R1554C7: got '#N/A'Expecting numeric in K1554 / R1554C11: got '#N/A'Expecting numeric in L1554 / R1554C12: got '#N/A'Expecting numeric in C1555 / R1555C3: got '#N/A'Expecting numeric in D1555 / R1555C4: got '#N/A'Expecting numeric in E1555 / R1555C5: got '#N/A'Expecting numeric in G1555 / R1555C7: got '#N/A'Expecting numeric in K1555 / R1555C11: got '#N/A'Expecting numeric in L1555 / R1555C12: got '#N/A'Expecting numeric in C1556 / R1556C3: got '#N/A'Expecting numeric in D1556 / R1556C4: got '#N/A'Expecting numeric in E1556 / R1556C5: got '#N/A'Expecting numeric in G1556 / R1556C7: got '#N/A'Expecting numeric in K1556 / R1556C11: got '#N/A'Expecting numeric in L1556 / R1556C12: got '#N/A'Expecting numeric in C1557 / R1557C3: got '#N/A'Expecting numeric in D1557 / R1557C4: got '#N/A'Expecting numeric in E1557 / R1557C5: got '#N/A'Expecting numeric in G1557 / R1557C7: got '#N/A'Expecting numeric in K1557 / R1557C11: got '#N/A'Expecting numeric in L1557 / R1557C12: got '#N/A'Expecting numeric in C1558 / R1558C3: got '#N/A'Expecting numeric in D1558 / R1558C4: got '#N/A'Expecting numeric in E1558 / R1558C5: got '#N/A'Expecting numeric in G1558 / R1558C7: got '#N/A'Expecting numeric in K1558 / R1558C11: got '#N/A'Expecting numeric in L1558 / R1558C12: got '#N/A'Expecting numeric in C1559 / R1559C3: got '#N/A'Expecting numeric in D1559 / R1559C4: got '#N/A'Expecting numeric in E1559 / R1559C5: got '#N/A'Expecting numeric in G1559 / R1559C7: got '#N/A'Expecting numeric in K1559 / R1559C11: got '#N/A'Expecting numeric in L1559 / R1559C12: got '#N/A'Expecting numeric in C1560 / R1560C3: got '#N/A'Expecting numeric in D1560 / R1560C4: got '#N/A'Expecting numeric in E1560 / R1560C5: got '#N/A'Expecting numeric in G1560 / R1560C7: got '#N/A'Expecting numeric in K1560 / R1560C11: got '#N/A'Expecting numeric in L1560 / R1560C12: got '#N/A'Expecting numeric in C1561 / R1561C3: got '#N/A'Expecting numeric in D1561 / R1561C4: got '#N/A'Expecting numeric in E1561 / R1561C5: got '#N/A'Expecting numeric in G1561 / R1561C7: got '#N/A'Expecting numeric in K1561 / R1561C11: got '#N/A'Expecting numeric in L1561 / R1561C12: got '#N/A'Expecting numeric in C1562 / R1562C3: got '#N/A'Expecting numeric in D1562 / R1562C4: got '#N/A'Expecting numeric in E1562 / R1562C5: got '#N/A'Expecting numeric in G1562 / R1562C7: got '#N/A'Expecting numeric in K1562 / R1562C11: got '#N/A'Expecting numeric in L1562 / R1562C12: got '#N/A'Expecting numeric in C1563 / R1563C3: got '#N/A'Expecting numeric in D1563 / R1563C4: got '#N/A'Expecting numeric in E1563 / R1563C5: got '#N/A'Expecting numeric in G1563 / R1563C7: got '#N/A'Expecting numeric in K1563 / R1563C11: got '#N/A'Expecting numeric in L1563 / R1563C12: got '#N/A'Expecting numeric in C1564 / R1564C3: got '#N/A'Expecting numeric in D1564 / R1564C4: got '#N/A'Expecting numeric in E1564 / R1564C5: got '#N/A'Expecting numeric in G1564 / R1564C7: got '#N/A'Expecting numeric in K1564 / R1564C11: got '#N/A'Expecting numeric in L1564 / R1564C12: got '#N/A'Expecting numeric in C1565 / R1565C3: got '#N/A'Expecting numeric in D1565 / R1565C4: got '#N/A'Expecting numeric in E1565 / R1565C5: got '#N/A'Expecting numeric in G1565 / R1565C7: got '#N/A'Expecting numeric in K1565 / R1565C11: got '#N/A'Expecting numeric in L1565 / R1565C12: got '#N/A'Expecting numeric in C1566 / R1566C3: got '#N/A'Expecting numeric in D1566 / R1566C4: got '#N/A'Expecting numeric in E1566 / R1566C5: got '#N/A'Expecting numeric in G1566 / R1566C7: got '#N/A'Expecting numeric in K1566 / R1566C11: got '#N/A'Expecting numeric in L1566 / R1566C12: got '#N/A'Expecting numeric in C1567 / R1567C3: got '#N/A'Expecting numeric in D1567 / R1567C4: got '#N/A'Expecting numeric in E1567 / R1567C5: got '#N/A'Expecting numeric in G1567 / R1567C7: got '#N/A'Expecting numeric in K1567 / R1567C11: got '#N/A'Expecting numeric in L1567 / R1567C12: got '#N/A'Expecting numeric in C1568 / R1568C3: got '#N/A'Expecting numeric in D1568 / R1568C4: got '#N/A'Expecting numeric in E1568 / R1568C5: got '#N/A'Expecting numeric in G1568 / R1568C7: got '#N/A'Expecting numeric in K1568 / R1568C11: got '#N/A'Expecting numeric in L1568 / R1568C12: got '#N/A'Expecting numeric in C1569 / R1569C3: got '#N/A'Expecting numeric in D1569 / R1569C4: got '#N/A'Expecting numeric in E1569 / R1569C5: got '#N/A'Expecting numeric in G1569 / R1569C7: got '#N/A'Expecting numeric in K1569 / R1569C11: got '#N/A'Expecting numeric in L1569 / R1569C12: got '#N/A'Expecting numeric in C1570 / R1570C3: got '#N/A'Expecting numeric in D1570 / R1570C4: got '#N/A'Expecting numeric in E1570 / R1570C5: got '#N/A'Expecting numeric in G1570 / R1570C7: got '#N/A'Expecting numeric in K1570 / R1570C11: got '#N/A'Expecting numeric in L1570 / R1570C12: got '#N/A'Expecting numeric in C1571 / R1571C3: got '#N/A'Expecting numeric in D1571 / R1571C4: got '#N/A'Expecting numeric in E1571 / R1571C5: got '#N/A'Expecting numeric in G1571 / R1571C7: got '#N/A'Expecting numeric in K1571 / R1571C11: got '#N/A'Expecting numeric in L1571 / R1571C12: got '#N/A'Expecting numeric in C1572 / R1572C3: got '#N/A'Expecting numeric in D1572 / R1572C4: got '#N/A'Expecting numeric in E1572 / R1572C5: got '#N/A'Expecting numeric in G1572 / R1572C7: got '#N/A'Expecting numeric in K1572 / R1572C11: got '#N/A'Expecting numeric in L1572 / R1572C12: got '#N/A'Expecting numeric in C1573 / R1573C3: got '#N/A'Expecting numeric in D1573 / R1573C4: got '#N/A'Expecting numeric in E1573 / R1573C5: got '#N/A'Expecting numeric in G1573 / R1573C7: got '#N/A'Expecting numeric in K1573 / R1573C11: got '#N/A'Expecting numeric in L1573 / R1573C12: got '#N/A'Expecting numeric in C1574 / R1574C3: got '#N/A'Expecting numeric in D1574 / R1574C4: got '#N/A'Expecting numeric in E1574 / R1574C5: got '#N/A'Expecting numeric in G1574 / R1574C7: got '#N/A'Expecting numeric in K1574 / R1574C11: got '#N/A'Expecting numeric in L1574 / R1574C12: got '#N/A'Expecting numeric in C1575 / R1575C3: got '#N/A'Expecting numeric in D1575 / R1575C4: got '#N/A'Expecting numeric in E1575 / R1575C5: got '#N/A'Expecting numeric in G1575 / R1575C7: got '#N/A'Expecting numeric in K1575 / R1575C11: got '#N/A'Expecting numeric in L1575 / R1575C12: got '#N/A'Expecting numeric in C1576 / R1576C3: got '#N/A'Expecting numeric in D1576 / R1576C4: got '#N/A'Expecting numeric in E1576 / R1576C5: got '#N/A'Expecting numeric in G1576 / R1576C7: got '#N/A'Expecting numeric in K1576 / R1576C11: got '#N/A'Expecting numeric in L1576 / R1576C12: got '#N/A'Expecting numeric in C1577 / R1577C3: got '#N/A'Expecting numeric in D1577 / R1577C4: got '#N/A'Expecting numeric in E1577 / R1577C5: got '#N/A'Expecting numeric in G1577 / R1577C7: got '#N/A'Expecting numeric in K1577 / R1577C11: got '#N/A'Expecting numeric in L1577 / R1577C12: got '#N/A'Expecting numeric in C1578 / R1578C3: got '#N/A'Expecting numeric in D1578 / R1578C4: got '#N/A'Expecting numeric in E1578 / R1578C5: got '#N/A'Expecting numeric in G1578 / R1578C7: got '#N/A'Expecting numeric in K1578 / R1578C11: got '#N/A'Expecting numeric in L1578 / R1578C12: got '#N/A'Expecting numeric in C1579 / R1579C3: got '#N/A'Expecting numeric in D1579 / R1579C4: got '#N/A'Expecting numeric in E1579 / R1579C5: got '#N/A'Expecting numeric in G1579 / R1579C7: got '#N/A'Expecting numeric in K1579 / R1579C11: got '#N/A'Expecting numeric in L1579 / R1579C12: got '#N/A'Expecting numeric in C1580 / R1580C3: got '#N/A'Expecting numeric in D1580 / R1580C4: got '#N/A'Expecting numeric in E1580 / R1580C5: got '#N/A'Expecting numeric in G1580 / R1580C7: got '#N/A'Expecting numeric in K1580 / R1580C11: got '#N/A'Expecting numeric in L1580 / R1580C12: got '#N/A'Expecting numeric in C1581 / R1581C3: got '#N/A'Expecting numeric in D1581 / R1581C4: got '#N/A'Expecting numeric in E1581 / R1581C5: got '#N/A'Expecting numeric in G1581 / R1581C7: got '#N/A'Expecting numeric in K1581 / R1581C11: got '#N/A'Expecting numeric in L1581 / R1581C12: got '#N/A'Expecting numeric in C1582 / R1582C3: got '#N/A'Expecting numeric in D1582 / R1582C4: got '#N/A'Expecting numeric in E1582 / R1582C5: got '#N/A'Expecting numeric in G1582 / R1582C7: got '#N/A'Expecting numeric in K1582 / R1582C11: got '#N/A'Expecting numeric in L1582 / R1582C12: got '#N/A'Expecting numeric in C1583 / R1583C3: got '#N/A'Expecting numeric in D1583 / R1583C4: got '#N/A'Expecting numeric in E1583 / R1583C5: got '#N/A'Expecting numeric in G1583 / R1583C7: got '#N/A'Expecting numeric in K1583 / R1583C11: got '#N/A'Expecting numeric in L1583 / R1583C12: got '#N/A'Expecting numeric in C1584 / R1584C3: got '#N/A'Expecting numeric in D1584 / R1584C4: got '#N/A'Expecting numeric in E1584 / R1584C5: got '#N/A'Expecting numeric in G1584 / R1584C7: got '#N/A'Expecting numeric in K1584 / R1584C11: got '#N/A'Expecting numeric in L1584 / R1584C12: got '#N/A'Expecting numeric in C1585 / R1585C3: got '#N/A'Expecting numeric in D1585 / R1585C4: got '#N/A'Expecting numeric in E1585 / R1585C5: got '#N/A'Expecting numeric in G1585 / R1585C7: got '#N/A'Expecting numeric in K1585 / R1585C11: got '#N/A'Expecting numeric in L1585 / R1585C12: got '#N/A'Expecting numeric in C1586 / R1586C3: got '#N/A'Expecting numeric in D1586 / R1586C4: got '#N/A'Expecting numeric in E1586 / R1586C5: got '#N/A'Expecting numeric in G1586 / R1586C7: got '#N/A'Expecting numeric in K1586 / R1586C11: got '#N/A'Expecting numeric in L1586 / R1586C12: got '#N/A'Expecting numeric in C1587 / R1587C3: got '#N/A'Expecting numeric in D1587 / R1587C4: got '#N/A'Expecting numeric in E1587 / R1587C5: got '#N/A'Expecting numeric in G1587 / R1587C7: got '#N/A'Expecting numeric in K1587 / R1587C11: got '#N/A'Expecting numeric in L1587 / R1587C12: got '#N/A'Expecting numeric in C1588 / R1588C3: got '#N/A'Expecting numeric in D1588 / R1588C4: got '#N/A'Expecting numeric in E1588 / R1588C5: got '#N/A'Expecting numeric in G1588 / R1588C7: got '#N/A'Expecting numeric in K1588 / R1588C11: got '#N/A'Expecting numeric in L1588 / R1588C12: got '#N/A'Expecting numeric in C1589 / R1589C3: got '#N/A'Expecting numeric in D1589 / R1589C4: got '#N/A'Expecting numeric in E1589 / R1589C5: got '#N/A'Expecting numeric in G1589 / R1589C7: got '#N/A'Expecting numeric in K1589 / R1589C11: got '#N/A'Expecting numeric in L1589 / R1589C12: got '#N/A'Expecting numeric in C1590 / R1590C3: got '#N/A'Expecting numeric in D1590 / R1590C4: got '#N/A'Expecting numeric in E1590 / R1590C5: got '#N/A'Expecting numeric in G1590 / R1590C7: got '#N/A'Expecting numeric in K1590 / R1590C11: got '#N/A'Expecting numeric in L1590 / R1590C12: got '#N/A'Expecting numeric in C1591 / R1591C3: got '#N/A'Expecting numeric in D1591 / R1591C4: got '#N/A'Expecting numeric in E1591 / R1591C5: got '#N/A'Expecting numeric in G1591 / R1591C7: got '#N/A'Expecting numeric in K1591 / R1591C11: got '#N/A'Expecting numeric in L1591 / R1591C12: got '#N/A'Expecting numeric in C1592 / R1592C3: got '#N/A'Expecting numeric in D1592 / R1592C4: got '#N/A'Expecting numeric in E1592 / R1592C5: got '#N/A'Expecting numeric in G1592 / R1592C7: got '#N/A'Expecting numeric in K1592 / R1592C11: got '#N/A'Expecting numeric in L1592 / R1592C12: got '#N/A'Expecting numeric in C1593 / R1593C3: got '#N/A'Expecting numeric in D1593 / R1593C4: got '#N/A'Expecting numeric in E1593 / R1593C5: got '#N/A'Expecting numeric in G1593 / R1593C7: got '#N/A'Expecting numeric in K1593 / R1593C11: got '#N/A'Expecting numeric in L1593 / R1593C12: got '#N/A'Expecting numeric in C1594 / R1594C3: got '#N/A'Expecting numeric in D1594 / R1594C4: got '#N/A'Expecting numeric in E1594 / R1594C5: got '#N/A'Expecting numeric in G1594 / R1594C7: got '#N/A'Expecting numeric in K1594 / R1594C11: got '#N/A'Expecting numeric in L1594 / R1594C12: got '#N/A'Expecting numeric in C1595 / R1595C3: got '#N/A'Expecting numeric in D1595 / R1595C4: got '#N/A'Expecting numeric in E1595 / R1595C5: got '#N/A'Expecting numeric in G1595 / R1595C7: got '#N/A'Expecting numeric in K1595 / R1595C11: got '#N/A'Expecting numeric in L1595 / R1595C12: got '#N/A'Expecting numeric in C1596 / R1596C3: got '#N/A'Expecting numeric in D1596 / R1596C4: got '#N/A'Expecting numeric in E1596 / R1596C5: got '#N/A'Expecting numeric in G1596 / R1596C7: got '#N/A'Expecting numeric in K1596 / R1596C11: got '#N/A'Expecting numeric in L1596 / R1596C12: got '#N/A'Expecting numeric in C1597 / R1597C3: got '#N/A'Expecting numeric in D1597 / R1597C4: got '#N/A'Expecting numeric in E1597 / R1597C5: got '#N/A'Expecting numeric in G1597 / R1597C7: got '#N/A'Expecting numeric in K1597 / R1597C11: got '#N/A'Expecting numeric in L1597 / R1597C12: got '#N/A'Expecting numeric in C1598 / R1598C3: got '#N/A'Expecting numeric in D1598 / R1598C4: got '#N/A'Expecting numeric in E1598 / R1598C5: got '#N/A'Expecting numeric in G1598 / R1598C7: got '#N/A'Expecting numeric in K1598 / R1598C11: got '#N/A'Expecting numeric in L1598 / R1598C12: got '#N/A'Expecting numeric in C1599 / R1599C3: got '#N/A'Expecting numeric in D1599 / R1599C4: got '#N/A'Expecting numeric in E1599 / R1599C5: got '#N/A'Expecting numeric in G1599 / R1599C7: got '#N/A'Expecting numeric in K1599 / R1599C11: got '#N/A'Expecting numeric in L1599 / R1599C12: got '#N/A'Expecting numeric in C1600 / R1600C3: got '#N/A'Expecting numeric in D1600 / R1600C4: got '#N/A'Expecting numeric in E1600 / R1600C5: got '#N/A'Expecting numeric in G1600 / R1600C7: got '#N/A'Expecting numeric in K1600 / R1600C11: got '#N/A'Expecting numeric in L1600 / R1600C12: got '#N/A'Expecting numeric in C1601 / R1601C3: got '#N/A'Expecting numeric in D1601 / R1601C4: got '#N/A'Expecting numeric in E1601 / R1601C5: got '#N/A'Expecting numeric in G1601 / R1601C7: got '#N/A'Expecting numeric in K1601 / R1601C11: got '#N/A'Expecting numeric in L1601 / R1601C12: got '#N/A'Expecting numeric in C1602 / R1602C3: got '#N/A'Expecting numeric in D1602 / R1602C4: got '#N/A'Expecting numeric in E1602 / R1602C5: got '#N/A'Expecting numeric in G1602 / R1602C7: got '#N/A'Expecting numeric in K1602 / R1602C11: got '#N/A'Expecting numeric in L1602 / R1602C12: got '#N/A'Expecting numeric in C1603 / R1603C3: got '#N/A'Expecting numeric in D1603 / R1603C4: got '#N/A'Expecting numeric in E1603 / R1603C5: got '#N/A'Expecting numeric in G1603 / R1603C7: got '#N/A'Expecting numeric in K1603 / R1603C11: got '#N/A'Expecting numeric in L1603 / R1603C12: got '#N/A'Expecting numeric in C1604 / R1604C3: got '#N/A'Expecting numeric in D1604 / R1604C4: got '#N/A'Expecting numeric in E1604 / R1604C5: got '#N/A'Expecting numeric in G1604 / R1604C7: got '#N/A'Expecting numeric in K1604 / R1604C11: got '#N/A'Expecting numeric in L1604 / R1604C12: got '#N/A'Expecting numeric in C1605 / R1605C3: got '#N/A'Expecting numeric in D1605 / R1605C4: got '#N/A'Expecting numeric in E1605 / R1605C5: got '#N/A'Expecting numeric in G1605 / R1605C7: got '#N/A'Expecting numeric in K1605 / R1605C11: got '#N/A'Expecting numeric in L1605 / R1605C12: got '#N/A'Expecting numeric in C1606 / R1606C3: got '#N/A'Expecting numeric in D1606 / R1606C4: got '#N/A'Expecting numeric in E1606 / R1606C5: got '#N/A'Expecting numeric in G1606 / R1606C7: got '#N/A'Expecting numeric in K1606 / R1606C11: got '#N/A'Expecting numeric in L1606 / R1606C12: got '#N/A'Expecting numeric in C1607 / R1607C3: got '#N/A'Expecting numeric in D1607 / R1607C4: got '#N/A'Expecting numeric in E1607 / R1607C5: got '#N/A'Expecting numeric in G1607 / R1607C7: got '#N/A'Expecting numeric in K1607 / R1607C11: got '#N/A'Expecting numeric in L1607 / R1607C12: got '#N/A'Expecting numeric in C1608 / R1608C3: got '#N/A'Expecting numeric in D1608 / R1608C4: got '#N/A'Expecting numeric in E1608 / R1608C5: got '#N/A'Expecting numeric in G1608 / R1608C7: got '#N/A'Expecting numeric in K1608 / R1608C11: got '#N/A'Expecting numeric in L1608 / R1608C12: got '#N/A'Expecting numeric in C1609 / R1609C3: got '#N/A'Expecting numeric in D1609 / R1609C4: got '#N/A'Expecting numeric in E1609 / R1609C5: got '#N/A'Expecting numeric in G1609 / R1609C7: got '#N/A'Expecting numeric in K1609 / R1609C11: got '#N/A'Expecting numeric in L1609 / R1609C12: got '#N/A'Expecting numeric in C1610 / R1610C3: got '#N/A'Expecting numeric in D1610 / R1610C4: got '#N/A'Expecting numeric in E1610 / R1610C5: got '#N/A'Expecting numeric in G1610 / R1610C7: got '#N/A'Expecting numeric in K1610 / R1610C11: got '#N/A'Expecting numeric in L1610 / R1610C12: got '#N/A'Expecting numeric in C1611 / R1611C3: got '#N/A'Expecting numeric in D1611 / R1611C4: got '#N/A'Expecting numeric in E1611 / R1611C5: got '#N/A'Expecting numeric in G1611 / R1611C7: got '#N/A'Expecting numeric in K1611 / R1611C11: got '#N/A'Expecting numeric in L1611 / R1611C12: got '#N/A'Expecting numeric in C1612 / R1612C3: got '#N/A'Expecting numeric in D1612 / R1612C4: got '#N/A'Expecting numeric in E1612 / R1612C5: got '#N/A'Expecting numeric in G1612 / R1612C7: got '#N/A'Expecting numeric in K1612 / R1612C11: got '#N/A'Expecting numeric in L1612 / R1612C12: got '#N/A'Expecting numeric in C1613 / R1613C3: got '#N/A'Expecting numeric in D1613 / R1613C4: got '#N/A'Expecting numeric in E1613 / R1613C5: got '#N/A'Expecting numeric in G1613 / R1613C7: got '#N/A'Expecting numeric in K1613 / R1613C11: got '#N/A'Expecting numeric in L1613 / R1613C12: got '#N/A'Expecting numeric in C1614 / R1614C3: got '#N/A'Expecting numeric in D1614 / R1614C4: got '#N/A'Expecting numeric in E1614 / R1614C5: got '#N/A'Expecting numeric in G1614 / R1614C7: got '#N/A'Expecting numeric in K1614 / R1614C11: got '#N/A'Expecting numeric in L1614 / R1614C12: got '#N/A'Expecting numeric in C1615 / R1615C3: got '#N/A'Expecting numeric in D1615 / R1615C4: got '#N/A'Expecting numeric in E1615 / R1615C5: got '#N/A'Expecting numeric in G1615 / R1615C7: got '#N/A'Expecting numeric in K1615 / R1615C11: got '#N/A'Expecting numeric in L1615 / R1615C12: got '#N/A'Expecting numeric in C1616 / R1616C3: got '#N/A'Expecting numeric in D1616 / R1616C4: got '#N/A'Expecting numeric in E1616 / R1616C5: got '#N/A'Expecting numeric in G1616 / R1616C7: got '#N/A'Expecting numeric in K1616 / R1616C11: got '#N/A'Expecting numeric in L1616 / R1616C12: got '#N/A'Expecting numeric in C1617 / R1617C3: got '#N/A'Expecting numeric in D1617 / R1617C4: got '#N/A'Expecting numeric in E1617 / R1617C5: got '#N/A'Expecting numeric in G1617 / R1617C7: got '#N/A'Expecting numeric in K1617 / R1617C11: got '#N/A'Expecting numeric in L1617 / R1617C12: got '#N/A'Expecting numeric in C1618 / R1618C3: got '#N/A'Expecting numeric in D1618 / R1618C4: got '#N/A'Expecting numeric in E1618 / R1618C5: got '#N/A'Expecting numeric in G1618 / R1618C7: got '#N/A'Expecting numeric in K1618 / R1618C11: got '#N/A'Expecting numeric in L1618 / R1618C12: got '#N/A'Expecting numeric in C1619 / R1619C3: got '#N/A'Expecting numeric in D1619 / R1619C4: got '#N/A'Expecting numeric in E1619 / R1619C5: got '#N/A'Expecting numeric in G1619 / R1619C7: got '#N/A'Expecting numeric in K1619 / R1619C11: got '#N/A'Expecting numeric in L1619 / R1619C12: got '#N/A'Expecting numeric in C1620 / R1620C3: got '#N/A'Expecting numeric in D1620 / R1620C4: got '#N/A'Expecting numeric in E1620 / R1620C5: got '#N/A'Expecting numeric in G1620 / R1620C7: got '#N/A'Expecting numeric in K1620 / R1620C11: got '#N/A'Expecting numeric in L1620 / R1620C12: got '#N/A'Expecting numeric in C1621 / R1621C3: got '#N/A'Expecting numeric in D1621 / R1621C4: got '#N/A'Expecting numeric in E1621 / R1621C5: got '#N/A'Expecting numeric in G1621 / R1621C7: got '#N/A'Expecting numeric in K1621 / R1621C11: got '#N/A'Expecting numeric in L1621 / R1621C12: got '#N/A'Expecting numeric in C1622 / R1622C3: got '#N/A'Expecting numeric in D1622 / R1622C4: got '#N/A'Expecting numeric in E1622 / R1622C5: got '#N/A'Expecting numeric in G1622 / R1622C7: got '#N/A'Expecting numeric in K1622 / R1622C11: got '#N/A'Expecting numeric in L1622 / R1622C12: got '#N/A'Expecting numeric in C1623 / R1623C3: got '#N/A'Expecting numeric in D1623 / R1623C4: got '#N/A'Expecting numeric in E1623 / R1623C5: got '#N/A'Expecting numeric in G1623 / R1623C7: got '#N/A'Expecting numeric in K1623 / R1623C11: got '#N/A'Expecting numeric in L1623 / R1623C12: got '#N/A'Expecting numeric in C1624 / R1624C3: got '#N/A'Expecting numeric in D1624 / R1624C4: got '#N/A'Expecting numeric in E1624 / R1624C5: got '#N/A'Expecting numeric in G1624 / R1624C7: got '#N/A'Expecting numeric in K1624 / R1624C11: got '#N/A'Expecting numeric in L1624 / R1624C12: got '#N/A'Expecting numeric in C1625 / R1625C3: got '#N/A'Expecting numeric in D1625 / R1625C4: got '#N/A'Expecting numeric in E1625 / R1625C5: got '#N/A'Expecting numeric in G1625 / R1625C7: got '#N/A'Expecting numeric in K1625 / R1625C11: got '#N/A'Expecting numeric in L1625 / R1625C12: got '#N/A'Expecting numeric in C1626 / R1626C3: got '#N/A'Expecting numeric in D1626 / R1626C4: got '#N/A'Expecting numeric in E1626 / R1626C5: got '#N/A'Expecting numeric in G1626 / R1626C7: got '#N/A'Expecting numeric in K1626 / R1626C11: got '#N/A'Expecting numeric in L1626 / R1626C12: got '#N/A'Expecting numeric in C1627 / R1627C3: got '#N/A'Expecting numeric in D1627 / R1627C4: got '#N/A'Expecting numeric in E1627 / R1627C5: got '#N/A'Expecting numeric in G1627 / R1627C7: got '#N/A'Expecting numeric in K1627 / R1627C11: got '#N/A'Expecting numeric in L1627 / R1627C12: got '#N/A'Expecting numeric in C1628 / R1628C3: got '#N/A'Expecting numeric in D1628 / R1628C4: got '#N/A'Expecting numeric in E1628 / R1628C5: got '#N/A'Expecting numeric in G1628 / R1628C7: got '#N/A'Expecting numeric in K1628 / R1628C11: got '#N/A'Expecting numeric in L1628 / R1628C12: got '#N/A'Expecting numeric in C1629 / R1629C3: got '#N/A'Expecting numeric in D1629 / R1629C4: got '#N/A'Expecting numeric in E1629 / R1629C5: got '#N/A'Expecting numeric in G1629 / R1629C7: got '#N/A'Expecting numeric in K1629 / R1629C11: got '#N/A'Expecting numeric in L1629 / R1629C12: got '#N/A'Expecting numeric in C1630 / R1630C3: got '#N/A'Expecting numeric in D1630 / R1630C4: got '#N/A'Expecting numeric in E1630 / R1630C5: got '#N/A'Expecting numeric in G1630 / R1630C7: got '#N/A'Expecting numeric in K1630 / R1630C11: got '#N/A'Expecting numeric in L1630 / R1630C12: got '#N/A'Expecting numeric in C1631 / R1631C3: got '#N/A'Expecting numeric in D1631 / R1631C4: got '#N/A'Expecting numeric in E1631 / R1631C5: got '#N/A'Expecting numeric in G1631 / R1631C7: got '#N/A'Expecting numeric in K1631 / R1631C11: got '#N/A'Expecting numeric in L1631 / R1631C12: got '#N/A'Expecting numeric in C1632 / R1632C3: got '#N/A'Expecting numeric in D1632 / R1632C4: got '#N/A'Expecting numeric in E1632 / R1632C5: got '#N/A'Expecting numeric in G1632 / R1632C7: got '#N/A'Expecting numeric in K1632 / R1632C11: got '#N/A'Expecting numeric in L1632 / R1632C12: got '#N/A'Expecting numeric in C1633 / R1633C3: got '#N/A'Expecting numeric in D1633 / R1633C4: got '#N/A'Expecting numeric in E1633 / R1633C5: got '#N/A'Expecting numeric in G1633 / R1633C7: got '#N/A'Expecting numeric in K1633 / R1633C11: got '#N/A'Expecting numeric in L1633 / R1633C12: got '#N/A'Expecting numeric in C1634 / R1634C3: got '#N/A'Expecting numeric in D1634 / R1634C4: got '#N/A'Expecting numeric in E1634 / R1634C5: got '#N/A'Expecting numeric in G1634 / R1634C7: got '#N/A'Expecting numeric in K1634 / R1634C11: got '#N/A'Expecting numeric in L1634 / R1634C12: got '#N/A'Expecting numeric in C1635 / R1635C3: got '#N/A'Expecting numeric in D1635 / R1635C4: got '#N/A'Expecting numeric in E1635 / R1635C5: got '#N/A'Expecting numeric in G1635 / R1635C7: got '#N/A'Expecting numeric in K1635 / R1635C11: got '#N/A'Expecting numeric in L1635 / R1635C12: got '#N/A'Expecting numeric in C1636 / R1636C3: got '#N/A'Expecting numeric in D1636 / R1636C4: got '#N/A'Expecting numeric in E1636 / R1636C5: got '#N/A'Expecting numeric in G1636 / R1636C7: got '#N/A'Expecting numeric in K1636 / R1636C11: got '#N/A'Expecting numeric in L1636 / R1636C12: got '#N/A'Expecting numeric in C1637 / R1637C3: got '#N/A'Expecting numeric in D1637 / R1637C4: got '#N/A'Expecting numeric in E1637 / R1637C5: got '#N/A'Expecting numeric in G1637 / R1637C7: got '#N/A'Expecting numeric in K1637 / R1637C11: got '#N/A'Expecting numeric in L1637 / R1637C12: got '#N/A'Expecting numeric in C1638 / R1638C3: got '#N/A'Expecting numeric in D1638 / R1638C4: got '#N/A'Expecting numeric in E1638 / R1638C5: got '#N/A'Expecting numeric in G1638 / R1638C7: got '#N/A'Expecting numeric in K1638 / R1638C11: got '#N/A'Expecting numeric in L1638 / R1638C12: got '#N/A'Expecting numeric in C1639 / R1639C3: got '#N/A'Expecting numeric in D1639 / R1639C4: got '#N/A'Expecting numeric in E1639 / R1639C5: got '#N/A'Expecting numeric in G1639 / R1639C7: got '#N/A'Expecting numeric in K1639 / R1639C11: got '#N/A'Expecting numeric in L1639 / R1639C12: got '#N/A'Expecting numeric in C1640 / R1640C3: got '#N/A'Expecting numeric in D1640 / R1640C4: got '#N/A'Expecting numeric in E1640 / R1640C5: got '#N/A'Expecting numeric in G1640 / R1640C7: got '#N/A'Expecting numeric in K1640 / R1640C11: got '#N/A'Expecting numeric in L1640 / R1640C12: got '#N/A'Expecting numeric in C1641 / R1641C3: got '#N/A'Expecting numeric in D1641 / R1641C4: got '#N/A'Expecting numeric in E1641 / R1641C5: got '#N/A'Expecting numeric in G1641 / R1641C7: got '#N/A'Expecting numeric in K1641 / R1641C11: got '#N/A'Expecting numeric in L1641 / R1641C12: got '#N/A'Expecting numeric in C1642 / R1642C3: got '#N/A'Expecting numeric in D1642 / R1642C4: got '#N/A'Expecting numeric in E1642 / R1642C5: got '#N/A'Expecting numeric in G1642 / R1642C7: got '#N/A'Expecting numeric in K1642 / R1642C11: got '#N/A'Expecting numeric in L1642 / R1642C12: got '#N/A'Expecting numeric in C1643 / R1643C3: got '#N/A'Expecting numeric in D1643 / R1643C4: got '#N/A'Expecting numeric in E1643 / R1643C5: got '#N/A'Expecting numeric in G1643 / R1643C7: got '#N/A'Expecting numeric in K1643 / R1643C11: got '#N/A'Expecting numeric in L1643 / R1643C12: got '#N/A'Expecting numeric in C1644 / R1644C3: got '#N/A'Expecting numeric in D1644 / R1644C4: got '#N/A'Expecting numeric in E1644 / R1644C5: got '#N/A'Expecting numeric in G1644 / R1644C7: got '#N/A'Expecting numeric in K1644 / R1644C11: got '#N/A'Expecting numeric in L1644 / R1644C12: got '#N/A'Expecting numeric in C1645 / R1645C3: got '#N/A'Expecting numeric in D1645 / R1645C4: got '#N/A'Expecting numeric in E1645 / R1645C5: got '#N/A'Expecting numeric in G1645 / R1645C7: got '#N/A'Expecting numeric in K1645 / R1645C11: got '#N/A'Expecting numeric in L1645 / R1645C12: got '#N/A'Expecting numeric in C1646 / R1646C3: got '#N/A'Expecting numeric in D1646 / R1646C4: got '#N/A'Expecting numeric in E1646 / R1646C5: got '#N/A'Expecting numeric in G1646 / R1646C7: got '#N/A'Expecting numeric in K1646 / R1646C11: got '#N/A'Expecting numeric in L1646 / R1646C12: got '#N/A'Expecting numeric in C1647 / R1647C3: got '#N/A'Expecting numeric in D1647 / R1647C4: got '#N/A'Expecting numeric in E1647 / R1647C5: got '#N/A'Expecting numeric in G1647 / R1647C7: got '#N/A'Expecting numeric in K1647 / R1647C11: got '#N/A'Expecting numeric in L1647 / R1647C12: got '#N/A'Expecting numeric in C1648 / R1648C3: got '#N/A'Expecting numeric in D1648 / R1648C4: got '#N/A'Expecting numeric in E1648 / R1648C5: got '#N/A'Expecting numeric in G1648 / R1648C7: got '#N/A'Expecting numeric in K1648 / R1648C11: got '#N/A'Expecting numeric in L1648 / R1648C12: got '#N/A'Expecting numeric in C1649 / R1649C3: got '#N/A'Expecting numeric in D1649 / R1649C4: got '#N/A'Expecting numeric in E1649 / R1649C5: got '#N/A'Expecting numeric in G1649 / R1649C7: got '#N/A'Expecting numeric in K1649 / R1649C11: got '#N/A'Expecting numeric in L1649 / R1649C12: got '#N/A'Expecting numeric in C1650 / R1650C3: got '#N/A'Expecting numeric in D1650 / R1650C4: got '#N/A'Expecting numeric in E1650 / R1650C5: got '#N/A'Expecting numeric in G1650 / R1650C7: got '#N/A'Expecting numeric in K1650 / R1650C11: got '#N/A'Expecting numeric in L1650 / R1650C12: got '#N/A'Expecting numeric in C1651 / R1651C3: got '#N/A'Expecting numeric in D1651 / R1651C4: got '#N/A'Expecting numeric in E1651 / R1651C5: got '#N/A'Expecting numeric in G1651 / R1651C7: got '#N/A'Expecting numeric in K1651 / R1651C11: got '#N/A'Expecting numeric in L1651 / R1651C12: got '#N/A'Expecting numeric in C1652 / R1652C3: got '#N/A'Expecting numeric in D1652 / R1652C4: got '#N/A'Expecting numeric in E1652 / R1652C5: got '#N/A'Expecting numeric in G1652 / R1652C7: got '#N/A'Expecting numeric in K1652 / R1652C11: got '#N/A'Expecting numeric in L1652 / R1652C12: got '#N/A'Expecting numeric in C1653 / R1653C3: got '#N/A'Expecting numeric in D1653 / R1653C4: got '#N/A'Expecting numeric in E1653 / R1653C5: got '#N/A'Expecting numeric in G1653 / R1653C7: got '#N/A'Expecting numeric in K1653 / R1653C11: got '#N/A'Expecting numeric in L1653 / R1653C12: got '#N/A'Expecting numeric in C1654 / R1654C3: got '#N/A'Expecting numeric in D1654 / R1654C4: got '#N/A'Expecting numeric in E1654 / R1654C5: got '#N/A'Expecting numeric in G1654 / R1654C7: got '#N/A'Expecting numeric in K1654 / R1654C11: got '#N/A'Expecting numeric in L1654 / R1654C12: got '#N/A'Expecting numeric in C1655 / R1655C3: got '#N/A'Expecting numeric in D1655 / R1655C4: got '#N/A'Expecting numeric in E1655 / R1655C5: got '#N/A'Expecting numeric in G1655 / R1655C7: got '#N/A'Expecting numeric in K1655 / R1655C11: got '#N/A'Expecting numeric in L1655 / R1655C12: got '#N/A'Expecting numeric in C1656 / R1656C3: got '#N/A'Expecting numeric in D1656 / R1656C4: got '#N/A'Expecting numeric in E1656 / R1656C5: got '#N/A'Expecting numeric in G1656 / R1656C7: got '#N/A'Expecting numeric in K1656 / R1656C11: got '#N/A'Expecting numeric in L1656 / R1656C12: got '#N/A'Expecting numeric in C1657 / R1657C3: got '#N/A'Expecting numeric in D1657 / R1657C4: got '#N/A'Expecting numeric in E1657 / R1657C5: got '#N/A'Expecting numeric in G1657 / R1657C7: got '#N/A'Expecting numeric in K1657 / R1657C11: got '#N/A'Expecting numeric in L1657 / R1657C12: got '#N/A'Expecting numeric in C1658 / R1658C3: got '#N/A'Expecting numeric in D1658 / R1658C4: got '#N/A'Expecting numeric in E1658 / R1658C5: got '#N/A'Expecting numeric in G1658 / R1658C7: got '#N/A'Expecting numeric in K1658 / R1658C11: got '#N/A'Expecting numeric in L1658 / R1658C12: got '#N/A'Expecting numeric in C1659 / R1659C3: got '#N/A'Expecting numeric in D1659 / R1659C4: got '#N/A'Expecting numeric in E1659 / R1659C5: got '#N/A'Expecting numeric in G1659 / R1659C7: got '#N/A'Expecting numeric in K1659 / R1659C11: got '#N/A'Expecting numeric in L1659 / R1659C12: got '#N/A'Expecting numeric in C1660 / R1660C3: got '#N/A'Expecting numeric in D1660 / R1660C4: got '#N/A'Expecting numeric in E1660 / R1660C5: got '#N/A'Expecting numeric in G1660 / R1660C7: got '#N/A'Expecting numeric in K1660 / R1660C11: got '#N/A'Expecting numeric in L1660 / R1660C12: got '#N/A'Expecting numeric in C1661 / R1661C3: got '#N/A'Expecting numeric in D1661 / R1661C4: got '#N/A'Expecting numeric in E1661 / R1661C5: got '#N/A'Expecting numeric in G1661 / R1661C7: got '#N/A'Expecting numeric in K1661 / R1661C11: got '#N/A'Expecting numeric in L1661 / R1661C12: got '#N/A'Expecting numeric in C1662 / R1662C3: got '#N/A'Expecting numeric in D1662 / R1662C4: got '#N/A'Expecting numeric in E1662 / R1662C5: got '#N/A'Expecting numeric in G1662 / R1662C7: got '#N/A'Expecting numeric in K1662 / R1662C11: got '#N/A'Expecting numeric in L1662 / R1662C12: got '#N/A'Expecting numeric in C1663 / R1663C3: got '#N/A'Expecting numeric in D1663 / R1663C4: got '#N/A'Expecting numeric in E1663 / R1663C5: got '#N/A'Expecting numeric in G1663 / R1663C7: got '#N/A'Expecting numeric in K1663 / R1663C11: got '#N/A'Expecting numeric in L1663 / R1663C12: got '#N/A'Expecting numeric in C1664 / R1664C3: got '#N/A'Expecting numeric in D1664 / R1664C4: got '#N/A'Expecting numeric in E1664 / R1664C5: got '#N/A'Expecting numeric in G1664 / R1664C7: got '#N/A'Expecting numeric in K1664 / R1664C11: got '#N/A'Expecting numeric in L1664 / R1664C12: got '#N/A'Expecting numeric in C1665 / R1665C3: got '#N/A'Expecting numeric in D1665 / R1665C4: got '#N/A'Expecting numeric in E1665 / R1665C5: got '#N/A'Expecting numeric in G1665 / R1665C7: got '#N/A'Expecting numeric in K1665 / R1665C11: got '#N/A'Expecting numeric in L1665 / R1665C12: got '#N/A'Expecting numeric in C1666 / R1666C3: got '#N/A'Expecting numeric in D1666 / R1666C4: got '#N/A'Expecting numeric in E1666 / R1666C5: got '#N/A'Expecting numeric in G1666 / R1666C7: got '#N/A'Expecting numeric in K1666 / R1666C11: got '#N/A'Expecting numeric in L1666 / R1666C12: got '#N/A'Expecting numeric in C1667 / R1667C3: got '#N/A'Expecting numeric in D1667 / R1667C4: got '#N/A'Expecting numeric in E1667 / R1667C5: got '#N/A'Expecting numeric in G1667 / R1667C7: got '#N/A'Expecting numeric in K1667 / R1667C11: got '#N/A'Expecting numeric in L1667 / R1667C12: got '#N/A'Expecting numeric in C1668 / R1668C3: got '#N/A'Expecting numeric in D1668 / R1668C4: got '#N/A'Expecting numeric in E1668 / R1668C5: got '#N/A'Expecting numeric in G1668 / R1668C7: got '#N/A'Expecting numeric in K1668 / R1668C11: got '#N/A'Expecting numeric in L1668 / R1668C12: got '#N/A'Expecting numeric in C1669 / R1669C3: got '#N/A'Expecting numeric in D1669 / R1669C4: got '#N/A'Expecting numeric in E1669 / R1669C5: got '#N/A'Expecting numeric in G1669 / R1669C7: got '#N/A'Expecting numeric in K1669 / R1669C11: got '#N/A'Expecting numeric in L1669 / R1669C12: got '#N/A'Expecting numeric in C1670 / R1670C3: got '#N/A'Expecting numeric in D1670 / R1670C4: got '#N/A'Expecting numeric in E1670 / R1670C5: got '#N/A'Expecting numeric in G1670 / R1670C7: got '#N/A'Expecting numeric in K1670 / R1670C11: got '#N/A'Expecting numeric in L1670 / R1670C12: got '#N/A'Expecting numeric in C1671 / R1671C3: got '#N/A'Expecting numeric in D1671 / R1671C4: got '#N/A'Expecting numeric in E1671 / R1671C5: got '#N/A'Expecting numeric in G1671 / R1671C7: got '#N/A'Expecting numeric in K1671 / R1671C11: got '#N/A'Expecting numeric in L1671 / R1671C12: got '#N/A'Expecting numeric in C1672 / R1672C3: got '#N/A'Expecting numeric in D1672 / R1672C4: got '#N/A'Expecting numeric in E1672 / R1672C5: got '#N/A'Expecting numeric in G1672 / R1672C7: got '#N/A'Expecting numeric in K1672 / R1672C11: got '#N/A'Expecting numeric in L1672 / R1672C12: got '#N/A'Expecting numeric in C1673 / R1673C3: got '#N/A'Expecting numeric in D1673 / R1673C4: got '#N/A'Expecting numeric in E1673 / R1673C5: got '#N/A'Expecting numeric in G1673 / R1673C7: got '#N/A'Expecting numeric in K1673 / R1673C11: got '#N/A'Expecting numeric in L1673 / R1673C12: got '#N/A'Expecting numeric in C1674 / R1674C3: got '#N/A'Expecting numeric in D1674 / R1674C4: got '#N/A'Expecting numeric in E1674 / R1674C5: got '#N/A'Expecting numeric in G1674 / R1674C7: got '#N/A'Expecting numeric in K1674 / R1674C11: got '#N/A'Expecting numeric in L1674 / R1674C12: got '#N/A'Expecting numeric in C1675 / R1675C3: got '#N/A'Expecting numeric in D1675 / R1675C4: got '#N/A'Expecting numeric in E1675 / R1675C5: got '#N/A'Expecting numeric in G1675 / R1675C7: got '#N/A'Expecting numeric in K1675 / R1675C11: got '#N/A'Expecting numeric in L1675 / R1675C12: got '#N/A'Expecting numeric in C1676 / R1676C3: got '#N/A'Expecting numeric in D1676 / R1676C4: got '#N/A'Expecting numeric in E1676 / R1676C5: got '#N/A'Expecting numeric in G1676 / R1676C7: got '#N/A'Expecting numeric in K1676 / R1676C11: got '#N/A'Expecting numeric in L1676 / R1676C12: got '#N/A'Expecting numeric in C1677 / R1677C3: got '#N/A'Expecting numeric in D1677 / R1677C4: got '#N/A'Expecting numeric in E1677 / R1677C5: got '#N/A'Expecting numeric in G1677 / R1677C7: got '#N/A'Expecting numeric in K1677 / R1677C11: got '#N/A'Expecting numeric in L1677 / R1677C12: got '#N/A'Expecting numeric in C1678 / R1678C3: got '#N/A'Expecting numeric in D1678 / R1678C4: got '#N/A'Expecting numeric in E1678 / R1678C5: got '#N/A'Expecting numeric in G1678 / R1678C7: got '#N/A'Expecting numeric in K1678 / R1678C11: got '#N/A'Expecting numeric in L1678 / R1678C12: got '#N/A'Expecting numeric in C1679 / R1679C3: got '#N/A'Expecting numeric in D1679 / R1679C4: got '#N/A'Expecting numeric in E1679 / R1679C5: got '#N/A'Expecting numeric in G1679 / R1679C7: got '#N/A'Expecting numeric in K1679 / R1679C11: got '#N/A'Expecting numeric in L1679 / R1679C12: got '#N/A'Expecting numeric in C1680 / R1680C3: got '#N/A'Expecting numeric in D1680 / R1680C4: got '#N/A'Expecting numeric in E1680 / R1680C5: got '#N/A'Expecting numeric in G1680 / R1680C7: got '#N/A'Expecting numeric in K1680 / R1680C11: got '#N/A'Expecting numeric in L1680 / R1680C12: got '#N/A'Expecting numeric in C1681 / R1681C3: got '#N/A'Expecting numeric in D1681 / R1681C4: got '#N/A'Expecting numeric in E1681 / R1681C5: got '#N/A'Expecting numeric in G1681 / R1681C7: got '#N/A'Expecting numeric in K1681 / R1681C11: got '#N/A'Expecting numeric in L1681 / R1681C12: got '#N/A'Expecting numeric in C1682 / R1682C3: got '#N/A'Expecting numeric in D1682 / R1682C4: got '#N/A'Expecting numeric in E1682 / R1682C5: got '#N/A'Expecting numeric in G1682 / R1682C7: got '#N/A'Expecting numeric in K1682 / R1682C11: got '#N/A'Expecting numeric in L1682 / R1682C12: got '#N/A'Expecting numeric in C1683 / R1683C3: got '#N/A'Expecting numeric in D1683 / R1683C4: got '#N/A'Expecting numeric in E1683 / R1683C5: got '#N/A'Expecting numeric in G1683 / R1683C7: got '#N/A'Expecting numeric in K1683 / R1683C11: got '#N/A'Expecting numeric in L1683 / R1683C12: got '#N/A'Expecting numeric in C1684 / R1684C3: got '#N/A'Expecting numeric in D1684 / R1684C4: got '#N/A'Expecting numeric in E1684 / R1684C5: got '#N/A'Expecting numeric in G1684 / R1684C7: got '#N/A'Expecting numeric in K1684 / R1684C11: got '#N/A'Expecting numeric in L1684 / R1684C12: got '#N/A'Expecting numeric in C1685 / R1685C3: got '#N/A'Expecting numeric in D1685 / R1685C4: got '#N/A'Expecting numeric in E1685 / R1685C5: got '#N/A'Expecting numeric in G1685 / R1685C7: got '#N/A'Expecting numeric in K1685 / R1685C11: got '#N/A'Expecting numeric in L1685 / R1685C12: got '#N/A'Expecting numeric in C1686 / R1686C3: got '#N/A'Expecting numeric in D1686 / R1686C4: got '#N/A'Expecting numeric in E1686 / R1686C5: got '#N/A'Expecting numeric in G1686 / R1686C7: got '#N/A'Expecting numeric in K1686 / R1686C11: got '#N/A'Expecting numeric in L1686 / R1686C12: got '#N/A'Expecting numeric in C1687 / R1687C3: got '#N/A'Expecting numeric in D1687 / R1687C4: got '#N/A'Expecting numeric in E1687 / R1687C5: got '#N/A'Expecting numeric in G1687 / R1687C7: got '#N/A'Expecting numeric in K1687 / R1687C11: got '#N/A'Expecting numeric in L1687 / R1687C12: got '#N/A'Expecting numeric in C1688 / R1688C3: got '#N/A'Expecting numeric in D1688 / R1688C4: got '#N/A'Expecting numeric in E1688 / R1688C5: got '#N/A'Expecting numeric in G1688 / R1688C7: got '#N/A'Expecting numeric in K1688 / R1688C11: got '#N/A'Expecting numeric in L1688 / R1688C12: got '#N/A'Expecting numeric in C1689 / R1689C3: got '#N/A'Expecting numeric in D1689 / R1689C4: got '#N/A'Expecting numeric in E1689 / R1689C5: got '#N/A'Expecting numeric in G1689 / R1689C7: got '#N/A'Expecting numeric in K1689 / R1689C11: got '#N/A'Expecting numeric in L1689 / R1689C12: got '#N/A'Expecting numeric in C1690 / R1690C3: got '#N/A'Expecting numeric in D1690 / R1690C4: got '#N/A'Expecting numeric in E1690 / R1690C5: got '#N/A'Expecting numeric in G1690 / R1690C7: got '#N/A'Expecting numeric in K1690 / R1690C11: got '#N/A'Expecting numeric in L1690 / R1690C12: got '#N/A'Expecting numeric in C1691 / R1691C3: got '#N/A'Expecting numeric in D1691 / R1691C4: got '#N/A'Expecting numeric in E1691 / R1691C5: got '#N/A'Expecting numeric in G1691 / R1691C7: got '#N/A'Expecting numeric in K1691 / R1691C11: got '#N/A'Expecting numeric in L1691 / R1691C12: got '#N/A'Expecting numeric in C1692 / R1692C3: got '#N/A'Expecting numeric in D1692 / R1692C4: got '#N/A'Expecting numeric in E1692 / R1692C5: got '#N/A'Expecting numeric in G1692 / R1692C7: got '#N/A'Expecting numeric in K1692 / R1692C11: got '#N/A'Expecting numeric in L1692 / R1692C12: got '#N/A'Expecting numeric in C1693 / R1693C3: got '#N/A'Expecting numeric in D1693 / R1693C4: got '#N/A'Expecting numeric in E1693 / R1693C5: got '#N/A'Expecting numeric in G1693 / R1693C7: got '#N/A'Expecting numeric in K1693 / R1693C11: got '#N/A'Expecting numeric in L1693 / R1693C12: got '#N/A'Expecting numeric in C1694 / R1694C3: got '#N/A'Expecting numeric in D1694 / R1694C4: got '#N/A'Expecting numeric in E1694 / R1694C5: got '#N/A'Expecting numeric in G1694 / R1694C7: got '#N/A'Expecting numeric in K1694 / R1694C11: got '#N/A'Expecting numeric in L1694 / R1694C12: got '#N/A'Expecting numeric in C1695 / R1695C3: got '#N/A'Expecting numeric in D1695 / R1695C4: got '#N/A'Expecting numeric in E1695 / R1695C5: got '#N/A'Expecting numeric in G1695 / R1695C7: got '#N/A'Expecting numeric in K1695 / R1695C11: got '#N/A'Expecting numeric in L1695 / R1695C12: got '#N/A'Expecting numeric in C1696 / R1696C3: got '#N/A'Expecting numeric in D1696 / R1696C4: got '#N/A'Expecting numeric in E1696 / R1696C5: got '#N/A'Expecting numeric in G1696 / R1696C7: got '#N/A'Expecting numeric in K1696 / R1696C11: got '#N/A'Expecting numeric in L1696 / R1696C12: got '#N/A'Expecting numeric in C1697 / R1697C3: got '#N/A'Expecting numeric in D1697 / R1697C4: got '#N/A'Expecting numeric in E1697 / R1697C5: got '#N/A'Expecting numeric in G1697 / R1697C7: got '#N/A'Expecting numeric in K1697 / R1697C11: got '#N/A'Expecting numeric in L1697 / R1697C12: got '#N/A'Expecting numeric in C1698 / R1698C3: got '#N/A'Expecting numeric in D1698 / R1698C4: got '#N/A'Expecting numeric in E1698 / R1698C5: got '#N/A'Expecting numeric in G1698 / R1698C7: got '#N/A'Expecting numeric in K1698 / R1698C11: got '#N/A'Expecting numeric in L1698 / R1698C12: got '#N/A'Expecting numeric in C1699 / R1699C3: got '#N/A'Expecting numeric in D1699 / R1699C4: got '#N/A'Expecting numeric in E1699 / R1699C5: got '#N/A'Expecting numeric in G1699 / R1699C7: got '#N/A'Expecting numeric in K1699 / R1699C11: got '#N/A'Expecting numeric in L1699 / R1699C12: got '#N/A'Expecting numeric in C1700 / R1700C3: got '#N/A'Expecting numeric in D1700 / R1700C4: got '#N/A'Expecting numeric in E1700 / R1700C5: got '#N/A'Expecting numeric in G1700 / R1700C7: got '#N/A'Expecting numeric in K1700 / R1700C11: got '#N/A'Expecting numeric in L1700 / R1700C12: got '#N/A'Expecting numeric in C1701 / R1701C3: got '#N/A'Expecting numeric in D1701 / R1701C4: got '#N/A'Expecting numeric in E1701 / R1701C5: got '#N/A'Expecting numeric in G1701 / R1701C7: got '#N/A'Expecting numeric in K1701 / R1701C11: got '#N/A'Expecting numeric in L1701 / R1701C12: got '#N/A'Expecting numeric in C1702 / R1702C3: got '#N/A'Expecting numeric in D1702 / R1702C4: got '#N/A'Expecting numeric in E1702 / R1702C5: got '#N/A'Expecting numeric in G1702 / R1702C7: got '#N/A'Expecting numeric in K1702 / R1702C11: got '#N/A'Expecting numeric in L1702 / R1702C12: got '#N/A'Expecting numeric in C1703 / R1703C3: got '#N/A'Expecting numeric in D1703 / R1703C4: got '#N/A'Expecting numeric in E1703 / R1703C5: got '#N/A'Expecting numeric in G1703 / R1703C7: got '#N/A'Expecting numeric in K1703 / R1703C11: got '#N/A'Expecting numeric in L1703 / R1703C12: got '#N/A'Expecting numeric in C1704 / R1704C3: got '#N/A'Expecting numeric in D1704 / R1704C4: got '#N/A'Expecting numeric in E1704 / R1704C5: got '#N/A'Expecting numeric in G1704 / R1704C7: got '#N/A'Expecting numeric in K1704 / R1704C11: got '#N/A'Expecting numeric in L1704 / R1704C12: got '#N/A'Expecting numeric in C1705 / R1705C3: got '#N/A'Expecting numeric in D1705 / R1705C4: got '#N/A'Expecting numeric in E1705 / R1705C5: got '#N/A'Expecting numeric in G1705 / R1705C7: got '#N/A'Expecting numeric in K1705 / R1705C11: got '#N/A'Expecting numeric in L1705 / R1705C12: got '#N/A'Expecting numeric in C1706 / R1706C3: got '#N/A'Expecting numeric in D1706 / R1706C4: got '#N/A'Expecting numeric in E1706 / R1706C5: got '#N/A'Expecting numeric in G1706 / R1706C7: got '#N/A'Expecting numeric in K1706 / R1706C11: got '#N/A'Expecting numeric in L1706 / R1706C12: got '#N/A'Expecting numeric in C1707 / R1707C3: got '#N/A'Expecting numeric in D1707 / R1707C4: got '#N/A'Expecting numeric in E1707 / R1707C5: got '#N/A'Expecting numeric in G1707 / R1707C7: got '#N/A'Expecting numeric in K1707 / R1707C11: got '#N/A'Expecting numeric in L1707 / R1707C12: got '#N/A'Expecting numeric in C1708 / R1708C3: got '#N/A'Expecting numeric in D1708 / R1708C4: got '#N/A'Expecting numeric in E1708 / R1708C5: got '#N/A'Expecting numeric in G1708 / R1708C7: got '#N/A'Expecting numeric in K1708 / R1708C11: got '#N/A'Expecting numeric in L1708 / R1708C12: got '#N/A'Expecting numeric in C1709 / R1709C3: got '#N/A'Expecting numeric in D1709 / R1709C4: got '#N/A'Expecting numeric in E1709 / R1709C5: got '#N/A'Expecting numeric in G1709 / R1709C7: got '#N/A'Expecting numeric in K1709 / R1709C11: got '#N/A'Expecting numeric in L1709 / R1709C12: got '#N/A'Expecting numeric in C1710 / R1710C3: got '#N/A'Expecting numeric in D1710 / R1710C4: got '#N/A'Expecting numeric in E1710 / R1710C5: got '#N/A'Expecting numeric in G1710 / R1710C7: got '#N/A'Expecting numeric in K1710 / R1710C11: got '#N/A'Expecting numeric in L1710 / R1710C12: got '#N/A'Expecting numeric in C1711 / R1711C3: got '#N/A'Expecting numeric in D1711 / R1711C4: got '#N/A'Expecting numeric in E1711 / R1711C5: got '#N/A'Expecting numeric in G1711 / R1711C7: got '#N/A'Expecting numeric in K1711 / R1711C11: got '#N/A'Expecting numeric in L1711 / R1711C12: got '#N/A'Expecting numeric in C1712 / R1712C3: got '#N/A'Expecting numeric in D1712 / R1712C4: got '#N/A'Expecting numeric in E1712 / R1712C5: got '#N/A'Expecting numeric in G1712 / R1712C7: got '#N/A'Expecting numeric in K1712 / R1712C11: got '#N/A'Expecting numeric in L1712 / R1712C12: got '#N/A'Expecting numeric in C1713 / R1713C3: got '#N/A'Expecting numeric in D1713 / R1713C4: got '#N/A'Expecting numeric in E1713 / R1713C5: got '#N/A'Expecting numeric in G1713 / R1713C7: got '#N/A'Expecting numeric in K1713 / R1713C11: got '#N/A'Expecting numeric in L1713 / R1713C12: got '#N/A'Expecting numeric in C1714 / R1714C3: got '#N/A'Expecting numeric in D1714 / R1714C4: got '#N/A'Expecting numeric in E1714 / R1714C5: got '#N/A'Expecting numeric in G1714 / R1714C7: got '#N/A'Expecting numeric in K1714 / R1714C11: got '#N/A'Expecting numeric in L1714 / R1714C12: got '#N/A'Expecting numeric in C1715 / R1715C3: got '#N/A'Expecting numeric in D1715 / R1715C4: got '#N/A'Expecting numeric in E1715 / R1715C5: got '#N/A'Expecting numeric in G1715 / R1715C7: got '#N/A'Expecting numeric in K1715 / R1715C11: got '#N/A'Expecting numeric in L1715 / R1715C12: got '#N/A'Expecting numeric in C1716 / R1716C3: got '#N/A'Expecting numeric in D1716 / R1716C4: got '#N/A'Expecting numeric in E1716 / R1716C5: got '#N/A'Expecting numeric in G1716 / R1716C7: got '#N/A'Expecting numeric in K1716 / R1716C11: got '#N/A'Expecting numeric in L1716 / R1716C12: got '#N/A'Expecting numeric in C1717 / R1717C3: got '#N/A'Expecting numeric in D1717 / R1717C4: got '#N/A'Expecting numeric in E1717 / R1717C5: got '#N/A'Expecting numeric in G1717 / R1717C7: got '#N/A'Expecting numeric in K1717 / R1717C11: got '#N/A'Expecting numeric in L1717 / R1717C12: got '#N/A'Expecting numeric in C1718 / R1718C3: got '#N/A'Expecting numeric in D1718 / R1718C4: got '#N/A'Expecting numeric in E1718 / R1718C5: got '#N/A'Expecting numeric in G1718 / R1718C7: got '#N/A'Expecting numeric in K1718 / R1718C11: got '#N/A'Expecting numeric in L1718 / R1718C12: got '#N/A'Expecting numeric in C1719 / R1719C3: got '#N/A'Expecting numeric in D1719 / R1719C4: got '#N/A'Expecting numeric in E1719 / R1719C5: got '#N/A'Expecting numeric in G1719 / R1719C7: got '#N/A'Expecting numeric in K1719 / R1719C11: got '#N/A'Expecting numeric in L1719 / R1719C12: got '#N/A'Expecting numeric in C1720 / R1720C3: got '#N/A'Expecting numeric in D1720 / R1720C4: got '#N/A'Expecting numeric in E1720 / R1720C5: got '#N/A'Expecting numeric in G1720 / R1720C7: got '#N/A'Expecting numeric in K1720 / R1720C11: got '#N/A'Expecting numeric in L1720 / R1720C12: got '#N/A'Expecting numeric in C1721 / R1721C3: got '#N/A'Expecting numeric in D1721 / R1721C4: got '#N/A'Expecting numeric in E1721 / R1721C5: got '#N/A'Expecting numeric in G1721 / R1721C7: got '#N/A'Expecting numeric in K1721 / R1721C11: got '#N/A'Expecting numeric in L1721 / R1721C12: got '#N/A'Expecting numeric in C1722 / R1722C3: got '#N/A'Expecting numeric in D1722 / R1722C4: got '#N/A'Expecting numeric in E1722 / R1722C5: got '#N/A'Expecting numeric in G1722 / R1722C7: got '#N/A'Expecting numeric in K1722 / R1722C11: got '#N/A'Expecting numeric in L1722 / R1722C12: got '#N/A'Expecting numeric in C1723 / R1723C3: got '#N/A'Expecting numeric in D1723 / R1723C4: got '#N/A'Expecting numeric in E1723 / R1723C5: got '#N/A'Expecting numeric in G1723 / R1723C7: got '#N/A'Expecting numeric in K1723 / R1723C11: got '#N/A'Expecting numeric in L1723 / R1723C12: got '#N/A'Expecting numeric in C1724 / R1724C3: got '#N/A'Expecting numeric in D1724 / R1724C4: got '#N/A'Expecting numeric in E1724 / R1724C5: got '#N/A'Expecting numeric in G1724 / R1724C7: got '#N/A'Expecting numeric in K1724 / R1724C11: got '#N/A'Expecting numeric in L1724 / R1724C12: got '#N/A'Expecting numeric in C1725 / R1725C3: got '#N/A'Expecting numeric in D1725 / R1725C4: got '#N/A'Expecting numeric in E1725 / R1725C5: got '#N/A'Expecting numeric in G1725 / R1725C7: got '#N/A'Expecting numeric in K1725 / R1725C11: got '#N/A'Expecting numeric in L1725 / R1725C12: got '#N/A'Expecting numeric in C1726 / R1726C3: got '#N/A'Expecting numeric in D1726 / R1726C4: got '#N/A'Expecting numeric in E1726 / R1726C5: got '#N/A'Expecting numeric in G1726 / R1726C7: got '#N/A'Expecting numeric in K1726 / R1726C11: got '#N/A'Expecting numeric in L1726 / R1726C12: got '#N/A'Expecting numeric in C1727 / R1727C3: got '#N/A'Expecting numeric in D1727 / R1727C4: got '#N/A'Expecting numeric in E1727 / R1727C5: got '#N/A'Expecting numeric in G1727 / R1727C7: got '#N/A'Expecting numeric in K1727 / R1727C11: got '#N/A'Expecting numeric in L1727 / R1727C12: got '#N/A'Expecting numeric in C1728 / R1728C3: got '#N/A'Expecting numeric in D1728 / R1728C4: got '#N/A'Expecting numeric in E1728 / R1728C5: got '#N/A'Expecting numeric in G1728 / R1728C7: got '#N/A'Expecting numeric in K1728 / R1728C11: got '#N/A'Expecting numeric in L1728 / R1728C12: got '#N/A'Expecting numeric in C1729 / R1729C3: got '#N/A'Expecting numeric in D1729 / R1729C4: got '#N/A'Expecting numeric in E1729 / R1729C5: got '#N/A'Expecting numeric in G1729 / R1729C7: got '#N/A'Expecting numeric in K1729 / R1729C11: got '#N/A'Expecting numeric in L1729 / R1729C12: got '#N/A'Expecting numeric in C1730 / R1730C3: got '#N/A'Expecting numeric in D1730 / R1730C4: got '#N/A'Expecting numeric in E1730 / R1730C5: got '#N/A'Expecting numeric in G1730 / R1730C7: got '#N/A'Expecting numeric in K1730 / R1730C11: got '#N/A'Expecting numeric in L1730 / R1730C12: got '#N/A'Expecting numeric in C1731 / R1731C3: got '#N/A'Expecting numeric in D1731 / R1731C4: got '#N/A'Expecting numeric in E1731 / R1731C5: got '#N/A'Expecting numeric in G1731 / R1731C7: got '#N/A'Expecting numeric in K1731 / R1731C11: got '#N/A'Expecting numeric in L1731 / R1731C12: got '#N/A'Expecting numeric in C1732 / R1732C3: got '#N/A'Expecting numeric in D1732 / R1732C4: got '#N/A'Expecting numeric in E1732 / R1732C5: got '#N/A'Expecting numeric in G1732 / R1732C7: got '#N/A'Expecting numeric in K1732 / R1732C11: got '#N/A'Expecting numeric in L1732 / R1732C12: got '#N/A'Expecting numeric in C1733 / R1733C3: got '#N/A'Expecting numeric in D1733 / R1733C4: got '#N/A'Expecting numeric in E1733 / R1733C5: got '#N/A'Expecting numeric in G1733 / R1733C7: got '#N/A'Expecting numeric in K1733 / R1733C11: got '#N/A'Expecting numeric in L1733 / R1733C12: got '#N/A'Expecting numeric in C1734 / R1734C3: got '#N/A'Expecting numeric in D1734 / R1734C4: got '#N/A'Expecting numeric in E1734 / R1734C5: got '#N/A'Expecting numeric in G1734 / R1734C7: got '#N/A'Expecting numeric in K1734 / R1734C11: got '#N/A'Expecting numeric in L1734 / R1734C12: got '#N/A'Expecting numeric in C1735 / R1735C3: got '#N/A'Expecting numeric in D1735 / R1735C4: got '#N/A'Expecting numeric in E1735 / R1735C5: got '#N/A'Expecting numeric in G1735 / R1735C7: got '#N/A'Expecting numeric in K1735 / R1735C11: got '#N/A'Expecting numeric in L1735 / R1735C12: got '#N/A'Expecting numeric in C1736 / R1736C3: got '#N/A'Expecting numeric in D1736 / R1736C4: got '#N/A'Expecting numeric in E1736 / R1736C5: got '#N/A'Expecting numeric in G1736 / R1736C7: got '#N/A'Expecting numeric in K1736 / R1736C11: got '#N/A'Expecting numeric in L1736 / R1736C12: got '#N/A'Expecting numeric in C1737 / R1737C3: got '#N/A'Expecting numeric in D1737 / R1737C4: got '#N/A'Expecting numeric in E1737 / R1737C5: got '#N/A'Expecting numeric in G1737 / R1737C7: got '#N/A'Expecting numeric in K1737 / R1737C11: got '#N/A'Expecting numeric in L1737 / R1737C12: got '#N/A'Expecting numeric in C1738 / R1738C3: got '#N/A'Expecting numeric in D1738 / R1738C4: got '#N/A'Expecting numeric in E1738 / R1738C5: got '#N/A'Expecting numeric in G1738 / R1738C7: got '#N/A'Expecting numeric in K1738 / R1738C11: got '#N/A'Expecting numeric in L1738 / R1738C12: got '#N/A'Expecting numeric in C1739 / R1739C3: got '#N/A'Expecting numeric in D1739 / R1739C4: got '#N/A'Expecting numeric in E1739 / R1739C5: got '#N/A'Expecting numeric in G1739 / R1739C7: got '#N/A'Expecting numeric in K1739 / R1739C11: got '#N/A'Expecting numeric in L1739 / R1739C12: got '#N/A'Expecting numeric in C1740 / R1740C3: got '#N/A'Expecting numeric in D1740 / R1740C4: got '#N/A'Expecting numeric in E1740 / R1740C5: got '#N/A'Expecting numeric in G1740 / R1740C7: got '#N/A'Expecting numeric in K1740 / R1740C11: got '#N/A'Expecting numeric in L1740 / R1740C12: got '#N/A'Expecting numeric in C1741 / R1741C3: got '#N/A'Expecting numeric in D1741 / R1741C4: got '#N/A'Expecting numeric in E1741 / R1741C5: got '#N/A'Expecting numeric in G1741 / R1741C7: got '#N/A'Expecting numeric in K1741 / R1741C11: got '#N/A'Expecting numeric in L1741 / R1741C12: got '#N/A'Expecting numeric in C1742 / R1742C3: got '#N/A'Expecting numeric in D1742 / R1742C4: got '#N/A'Expecting numeric in E1742 / R1742C5: got '#N/A'Expecting numeric in G1742 / R1742C7: got '#N/A'Expecting numeric in K1742 / R1742C11: got '#N/A'Expecting numeric in L1742 / R1742C12: got '#N/A'Expecting numeric in C1743 / R1743C3: got '#N/A'Expecting numeric in D1743 / R1743C4: got '#N/A'Expecting numeric in E1743 / R1743C5: got '#N/A'Expecting numeric in G1743 / R1743C7: got '#N/A'Expecting numeric in K1743 / R1743C11: got '#N/A'Expecting numeric in L1743 / R1743C12: got '#N/A'Expecting numeric in C1744 / R1744C3: got '#N/A'Expecting numeric in D1744 / R1744C4: got '#N/A'Expecting numeric in E1744 / R1744C5: got '#N/A'Expecting numeric in G1744 / R1744C7: got '#N/A'Expecting numeric in K1744 / R1744C11: got '#N/A'Expecting numeric in L1744 / R1744C12: got '#N/A'Expecting numeric in C1745 / R1745C3: got '#N/A'Expecting numeric in D1745 / R1745C4: got '#N/A'Expecting numeric in E1745 / R1745C5: got '#N/A'Expecting numeric in G1745 / R1745C7: got '#N/A'Expecting numeric in K1745 / R1745C11: got '#N/A'Expecting numeric in L1745 / R1745C12: got '#N/A'Expecting numeric in C1746 / R1746C3: got '#N/A'Expecting numeric in D1746 / R1746C4: got '#N/A'Expecting numeric in E1746 / R1746C5: got '#N/A'Expecting numeric in G1746 / R1746C7: got '#N/A'Expecting numeric in K1746 / R1746C11: got '#N/A'Expecting numeric in L1746 / R1746C12: got '#N/A'Expecting numeric in C1747 / R1747C3: got '#N/A'Expecting numeric in D1747 / R1747C4: got '#N/A'Expecting numeric in E1747 / R1747C5: got '#N/A'Expecting numeric in G1747 / R1747C7: got '#N/A'Expecting numeric in K1747 / R1747C11: got '#N/A'Expecting numeric in L1747 / R1747C12: got '#N/A'Expecting numeric in C1748 / R1748C3: got '#N/A'Expecting numeric in D1748 / R1748C4: got '#N/A'Expecting numeric in E1748 / R1748C5: got '#N/A'Expecting numeric in G1748 / R1748C7: got '#N/A'Expecting numeric in K1748 / R1748C11: got '#N/A'Expecting numeric in L1748 / R1748C12: got '#N/A'Expecting numeric in C1749 / R1749C3: got '#N/A'Expecting numeric in D1749 / R1749C4: got '#N/A'Expecting numeric in E1749 / R1749C5: got '#N/A'Expecting numeric in G1749 / R1749C7: got '#N/A'Expecting numeric in K1749 / R1749C11: got '#N/A'Expecting numeric in L1749 / R1749C12: got '#N/A'Expecting numeric in C1750 / R1750C3: got '#N/A'Expecting numeric in D1750 / R1750C4: got '#N/A'Expecting numeric in E1750 / R1750C5: got '#N/A'Expecting numeric in G1750 / R1750C7: got '#N/A'Expecting numeric in K1750 / R1750C11: got '#N/A'Expecting numeric in L1750 / R1750C12: got '#N/A'Expecting numeric in C1751 / R1751C3: got '#N/A'Expecting numeric in D1751 / R1751C4: got '#N/A'Expecting numeric in E1751 / R1751C5: got '#N/A'Expecting numeric in G1751 / R1751C7: got '#N/A'Expecting numeric in K1751 / R1751C11: got '#N/A'Expecting numeric in L1751 / R1751C12: got '#N/A'Expecting numeric in C1752 / R1752C3: got '#N/A'Expecting numeric in D1752 / R1752C4: got '#N/A'Expecting numeric in E1752 / R1752C5: got '#N/A'Expecting numeric in G1752 / R1752C7: got '#N/A'Expecting numeric in K1752 / R1752C11: got '#N/A'Expecting numeric in L1752 / R1752C12: got '#N/A'Expecting numeric in C1753 / R1753C3: got '#N/A'Expecting numeric in D1753 / R1753C4: got '#N/A'Expecting numeric in E1753 / R1753C5: got '#N/A'Expecting numeric in G1753 / R1753C7: got '#N/A'Expecting numeric in K1753 / R1753C11: got '#N/A'Expecting numeric in L1753 / R1753C12: got '#N/A'Expecting numeric in C1754 / R1754C3: got '#N/A'Expecting numeric in D1754 / R1754C4: got '#N/A'Expecting numeric in E1754 / R1754C5: got '#N/A'Expecting numeric in G1754 / R1754C7: got '#N/A'Expecting numeric in K1754 / R1754C11: got '#N/A'Expecting numeric in L1754 / R1754C12: got '#N/A'Expecting numeric in C1755 / R1755C3: got '#N/A'Expecting numeric in D1755 / R1755C4: got '#N/A'Expecting numeric in E1755 / R1755C5: got '#N/A'Expecting numeric in G1755 / R1755C7: got '#N/A'Expecting numeric in K1755 / R1755C11: got '#N/A'Expecting numeric in L1755 / R1755C12: got '#N/A'Expecting numeric in C1756 / R1756C3: got '#N/A'Expecting numeric in D1756 / R1756C4: got '#N/A'Expecting numeric in E1756 / R1756C5: got '#N/A'Expecting numeric in G1756 / R1756C7: got '#N/A'Expecting numeric in K1756 / R1756C11: got '#N/A'Expecting numeric in L1756 / R1756C12: got '#N/A'Expecting numeric in C1757 / R1757C3: got '#N/A'Expecting numeric in D1757 / R1757C4: got '#N/A'Expecting numeric in E1757 / R1757C5: got '#N/A'Expecting numeric in G1757 / R1757C7: got '#N/A'Expecting numeric in K1757 / R1757C11: got '#N/A'Expecting numeric in L1757 / R1757C12: got '#N/A'Expecting numeric in C1758 / R1758C3: got '#N/A'Expecting numeric in D1758 / R1758C4: got '#N/A'Expecting numeric in E1758 / R1758C5: got '#N/A'Expecting numeric in G1758 / R1758C7: got '#N/A'Expecting numeric in K1758 / R1758C11: got '#N/A'Expecting numeric in L1758 / R1758C12: got '#N/A'Expecting numeric in C1759 / R1759C3: got '#N/A'Expecting numeric in D1759 / R1759C4: got '#N/A'Expecting numeric in E1759 / R1759C5: got '#N/A'Expecting numeric in G1759 / R1759C7: got '#N/A'Expecting numeric in K1759 / R1759C11: got '#N/A'Expecting numeric in L1759 / R1759C12: got '#N/A'Expecting numeric in C1760 / R1760C3: got '#N/A'Expecting numeric in D1760 / R1760C4: got '#N/A'Expecting numeric in E1760 / R1760C5: got '#N/A'Expecting numeric in G1760 / R1760C7: got '#N/A'Expecting numeric in K1760 / R1760C11: got '#N/A'Expecting numeric in L1760 / R1760C12: got '#N/A'Expecting numeric in C1761 / R1761C3: got '#N/A'Expecting numeric in D1761 / R1761C4: got '#N/A'Expecting numeric in E1761 / R1761C5: got '#N/A'Expecting numeric in G1761 / R1761C7: got '#N/A'Expecting numeric in K1761 / R1761C11: got '#N/A'Expecting numeric in L1761 / R1761C12: got '#N/A'Expecting numeric in C1762 / R1762C3: got '#N/A'Expecting numeric in D1762 / R1762C4: got '#N/A'Expecting numeric in E1762 / R1762C5: got '#N/A'Expecting numeric in G1762 / R1762C7: got '#N/A'Expecting numeric in K1762 / R1762C11: got '#N/A'Expecting numeric in L1762 / R1762C12: got '#N/A'Expecting numeric in C1763 / R1763C3: got '#N/A'Expecting numeric in D1763 / R1763C4: got '#N/A'Expecting numeric in E1763 / R1763C5: got '#N/A'Expecting numeric in G1763 / R1763C7: got '#N/A'Expecting numeric in K1763 / R1763C11: got '#N/A'Expecting numeric in L1763 / R1763C12: got '#N/A'Expecting numeric in C1764 / R1764C3: got '#N/A'Expecting numeric in D1764 / R1764C4: got '#N/A'Expecting numeric in E1764 / R1764C5: got '#N/A'Expecting numeric in G1764 / R1764C7: got '#N/A'Expecting numeric in K1764 / R1764C11: got '#N/A'Expecting numeric in L1764 / R1764C12: got '#N/A'Expecting numeric in C1765 / R1765C3: got '#N/A'Expecting numeric in D1765 / R1765C4: got '#N/A'Expecting numeric in E1765 / R1765C5: got '#N/A'Expecting numeric in G1765 / R1765C7: got '#N/A'Expecting numeric in K1765 / R1765C11: got '#N/A'Expecting numeric in L1765 / R1765C12: got '#N/A'Expecting numeric in C1766 / R1766C3: got '#N/A'Expecting numeric in D1766 / R1766C4: got '#N/A'Expecting numeric in E1766 / R1766C5: got '#N/A'Expecting numeric in G1766 / R1766C7: got '#N/A'Expecting numeric in K1766 / R1766C11: got '#N/A'Expecting numeric in L1766 / R1766C12: got '#N/A'Expecting numeric in C1767 / R1767C3: got '#N/A'Expecting numeric in D1767 / R1767C4: got '#N/A'Expecting numeric in E1767 / R1767C5: got '#N/A'Expecting numeric in G1767 / R1767C7: got '#N/A'Expecting numeric in K1767 / R1767C11: got '#N/A'Expecting numeric in L1767 / R1767C12: got '#N/A'Expecting numeric in C1768 / R1768C3: got '#N/A'Expecting numeric in D1768 / R1768C4: got '#N/A'Expecting numeric in E1768 / R1768C5: got '#N/A'Expecting numeric in G1768 / R1768C7: got '#N/A'Expecting numeric in K1768 / R1768C11: got '#N/A'Expecting numeric in L1768 / R1768C12: got '#N/A'Expecting numeric in C1769 / R1769C3: got '#N/A'Expecting numeric in D1769 / R1769C4: got '#N/A'Expecting numeric in E1769 / R1769C5: got '#N/A'Expecting numeric in G1769 / R1769C7: got '#N/A'Expecting numeric in K1769 / R1769C11: got '#N/A'Expecting numeric in L1769 / R1769C12: got '#N/A'Expecting numeric in C1770 / R1770C3: got '#N/A'Expecting numeric in D1770 / R1770C4: got '#N/A'Expecting numeric in E1770 / R1770C5: got '#N/A'Expecting numeric in G1770 / R1770C7: got '#N/A'Expecting numeric in K1770 / R1770C11: got '#N/A'Expecting numeric in L1770 / R1770C12: got '#N/A'Expecting numeric in C1771 / R1771C3: got '#N/A'Expecting numeric in D1771 / R1771C4: got '#N/A'Expecting numeric in E1771 / R1771C5: got '#N/A'Expecting numeric in G1771 / R1771C7: got '#N/A'Expecting numeric in K1771 / R1771C11: got '#N/A'Expecting numeric in L1771 / R1771C12: got '#N/A'Expecting numeric in C1772 / R1772C3: got '#N/A'Expecting numeric in D1772 / R1772C4: got '#N/A'Expecting numeric in E1772 / R1772C5: got '#N/A'Expecting numeric in G1772 / R1772C7: got '#N/A'Expecting numeric in K1772 / R1772C11: got '#N/A'Expecting numeric in L1772 / R1772C12: got '#N/A'Expecting numeric in C1773 / R1773C3: got '#N/A'Expecting numeric in D1773 / R1773C4: got '#N/A'Expecting numeric in E1773 / R1773C5: got '#N/A'Expecting numeric in G1773 / R1773C7: got '#N/A'Expecting numeric in K1773 / R1773C11: got '#N/A'Expecting numeric in L1773 / R1773C12: got '#N/A'Expecting numeric in C1774 / R1774C3: got '#N/A'Expecting numeric in D1774 / R1774C4: got '#N/A'Expecting numeric in E1774 / R1774C5: got '#N/A'Expecting numeric in G1774 / R1774C7: got '#N/A'Expecting numeric in K1774 / R1774C11: got '#N/A'Expecting numeric in L1774 / R1774C12: got '#N/A'Expecting numeric in C1775 / R1775C3: got '#N/A'Expecting numeric in D1775 / R1775C4: got '#N/A'Expecting numeric in E1775 / R1775C5: got '#N/A'Expecting numeric in G1775 / R1775C7: got '#N/A'Expecting numeric in K1775 / R1775C11: got '#N/A'Expecting numeric in L1775 / R1775C12: got '#N/A'Expecting numeric in C1776 / R1776C3: got '#N/A'Expecting numeric in D1776 / R1776C4: got '#N/A'Expecting numeric in E1776 / R1776C5: got '#N/A'Expecting numeric in G1776 / R1776C7: got '#N/A'Expecting numeric in K1776 / R1776C11: got '#N/A'Expecting numeric in L1776 / R1776C12: got '#N/A'Expecting numeric in C1777 / R1777C3: got '#N/A'Expecting numeric in D1777 / R1777C4: got '#N/A'Expecting numeric in E1777 / R1777C5: got '#N/A'Expecting numeric in G1777 / R1777C7: got '#N/A'Expecting numeric in K1777 / R1777C11: got '#N/A'Expecting numeric in L1777 / R1777C12: got '#N/A'Expecting numeric in C1778 / R1778C3: got '#N/A'Expecting numeric in D1778 / R1778C4: got '#N/A'Expecting numeric in E1778 / R1778C5: got '#N/A'Expecting numeric in G1778 / R1778C7: got '#N/A'Expecting numeric in K1778 / R1778C11: got '#N/A'Expecting numeric in L1778 / R1778C12: got '#N/A'Expecting numeric in C1779 / R1779C3: got '#N/A'Expecting numeric in D1779 / R1779C4: got '#N/A'Expecting numeric in E1779 / R1779C5: got '#N/A'Expecting numeric in G1779 / R1779C7: got '#N/A'Expecting numeric in K1779 / R1779C11: got '#N/A'Expecting numeric in L1779 / R1779C12: got '#N/A'Expecting numeric in C1780 / R1780C3: got '#N/A'Expecting numeric in D1780 / R1780C4: got '#N/A'Expecting numeric in E1780 / R1780C5: got '#N/A'Expecting numeric in G1780 / R1780C7: got '#N/A'Expecting numeric in K1780 / R1780C11: got '#N/A'Expecting numeric in L1780 / R1780C12: got '#N/A'Expecting numeric in C1781 / R1781C3: got '#N/A'Expecting numeric in D1781 / R1781C4: got '#N/A'Expecting numeric in E1781 / R1781C5: got '#N/A'Expecting numeric in G1781 / R1781C7: got '#N/A'Expecting numeric in K1781 / R1781C11: got '#N/A'Expecting numeric in L1781 / R1781C12: got '#N/A'Expecting numeric in C1782 / R1782C3: got '#N/A'Expecting numeric in D1782 / R1782C4: got '#N/A'Expecting numeric in E1782 / R1782C5: got '#N/A'Expecting numeric in G1782 / R1782C7: got '#N/A'Expecting numeric in K1782 / R1782C11: got '#N/A'Expecting numeric in L1782 / R1782C12: got '#N/A'Expecting numeric in C1783 / R1783C3: got '#N/A'Expecting numeric in D1783 / R1783C4: got '#N/A'Expecting numeric in E1783 / R1783C5: got '#N/A'Expecting numeric in G1783 / R1783C7: got '#N/A'Expecting numeric in K1783 / R1783C11: got '#N/A'Expecting numeric in L1783 / R1783C12: got '#N/A'Expecting numeric in C1784 / R1784C3: got '#N/A'Expecting numeric in D1784 / R1784C4: got '#N/A'Expecting numeric in E1784 / R1784C5: got '#N/A'Expecting numeric in G1784 / R1784C7: got '#N/A'Expecting numeric in K1784 / R1784C11: got '#N/A'Expecting numeric in L1784 / R1784C12: got '#N/A'Expecting numeric in C1785 / R1785C3: got '#N/A'Expecting numeric in D1785 / R1785C4: got '#N/A'Expecting numeric in E1785 / R1785C5: got '#N/A'Expecting numeric in G1785 / R1785C7: got '#N/A'Expecting numeric in K1785 / R1785C11: got '#N/A'Expecting numeric in L1785 / R1785C12: got '#N/A'Expecting numeric in C1786 / R1786C3: got '#N/A'Expecting numeric in D1786 / R1786C4: got '#N/A'Expecting numeric in E1786 / R1786C5: got '#N/A'Expecting numeric in G1786 / R1786C7: got '#N/A'Expecting numeric in K1786 / R1786C11: got '#N/A'Expecting numeric in L1786 / R1786C12: got '#N/A'Expecting numeric in C1787 / R1787C3: got '#N/A'Expecting numeric in D1787 / R1787C4: got '#N/A'Expecting numeric in E1787 / R1787C5: got '#N/A'Expecting numeric in G1787 / R1787C7: got '#N/A'Expecting numeric in K1787 / R1787C11: got '#N/A'Expecting numeric in L1787 / R1787C12: got '#N/A'Expecting numeric in C1788 / R1788C3: got '#N/A'Expecting numeric in D1788 / R1788C4: got '#N/A'Expecting numeric in E1788 / R1788C5: got '#N/A'Expecting numeric in G1788 / R1788C7: got '#N/A'Expecting numeric in K1788 / R1788C11: got '#N/A'Expecting numeric in L1788 / R1788C12: got '#N/A'Expecting numeric in C1789 / R1789C3: got '#N/A'Expecting numeric in D1789 / R1789C4: got '#N/A'Expecting numeric in E1789 / R1789C5: got '#N/A'Expecting numeric in G1789 / R1789C7: got '#N/A'Expecting numeric in K1789 / R1789C11: got '#N/A'Expecting numeric in L1789 / R1789C12: got '#N/A'Expecting numeric in C1790 / R1790C3: got '#N/A'Expecting numeric in D1790 / R1790C4: got '#N/A'Expecting numeric in E1790 / R1790C5: got '#N/A'Expecting numeric in G1790 / R1790C7: got '#N/A'Expecting numeric in K1790 / R1790C11: got '#N/A'Expecting numeric in L1790 / R1790C12: got '#N/A'Expecting numeric in C1791 / R1791C3: got '#N/A'Expecting numeric in D1791 / R1791C4: got '#N/A'Expecting numeric in E1791 / R1791C5: got '#N/A'Expecting numeric in G1791 / R1791C7: got '#N/A'Expecting numeric in K1791 / R1791C11: got '#N/A'Expecting numeric in L1791 / R1791C12: got '#N/A'Expecting numeric in C1792 / R1792C3: got '#N/A'Expecting numeric in D1792 / R1792C4: got '#N/A'Expecting numeric in E1792 / R1792C5: got '#N/A'Expecting numeric in G1792 / R1792C7: got '#N/A'Expecting numeric in K1792 / R1792C11: got '#N/A'Expecting numeric in L1792 / R1792C12: got '#N/A'Expecting numeric in C1793 / R1793C3: got '#N/A'Expecting numeric in D1793 / R1793C4: got '#N/A'Expecting numeric in E1793 / R1793C5: got '#N/A'Expecting numeric in G1793 / R1793C7: got '#N/A'Expecting numeric in K1793 / R1793C11: got '#N/A'Expecting numeric in L1793 / R1793C12: got '#N/A'Expecting numeric in C1794 / R1794C3: got '#N/A'Expecting numeric in D1794 / R1794C4: got '#N/A'Expecting numeric in E1794 / R1794C5: got '#N/A'Expecting numeric in G1794 / R1794C7: got '#N/A'Expecting numeric in K1794 / R1794C11: got '#N/A'Expecting numeric in L1794 / R1794C12: got '#N/A'Expecting numeric in C1795 / R1795C3: got '#N/A'Expecting numeric in D1795 / R1795C4: got '#N/A'Expecting numeric in E1795 / R1795C5: got '#N/A'Expecting numeric in G1795 / R1795C7: got '#N/A'Expecting numeric in K1795 / R1795C11: got '#N/A'Expecting numeric in L1795 / R1795C12: got '#N/A'Expecting numeric in C1796 / R1796C3: got '#N/A'Expecting numeric in D1796 / R1796C4: got '#N/A'Expecting numeric in E1796 / R1796C5: got '#N/A'Expecting numeric in G1796 / R1796C7: got '#N/A'Expecting numeric in K1796 / R1796C11: got '#N/A'Expecting numeric in L1796 / R1796C12: got '#N/A'Expecting numeric in C1797 / R1797C3: got '#N/A'Expecting numeric in D1797 / R1797C4: got '#N/A'Expecting numeric in E1797 / R1797C5: got '#N/A'Expecting numeric in G1797 / R1797C7: got '#N/A'Expecting numeric in K1797 / R1797C11: got '#N/A'Expecting numeric in L1797 / R1797C12: got '#N/A'Expecting numeric in C1798 / R1798C3: got '#N/A'Expecting numeric in D1798 / R1798C4: got '#N/A'Expecting numeric in E1798 / R1798C5: got '#N/A'Expecting numeric in G1798 / R1798C7: got '#N/A'Expecting numeric in K1798 / R1798C11: got '#N/A'Expecting numeric in L1798 / R1798C12: got '#N/A'Expecting numeric in C1799 / R1799C3: got '#N/A'Expecting numeric in D1799 / R1799C4: got '#N/A'Expecting numeric in E1799 / R1799C5: got '#N/A'Expecting numeric in G1799 / R1799C7: got '#N/A'Expecting numeric in K1799 / R1799C11: got '#N/A'Expecting numeric in L1799 / R1799C12: got '#N/A'Expecting numeric in C1800 / R1800C3: got '#N/A'Expecting numeric in D1800 / R1800C4: got '#N/A'Expecting numeric in E1800 / R1800C5: got '#N/A'Expecting numeric in G1800 / R1800C7: got '#N/A'Expecting numeric in K1800 / R1800C11: got '#N/A'Expecting numeric in L1800 / R1800C12: got '#N/A'Expecting numeric in C1801 / R1801C3: got '#N/A'Expecting numeric in D1801 / R1801C4: got '#N/A'Expecting numeric in E1801 / R1801C5: got '#N/A'Expecting numeric in G1801 / R1801C7: got '#N/A'Expecting numeric in K1801 / R1801C11: got '#N/A'Expecting numeric in L1801 / R1801C12: got '#N/A'Expecting numeric in C1802 / R1802C3: got '#N/A'Expecting numeric in D1802 / R1802C4: got '#N/A'Expecting numeric in E1802 / R1802C5: got '#N/A'Expecting numeric in G1802 / R1802C7: got '#N/A'Expecting numeric in K1802 / R1802C11: got '#N/A'Expecting numeric in L1802 / R1802C12: got '#N/A'Expecting numeric in C1803 / R1803C3: got '#N/A'Expecting numeric in D1803 / R1803C4: got '#N/A'Expecting numeric in E1803 / R1803C5: got '#N/A'Expecting numeric in G1803 / R1803C7: got '#N/A'Expecting numeric in K1803 / R1803C11: got '#N/A'Expecting numeric in L1803 / R1803C12: got '#N/A'Expecting numeric in C1804 / R1804C3: got '#N/A'Expecting numeric in D1804 / R1804C4: got '#N/A'Expecting numeric in E1804 / R1804C5: got '#N/A'Expecting numeric in G1804 / R1804C7: got '#N/A'Expecting numeric in K1804 / R1804C11: got '#N/A'Expecting numeric in L1804 / R1804C12: got '#N/A'Expecting numeric in C1805 / R1805C3: got '#N/A'Expecting numeric in D1805 / R1805C4: got '#N/A'Expecting numeric in E1805 / R1805C5: got '#N/A'Expecting numeric in G1805 / R1805C7: got '#N/A'Expecting numeric in K1805 / R1805C11: got '#N/A'Expecting numeric in L1805 / R1805C12: got '#N/A'Expecting numeric in C1806 / R1806C3: got '#N/A'Expecting numeric in D1806 / R1806C4: got '#N/A'Expecting numeric in E1806 / R1806C5: got '#N/A'Expecting numeric in G1806 / R1806C7: got '#N/A'Expecting numeric in K1806 / R1806C11: got '#N/A'Expecting numeric in L1806 / R1806C12: got '#N/A'Expecting numeric in C1807 / R1807C3: got '#N/A'Expecting numeric in D1807 / R1807C4: got '#N/A'Expecting numeric in E1807 / R1807C5: got '#N/A'Expecting numeric in G1807 / R1807C7: got '#N/A'Expecting numeric in K1807 / R1807C11: got '#N/A'Expecting numeric in L1807 / R1807C12: got '#N/A'Expecting numeric in C1808 / R1808C3: got '#N/A'Expecting numeric in D1808 / R1808C4: got '#N/A'Expecting numeric in E1808 / R1808C5: got '#N/A'Expecting numeric in G1808 / R1808C7: got '#N/A'Expecting numeric in K1808 / R1808C11: got '#N/A'Expecting numeric in L1808 / R1808C12: got '#N/A'Expecting numeric in C1809 / R1809C3: got '#N/A'Expecting numeric in D1809 / R1809C4: got '#N/A'Expecting numeric in E1809 / R1809C5: got '#N/A'Expecting numeric in G1809 / R1809C7: got '#N/A'Expecting numeric in K1809 / R1809C11: got '#N/A'Expecting numeric in L1809 / R1809C12: got '#N/A'Expecting numeric in C1810 / R1810C3: got '#N/A'Expecting numeric in D1810 / R1810C4: got '#N/A'Expecting numeric in E1810 / R1810C5: got '#N/A'Expecting numeric in G1810 / R1810C7: got '#N/A'Expecting numeric in K1810 / R1810C11: got '#N/A'Expecting numeric in L1810 / R1810C12: got '#N/A'Expecting numeric in C1811 / R1811C3: got '#N/A'Expecting numeric in D1811 / R1811C4: got '#N/A'Expecting numeric in E1811 / R1811C5: got '#N/A'Expecting numeric in G1811 / R1811C7: got '#N/A'Expecting numeric in K1811 / R1811C11: got '#N/A'Expecting numeric in L1811 / R1811C12: got '#N/A'Expecting numeric in C1812 / R1812C3: got '#N/A'Expecting numeric in D1812 / R1812C4: got '#N/A'Expecting numeric in E1812 / R1812C5: got '#N/A'Expecting numeric in G1812 / R1812C7: got '#N/A'Expecting numeric in K1812 / R1812C11: got '#N/A'Expecting numeric in L1812 / R1812C12: got '#N/A'Expecting numeric in C1813 / R1813C3: got '#N/A'Expecting numeric in D1813 / R1813C4: got '#N/A'Expecting numeric in E1813 / R1813C5: got '#N/A'Expecting numeric in G1813 / R1813C7: got '#N/A'Expecting numeric in K1813 / R1813C11: got '#N/A'Expecting numeric in L1813 / R1813C12: got '#N/A'Expecting numeric in C1814 / R1814C3: got '#N/A'Expecting numeric in D1814 / R1814C4: got '#N/A'Expecting numeric in E1814 / R1814C5: got '#N/A'Expecting numeric in G1814 / R1814C7: got '#N/A'Expecting numeric in K1814 / R1814C11: got '#N/A'Expecting numeric in L1814 / R1814C12: got '#N/A'Expecting numeric in C1815 / R1815C3: got '#N/A'Expecting numeric in D1815 / R1815C4: got '#N/A'Expecting numeric in E1815 / R1815C5: got '#N/A'Expecting numeric in G1815 / R1815C7: got '#N/A'Expecting numeric in K1815 / R1815C11: got '#N/A'Expecting numeric in L1815 / R1815C12: got '#N/A'Expecting numeric in C1816 / R1816C3: got '#N/A'Expecting numeric in D1816 / R1816C4: got '#N/A'Expecting numeric in E1816 / R1816C5: got '#N/A'Expecting numeric in G1816 / R1816C7: got '#N/A'Expecting numeric in K1816 / R1816C11: got '#N/A'Expecting numeric in L1816 / R1816C12: got '#N/A'Expecting numeric in C1817 / R1817C3: got '#N/A'Expecting numeric in D1817 / R1817C4: got '#N/A'Expecting numeric in E1817 / R1817C5: got '#N/A'Expecting numeric in G1817 / R1817C7: got '#N/A'Expecting numeric in K1817 / R1817C11: got '#N/A'Expecting numeric in L1817 / R1817C12: got '#N/A'Expecting numeric in C1818 / R1818C3: got '#N/A'Expecting numeric in D1818 / R1818C4: got '#N/A'Expecting numeric in E1818 / R1818C5: got '#N/A'Expecting numeric in G1818 / R1818C7: got '#N/A'Expecting numeric in K1818 / R1818C11: got '#N/A'Expecting numeric in L1818 / R1818C12: got '#N/A'Expecting numeric in C1819 / R1819C3: got '#N/A'Expecting numeric in D1819 / R1819C4: got '#N/A'Expecting numeric in E1819 / R1819C5: got '#N/A'Expecting numeric in G1819 / R1819C7: got '#N/A'Expecting numeric in K1819 / R1819C11: got '#N/A'Expecting numeric in L1819 / R1819C12: got '#N/A'Expecting numeric in C1820 / R1820C3: got '#N/A'Expecting numeric in D1820 / R1820C4: got '#N/A'Expecting numeric in E1820 / R1820C5: got '#N/A'Expecting numeric in G1820 / R1820C7: got '#N/A'Expecting numeric in K1820 / R1820C11: got '#N/A'Expecting numeric in L1820 / R1820C12: got '#N/A'Expecting numeric in C1821 / R1821C3: got '#N/A'Expecting numeric in D1821 / R1821C4: got '#N/A'Expecting numeric in E1821 / R1821C5: got '#N/A'Expecting numeric in G1821 / R1821C7: got '#N/A'Expecting numeric in K1821 / R1821C11: got '#N/A'Expecting numeric in L1821 / R1821C12: got '#N/A'Expecting numeric in C1822 / R1822C3: got '#N/A'Expecting numeric in D1822 / R1822C4: got '#N/A'Expecting numeric in E1822 / R1822C5: got '#N/A'Expecting numeric in G1822 / R1822C7: got '#N/A'Expecting numeric in K1822 / R1822C11: got '#N/A'Expecting numeric in L1822 / R1822C12: got '#N/A'Expecting numeric in C1823 / R1823C3: got '#N/A'Expecting numeric in D1823 / R1823C4: got '#N/A'Expecting numeric in E1823 / R1823C5: got '#N/A'Expecting numeric in G1823 / R1823C7: got '#N/A'Expecting numeric in K1823 / R1823C11: got '#N/A'Expecting numeric in L1823 / R1823C12: got '#N/A'Expecting numeric in C1824 / R1824C3: got '#N/A'Expecting numeric in D1824 / R1824C4: got '#N/A'Expecting numeric in E1824 / R1824C5: got '#N/A'Expecting numeric in G1824 / R1824C7: got '#N/A'Expecting numeric in K1824 / R1824C11: got '#N/A'Expecting numeric in L1824 / R1824C12: got '#N/A'Expecting numeric in C1825 / R1825C3: got '#N/A'Expecting numeric in D1825 / R1825C4: got '#N/A'Expecting numeric in E1825 / R1825C5: got '#N/A'Expecting numeric in G1825 / R1825C7: got '#N/A'Expecting numeric in K1825 / R1825C11: got '#N/A'Expecting numeric in L1825 / R1825C12: got '#N/A'Expecting numeric in C1826 / R1826C3: got '#N/A'Expecting numeric in D1826 / R1826C4: got '#N/A'Expecting numeric in E1826 / R1826C5: got '#N/A'Expecting numeric in G1826 / R1826C7: got '#N/A'Expecting numeric in K1826 / R1826C11: got '#N/A'Expecting numeric in L1826 / R1826C12: got '#N/A'Expecting numeric in C1827 / R1827C3: got '#N/A'Expecting numeric in D1827 / R1827C4: got '#N/A'Expecting numeric in E1827 / R1827C5: got '#N/A'Expecting numeric in G1827 / R1827C7: got '#N/A'Expecting numeric in K1827 / R1827C11: got '#N/A'Expecting numeric in L1827 / R1827C12: got '#N/A'Expecting numeric in C1828 / R1828C3: got '#N/A'Expecting numeric in D1828 / R1828C4: got '#N/A'Expecting numeric in E1828 / R1828C5: got '#N/A'Expecting numeric in G1828 / R1828C7: got '#N/A'Expecting numeric in K1828 / R1828C11: got '#N/A'Expecting numeric in L1828 / R1828C12: got '#N/A'Expecting numeric in C1829 / R1829C3: got '#N/A'Expecting numeric in D1829 / R1829C4: got '#N/A'Expecting numeric in E1829 / R1829C5: got '#N/A'Expecting numeric in G1829 / R1829C7: got '#N/A'Expecting numeric in K1829 / R1829C11: got '#N/A'Expecting numeric in L1829 / R1829C12: got '#N/A'Expecting numeric in C1830 / R1830C3: got '#N/A'Expecting numeric in D1830 / R1830C4: got '#N/A'Expecting numeric in E1830 / R1830C5: got '#N/A'Expecting numeric in G1830 / R1830C7: got '#N/A'Expecting numeric in K1830 / R1830C11: got '#N/A'Expecting numeric in L1830 / R1830C12: got '#N/A'Expecting numeric in C1831 / R1831C3: got '#N/A'Expecting numeric in D1831 / R1831C4: got '#N/A'Expecting numeric in E1831 / R1831C5: got '#N/A'Expecting numeric in G1831 / R1831C7: got '#N/A'Expecting numeric in K1831 / R1831C11: got '#N/A'Expecting numeric in L1831 / R1831C12: got '#N/A'Expecting numeric in C1832 / R1832C3: got '#N/A'Expecting numeric in D1832 / R1832C4: got '#N/A'Expecting numeric in E1832 / R1832C5: got '#N/A'Expecting numeric in G1832 / R1832C7: got '#N/A'Expecting numeric in K1832 / R1832C11: got '#N/A'Expecting numeric in L1832 / R1832C12: got '#N/A'Expecting numeric in C1833 / R1833C3: got '#N/A'Expecting numeric in D1833 / R1833C4: got '#N/A'Expecting numeric in E1833 / R1833C5: got '#N/A'Expecting numeric in G1833 / R1833C7: got '#N/A'Expecting numeric in K1833 / R1833C11: got '#N/A'Expecting numeric in L1833 / R1833C12: got '#N/A'Expecting numeric in C1834 / R1834C3: got '#N/A'Expecting numeric in D1834 / R1834C4: got '#N/A'Expecting numeric in E1834 / R1834C5: got '#N/A'Expecting numeric in G1834 / R1834C7: got '#N/A'Expecting numeric in K1834 / R1834C11: got '#N/A'Expecting numeric in L1834 / R1834C12: got '#N/A'Expecting numeric in C1835 / R1835C3: got '#N/A'Expecting numeric in D1835 / R1835C4: got '#N/A'Expecting numeric in E1835 / R1835C5: got '#N/A'Expecting numeric in G1835 / R1835C7: got '#N/A'Expecting numeric in K1835 / R1835C11: got '#N/A'Expecting numeric in L1835 / R1835C12: got '#N/A'Expecting numeric in C1836 / R1836C3: got '#N/A'Expecting numeric in D1836 / R1836C4: got '#N/A'Expecting numeric in E1836 / R1836C5: got '#N/A'Expecting numeric in G1836 / R1836C7: got '#N/A'Expecting numeric in K1836 / R1836C11: got '#N/A'Expecting numeric in L1836 / R1836C12: got '#N/A'Expecting numeric in C1837 / R1837C3: got '#N/A'Expecting numeric in D1837 / R1837C4: got '#N/A'Expecting numeric in E1837 / R1837C5: got '#N/A'Expecting numeric in G1837 / R1837C7: got '#N/A'Expecting numeric in K1837 / R1837C11: got '#N/A'Expecting numeric in L1837 / R1837C12: got '#N/A'Expecting numeric in C1838 / R1838C3: got '#N/A'Expecting numeric in D1838 / R1838C4: got '#N/A'Expecting numeric in E1838 / R1838C5: got '#N/A'Expecting numeric in G1838 / R1838C7: got '#N/A'Expecting numeric in K1838 / R1838C11: got '#N/A'Expecting numeric in L1838 / R1838C12: got '#N/A'Expecting numeric in C1839 / R1839C3: got '#N/A'Expecting numeric in D1839 / R1839C4: got '#N/A'Expecting numeric in E1839 / R1839C5: got '#N/A'Expecting numeric in G1839 / R1839C7: got '#N/A'Expecting numeric in K1839 / R1839C11: got '#N/A'Expecting numeric in L1839 / R1839C12: got '#N/A'Expecting numeric in C1840 / R1840C3: got '#N/A'Expecting numeric in D1840 / R1840C4: got '#N/A'Expecting numeric in E1840 / R1840C5: got '#N/A'Expecting numeric in G1840 / R1840C7: got '#N/A'Expecting numeric in K1840 / R1840C11: got '#N/A'Expecting numeric in L1840 / R1840C12: got '#N/A'Expecting numeric in C1841 / R1841C3: got '#N/A'Expecting numeric in D1841 / R1841C4: got '#N/A'Expecting numeric in E1841 / R1841C5: got '#N/A'Expecting numeric in G1841 / R1841C7: got '#N/A'Expecting numeric in K1841 / R1841C11: got '#N/A'Expecting numeric in L1841 / R1841C12: got '#N/A'Expecting numeric in C1842 / R1842C3: got '#N/A'Expecting numeric in D1842 / R1842C4: got '#N/A'Expecting numeric in E1842 / R1842C5: got '#N/A'Expecting numeric in G1842 / R1842C7: got '#N/A'Expecting numeric in K1842 / R1842C11: got '#N/A'Expecting numeric in L1842 / R1842C12: got '#N/A'Expecting numeric in C1843 / R1843C3: got '#N/A'Expecting numeric in D1843 / R1843C4: got '#N/A'Expecting numeric in E1843 / R1843C5: got '#N/A'Expecting numeric in G1843 / R1843C7: got '#N/A'Expecting numeric in K1843 / R1843C11: got '#N/A'Expecting numeric in L1843 / R1843C12: got '#N/A'Expecting numeric in C1844 / R1844C3: got '#N/A'Expecting numeric in D1844 / R1844C4: got '#N/A'Expecting numeric in E1844 / R1844C5: got '#N/A'Expecting numeric in G1844 / R1844C7: got '#N/A'Expecting numeric in K1844 / R1844C11: got '#N/A'Expecting numeric in L1844 / R1844C12: got '#N/A'Expecting numeric in C1845 / R1845C3: got '#N/A'Expecting numeric in D1845 / R1845C4: got '#N/A'Expecting numeric in E1845 / R1845C5: got '#N/A'Expecting numeric in G1845 / R1845C7: got '#N/A'Expecting numeric in K1845 / R1845C11: got '#N/A'Expecting numeric in L1845 / R1845C12: got '#N/A'Expecting numeric in C1846 / R1846C3: got '#N/A'Expecting numeric in D1846 / R1846C4: got '#N/A'Expecting numeric in E1846 / R1846C5: got '#N/A'Expecting numeric in G1846 / R1846C7: got '#N/A'Expecting numeric in K1846 / R1846C11: got '#N/A'Expecting numeric in L1846 / R1846C12: got '#N/A'Expecting numeric in C1847 / R1847C3: got '#N/A'Expecting numeric in D1847 / R1847C4: got '#N/A'Expecting numeric in E1847 / R1847C5: got '#N/A'Expecting numeric in G1847 / R1847C7: got '#N/A'Expecting numeric in K1847 / R1847C11: got '#N/A'Expecting numeric in L1847 / R1847C12: got '#N/A'Expecting numeric in C1848 / R1848C3: got '#N/A'Expecting numeric in D1848 / R1848C4: got '#N/A'Expecting numeric in E1848 / R1848C5: got '#N/A'Expecting numeric in G1848 / R1848C7: got '#N/A'Expecting numeric in K1848 / R1848C11: got '#N/A'Expecting numeric in L1848 / R1848C12: got '#N/A'Expecting numeric in C1849 / R1849C3: got '#N/A'Expecting numeric in D1849 / R1849C4: got '#N/A'Expecting numeric in E1849 / R1849C5: got '#N/A'Expecting numeric in G1849 / R1849C7: got '#N/A'Expecting numeric in K1849 / R1849C11: got '#N/A'Expecting numeric in L1849 / R1849C12: got '#N/A'Expecting numeric in C1850 / R1850C3: got '#N/A'Expecting numeric in D1850 / R1850C4: got '#N/A'Expecting numeric in E1850 / R1850C5: got '#N/A'Expecting numeric in G1850 / R1850C7: got '#N/A'Expecting numeric in K1850 / R1850C11: got '#N/A'Expecting numeric in L1850 / R1850C12: got '#N/A'Expecting numeric in C1851 / R1851C3: got '#N/A'Expecting numeric in D1851 / R1851C4: got '#N/A'Expecting numeric in E1851 / R1851C5: got '#N/A'Expecting numeric in G1851 / R1851C7: got '#N/A'Expecting numeric in K1851 / R1851C11: got '#N/A'Expecting numeric in L1851 / R1851C12: got '#N/A'Expecting numeric in C1852 / R1852C3: got '#N/A'Expecting numeric in D1852 / R1852C4: got '#N/A'Expecting numeric in E1852 / R1852C5: got '#N/A'Expecting numeric in G1852 / R1852C7: got '#N/A'Expecting numeric in K1852 / R1852C11: got '#N/A'Expecting numeric in L1852 / R1852C12: got '#N/A'Expecting numeric in C1853 / R1853C3: got '#N/A'Expecting numeric in D1853 / R1853C4: got '#N/A'Expecting numeric in E1853 / R1853C5: got '#N/A'Expecting numeric in G1853 / R1853C7: got '#N/A'Expecting numeric in K1853 / R1853C11: got '#N/A'Expecting numeric in L1853 / R1853C12: got '#N/A'Expecting numeric in C1854 / R1854C3: got '#N/A'Expecting numeric in D1854 / R1854C4: got '#N/A'Expecting numeric in E1854 / R1854C5: got '#N/A'Expecting numeric in G1854 / R1854C7: got '#N/A'Expecting numeric in K1854 / R1854C11: got '#N/A'Expecting numeric in L1854 / R1854C12: got '#N/A'Expecting numeric in C1855 / R1855C3: got '#N/A'Expecting numeric in D1855 / R1855C4: got '#N/A'Expecting numeric in E1855 / R1855C5: got '#N/A'Expecting numeric in G1855 / R1855C7: got '#N/A'Expecting numeric in K1855 / R1855C11: got '#N/A'Expecting numeric in L1855 / R1855C12: got '#N/A'Expecting numeric in C1856 / R1856C3: got '#N/A'Expecting numeric in D1856 / R1856C4: got '#N/A'Expecting numeric in E1856 / R1856C5: got '#N/A'Expecting numeric in G1856 / R1856C7: got '#N/A'Expecting numeric in K1856 / R1856C11: got '#N/A'Expecting numeric in L1856 / R1856C12: got '#N/A'Expecting numeric in C1857 / R1857C3: got '#N/A'Expecting numeric in D1857 / R1857C4: got '#N/A'Expecting numeric in E1857 / R1857C5: got '#N/A'Expecting numeric in G1857 / R1857C7: got '#N/A'Expecting numeric in K1857 / R1857C11: got '#N/A'Expecting numeric in L1857 / R1857C12: got '#N/A'Expecting numeric in C1858 / R1858C3: got '#N/A'Expecting numeric in D1858 / R1858C4: got '#N/A'Expecting numeric in E1858 / R1858C5: got '#N/A'Expecting numeric in G1858 / R1858C7: got '#N/A'Expecting numeric in K1858 / R1858C11: got '#N/A'Expecting numeric in L1858 / R1858C12: got '#N/A'Expecting numeric in C1859 / R1859C3: got '#N/A'Expecting numeric in D1859 / R1859C4: got '#N/A'Expecting numeric in E1859 / R1859C5: got '#N/A'Expecting numeric in G1859 / R1859C7: got '#N/A'Expecting numeric in K1859 / R1859C11: got '#N/A'Expecting numeric in L1859 / R1859C12: got '#N/A'Expecting numeric in C1860 / R1860C3: got '#N/A'Expecting numeric in D1860 / R1860C4: got '#N/A'Expecting numeric in E1860 / R1860C5: got '#N/A'Expecting numeric in G1860 / R1860C7: got '#N/A'Expecting numeric in K1860 / R1860C11: got '#N/A'Expecting numeric in L1860 / R1860C12: got '#N/A'Expecting numeric in C1861 / R1861C3: got '#N/A'Expecting numeric in D1861 / R1861C4: got '#N/A'Expecting numeric in E1861 / R1861C5: got '#N/A'Expecting numeric in G1861 / R1861C7: got '#N/A'Expecting numeric in K1861 / R1861C11: got '#N/A'Expecting numeric in L1861 / R1861C12: got '#N/A'Expecting numeric in C1862 / R1862C3: got '#N/A'Expecting numeric in D1862 / R1862C4: got '#N/A'Expecting numeric in E1862 / R1862C5: got '#N/A'Expecting numeric in G1862 / R1862C7: got '#N/A'Expecting numeric in K1862 / R1862C11: got '#N/A'Expecting numeric in L1862 / R1862C12: got '#N/A'Expecting numeric in C1863 / R1863C3: got '#N/A'Expecting numeric in D1863 / R1863C4: got '#N/A'Expecting numeric in E1863 / R1863C5: got '#N/A'Expecting numeric in G1863 / R1863C7: got '#N/A'Expecting numeric in K1863 / R1863C11: got '#N/A'Expecting numeric in L1863 / R1863C12: got '#N/A'Expecting numeric in C1864 / R1864C3: got '#N/A'Expecting numeric in D1864 / R1864C4: got '#N/A'Expecting numeric in E1864 / R1864C5: got '#N/A'Expecting numeric in G1864 / R1864C7: got '#N/A'Expecting numeric in K1864 / R1864C11: got '#N/A'Expecting numeric in L1864 / R1864C12: got '#N/A'Expecting numeric in C1865 / R1865C3: got '#N/A'Expecting numeric in D1865 / R1865C4: got '#N/A'Expecting numeric in E1865 / R1865C5: got '#N/A'Expecting numeric in G1865 / R1865C7: got '#N/A'Expecting numeric in K1865 / R1865C11: got '#N/A'Expecting numeric in L1865 / R1865C12: got '#N/A'Expecting numeric in C1866 / R1866C3: got '#N/A'Expecting numeric in D1866 / R1866C4: got '#N/A'Expecting numeric in E1866 / R1866C5: got '#N/A'Expecting numeric in G1866 / R1866C7: got '#N/A'Expecting numeric in K1866 / R1866C11: got '#N/A'Expecting numeric in L1866 / R1866C12: got '#N/A'Expecting numeric in C1867 / R1867C3: got '#N/A'Expecting numeric in D1867 / R1867C4: got '#N/A'Expecting numeric in E1867 / R1867C5: got '#N/A'Expecting numeric in G1867 / R1867C7: got '#N/A'Expecting numeric in K1867 / R1867C11: got '#N/A'Expecting numeric in L1867 / R1867C12: got '#N/A'Expecting numeric in C1868 / R1868C3: got '#N/A'Expecting numeric in D1868 / R1868C4: got '#N/A'Expecting numeric in E1868 / R1868C5: got '#N/A'Expecting numeric in G1868 / R1868C7: got '#N/A'Expecting numeric in K1868 / R1868C11: got '#N/A'Expecting numeric in L1868 / R1868C12: got '#N/A'Expecting numeric in C1869 / R1869C3: got '#N/A'Expecting numeric in D1869 / R1869C4: got '#N/A'Expecting numeric in E1869 / R1869C5: got '#N/A'Expecting numeric in G1869 / R1869C7: got '#N/A'Expecting numeric in K1869 / R1869C11: got '#N/A'Expecting numeric in L1869 / R1869C12: got '#N/A'Expecting numeric in C1870 / R1870C3: got '#N/A'Expecting numeric in D1870 / R1870C4: got '#N/A'Expecting numeric in E1870 / R1870C5: got '#N/A'Expecting numeric in G1870 / R1870C7: got '#N/A'Expecting numeric in K1870 / R1870C11: got '#N/A'Expecting numeric in L1870 / R1870C12: got '#N/A'Expecting numeric in C1871 / R1871C3: got '#N/A'Expecting numeric in D1871 / R1871C4: got '#N/A'Expecting numeric in E1871 / R1871C5: got '#N/A'Expecting numeric in G1871 / R1871C7: got '#N/A'Expecting numeric in K1871 / R1871C11: got '#N/A'Expecting numeric in L1871 / R1871C12: got '#N/A'Expecting numeric in C1872 / R1872C3: got '#N/A'Expecting numeric in D1872 / R1872C4: got '#N/A'Expecting numeric in E1872 / R1872C5: got '#N/A'Expecting numeric in G1872 / R1872C7: got '#N/A'Expecting numeric in K1872 / R1872C11: got '#N/A'Expecting numeric in L1872 / R1872C12: got '#N/A'Expecting numeric in C1873 / R1873C3: got '#N/A'Expecting numeric in D1873 / R1873C4: got '#N/A'Expecting numeric in E1873 / R1873C5: got '#N/A'Expecting numeric in G1873 / R1873C7: got '#N/A'Expecting numeric in K1873 / R1873C11: got '#N/A'Expecting numeric in L1873 / R1873C12: got '#N/A'Expecting numeric in C1874 / R1874C3: got '#N/A'Expecting numeric in D1874 / R1874C4: got '#N/A'Expecting numeric in E1874 / R1874C5: got '#N/A'Expecting numeric in G1874 / R1874C7: got '#N/A'Expecting numeric in K1874 / R1874C11: got '#N/A'Expecting numeric in L1874 / R1874C12: got '#N/A'Expecting numeric in C1875 / R1875C3: got '#N/A'Expecting numeric in D1875 / R1875C4: got '#N/A'Expecting numeric in E1875 / R1875C5: got '#N/A'Expecting numeric in G1875 / R1875C7: got '#N/A'Expecting numeric in K1875 / R1875C11: got '#N/A'Expecting numeric in L1875 / R1875C12: got '#N/A'Expecting numeric in C1876 / R1876C3: got '#N/A'Expecting numeric in D1876 / R1876C4: got '#N/A'Expecting numeric in E1876 / R1876C5: got '#N/A'Expecting numeric in G1876 / R1876C7: got '#N/A'Expecting numeric in K1876 / R1876C11: got '#N/A'Expecting numeric in L1876 / R1876C12: got '#N/A'Expecting numeric in C1877 / R1877C3: got '#N/A'Expecting numeric in D1877 / R1877C4: got '#N/A'Expecting numeric in E1877 / R1877C5: got '#N/A'Expecting numeric in G1877 / R1877C7: got '#N/A'Expecting numeric in K1877 / R1877C11: got '#N/A'Expecting numeric in L1877 / R1877C12: got '#N/A'Expecting numeric in C1878 / R1878C3: got '#N/A'Expecting numeric in D1878 / R1878C4: got '#N/A'Expecting numeric in E1878 / R1878C5: got '#N/A'Expecting numeric in G1878 / R1878C7: got '#N/A'Expecting numeric in K1878 / R1878C11: got '#N/A'Expecting numeric in L1878 / R1878C12: got '#N/A'Expecting numeric in C1879 / R1879C3: got '#N/A'Expecting numeric in D1879 / R1879C4: got '#N/A'Expecting numeric in E1879 / R1879C5: got '#N/A'Expecting numeric in G1879 / R1879C7: got '#N/A'Expecting numeric in K1879 / R1879C11: got '#N/A'Expecting numeric in L1879 / R1879C12: got '#N/A'Expecting numeric in C1880 / R1880C3: got '#N/A'Expecting numeric in D1880 / R1880C4: got '#N/A'Expecting numeric in E1880 / R1880C5: got '#N/A'Expecting numeric in G1880 / R1880C7: got '#N/A'Expecting numeric in K1880 / R1880C11: got '#N/A'Expecting numeric in L1880 / R1880C12: got '#N/A'Expecting numeric in C1881 / R1881C3: got '#N/A'Expecting numeric in D1881 / R1881C4: got '#N/A'Expecting numeric in E1881 / R1881C5: got '#N/A'Expecting numeric in G1881 / R1881C7: got '#N/A'Expecting numeric in K1881 / R1881C11: got '#N/A'Expecting numeric in L1881 / R1881C12: got '#N/A'Expecting numeric in C1882 / R1882C3: got '#N/A'Expecting numeric in D1882 / R1882C4: got '#N/A'Expecting numeric in E1882 / R1882C5: got '#N/A'Expecting numeric in G1882 / R1882C7: got '#N/A'Expecting numeric in K1882 / R1882C11: got '#N/A'Expecting numeric in L1882 / R1882C12: got '#N/A'Expecting numeric in C1883 / R1883C3: got '#N/A'Expecting numeric in D1883 / R1883C4: got '#N/A'Expecting numeric in E1883 / R1883C5: got '#N/A'Expecting numeric in G1883 / R1883C7: got '#N/A'Expecting numeric in K1883 / R1883C11: got '#N/A'Expecting numeric in L1883 / R1883C12: got '#N/A'Expecting numeric in C1884 / R1884C3: got '#N/A'Expecting numeric in D1884 / R1884C4: got '#N/A'Expecting numeric in E1884 / R1884C5: got '#N/A'Expecting numeric in G1884 / R1884C7: got '#N/A'Expecting numeric in K1884 / R1884C11: got '#N/A'Expecting numeric in L1884 / R1884C12: got '#N/A'Expecting numeric in C1885 / R1885C3: got '#N/A'Expecting numeric in D1885 / R1885C4: got '#N/A'Expecting numeric in E1885 / R1885C5: got '#N/A'Expecting numeric in G1885 / R1885C7: got '#N/A'Expecting numeric in K1885 / R1885C11: got '#N/A'Expecting numeric in L1885 / R1885C12: got '#N/A'Expecting numeric in C1886 / R1886C3: got '#N/A'Expecting numeric in D1886 / R1886C4: got '#N/A'Expecting numeric in E1886 / R1886C5: got '#N/A'Expecting numeric in G1886 / R1886C7: got '#N/A'Expecting numeric in K1886 / R1886C11: got '#N/A'Expecting numeric in L1886 / R1886C12: got '#N/A'Expecting numeric in C1887 / R1887C3: got '#N/A'Expecting numeric in D1887 / R1887C4: got '#N/A'Expecting numeric in E1887 / R1887C5: got '#N/A'Expecting numeric in G1887 / R1887C7: got '#N/A'Expecting numeric in K1887 / R1887C11: got '#N/A'Expecting numeric in L1887 / R1887C12: got '#N/A'Expecting numeric in C1888 / R1888C3: got '#N/A'Expecting numeric in D1888 / R1888C4: got '#N/A'Expecting numeric in E1888 / R1888C5: got '#N/A'Expecting numeric in G1888 / R1888C7: got '#N/A'Expecting numeric in K1888 / R1888C11: got '#N/A'Expecting numeric in L1888 / R1888C12: got '#N/A'Expecting numeric in C1889 / R1889C3: got '#N/A'Expecting numeric in D1889 / R1889C4: got '#N/A'Expecting numeric in E1889 / R1889C5: got '#N/A'Expecting numeric in G1889 / R1889C7: got '#N/A'Expecting numeric in K1889 / R1889C11: got '#N/A'Expecting numeric in L1889 / R1889C12: got '#N/A'Expecting numeric in C1890 / R1890C3: got '#N/A'Expecting numeric in D1890 / R1890C4: got '#N/A'Expecting numeric in E1890 / R1890C5: got '#N/A'Expecting numeric in G1890 / R1890C7: got '#N/A'Expecting numeric in K1890 / R1890C11: got '#N/A'Expecting numeric in L1890 / R1890C12: got '#N/A'Expecting numeric in C1891 / R1891C3: got '#N/A'Expecting numeric in D1891 / R1891C4: got '#N/A'Expecting numeric in E1891 / R1891C5: got '#N/A'Expecting numeric in G1891 / R1891C7: got '#N/A'Expecting numeric in K1891 / R1891C11: got '#N/A'Expecting numeric in L1891 / R1891C12: got '#N/A'Expecting numeric in C1892 / R1892C3: got '#N/A'Expecting numeric in D1892 / R1892C4: got '#N/A'Expecting numeric in E1892 / R1892C5: got '#N/A'Expecting numeric in G1892 / R1892C7: got '#N/A'Expecting numeric in K1892 / R1892C11: got '#N/A'Expecting numeric in L1892 / R1892C12: got '#N/A'Expecting numeric in C1893 / R1893C3: got '#N/A'Expecting numeric in D1893 / R1893C4: got '#N/A'Expecting numeric in E1893 / R1893C5: got '#N/A'Expecting numeric in G1893 / R1893C7: got '#N/A'Expecting numeric in K1893 / R1893C11: got '#N/A'Expecting numeric in L1893 / R1893C12: got '#N/A'Expecting numeric in C1894 / R1894C3: got '#N/A'Expecting numeric in D1894 / R1894C4: got '#N/A'Expecting numeric in E1894 / R1894C5: got '#N/A'Expecting numeric in G1894 / R1894C7: got '#N/A'Expecting numeric in K1894 / R1894C11: got '#N/A'Expecting numeric in L1894 / R1894C12: got '#N/A'Expecting numeric in C1895 / R1895C3: got '#N/A'Expecting numeric in D1895 / R1895C4: got '#N/A'Expecting numeric in E1895 / R1895C5: got '#N/A'Expecting numeric in G1895 / R1895C7: got '#N/A'Expecting numeric in K1895 / R1895C11: got '#N/A'Expecting numeric in L1895 / R1895C12: got '#N/A'Expecting numeric in C1896 / R1896C3: got '#N/A'Expecting numeric in D1896 / R1896C4: got '#N/A'Expecting numeric in E1896 / R1896C5: got '#N/A'Expecting numeric in G1896 / R1896C7: got '#N/A'Expecting numeric in K1896 / R1896C11: got '#N/A'Expecting numeric in L1896 / R1896C12: got '#N/A'Expecting numeric in C1897 / R1897C3: got '#N/A'Expecting numeric in D1897 / R1897C4: got '#N/A'Expecting numeric in E1897 / R1897C5: got '#N/A'Expecting numeric in G1897 / R1897C7: got '#N/A'Expecting numeric in K1897 / R1897C11: got '#N/A'Expecting numeric in L1897 / R1897C12: got '#N/A'Expecting numeric in C1898 / R1898C3: got '#N/A'Expecting numeric in D1898 / R1898C4: got '#N/A'Expecting numeric in E1898 / R1898C5: got '#N/A'Expecting numeric in G1898 / R1898C7: got '#N/A'Expecting numeric in K1898 / R1898C11: got '#N/A'Expecting numeric in L1898 / R1898C12: got '#N/A'Expecting numeric in C1899 / R1899C3: got '#N/A'Expecting numeric in D1899 / R1899C4: got '#N/A'Expecting numeric in E1899 / R1899C5: got '#N/A'Expecting numeric in G1899 / R1899C7: got '#N/A'Expecting numeric in K1899 / R1899C11: got '#N/A'Expecting numeric in L1899 / R1899C12: got '#N/A'Expecting numeric in C1900 / R1900C3: got '#N/A'Expecting numeric in D1900 / R1900C4: got '#N/A'Expecting numeric in E1900 / R1900C5: got '#N/A'Expecting numeric in G1900 / R1900C7: got '#N/A'Expecting numeric in K1900 / R1900C11: got '#N/A'Expecting numeric in L1900 / R1900C12: got '#N/A'Expecting numeric in C1901 / R1901C3: got '#N/A'Expecting numeric in D1901 / R1901C4: got '#N/A'Expecting numeric in E1901 / R1901C5: got '#N/A'Expecting numeric in G1901 / R1901C7: got '#N/A'Expecting numeric in K1901 / R1901C11: got '#N/A'Expecting numeric in L1901 / R1901C12: got '#N/A'Expecting numeric in C1902 / R1902C3: got '#N/A'Expecting numeric in D1902 / R1902C4: got '#N/A'Expecting numeric in E1902 / R1902C5: got '#N/A'Expecting numeric in G1902 / R1902C7: got '#N/A'Expecting numeric in K1902 / R1902C11: got '#N/A'Expecting numeric in L1902 / R1902C12: got '#N/A'Expecting numeric in C1903 / R1903C3: got '#N/A'Expecting numeric in D1903 / R1903C4: got '#N/A'Expecting numeric in E1903 / R1903C5: got '#N/A'Expecting numeric in G1903 / R1903C7: got '#N/A'Expecting numeric in K1903 / R1903C11: got '#N/A'Expecting numeric in L1903 / R1903C12: got '#N/A'Expecting numeric in C1904 / R1904C3: got '#N/A'Expecting numeric in D1904 / R1904C4: got '#N/A'Expecting numeric in E1904 / R1904C5: got '#N/A'Expecting numeric in G1904 / R1904C7: got '#N/A'Expecting numeric in K1904 / R1904C11: got '#N/A'Expecting numeric in L1904 / R1904C12: got '#N/A'Expecting numeric in C1905 / R1905C3: got '#N/A'Expecting numeric in D1905 / R1905C4: got '#N/A'Expecting numeric in E1905 / R1905C5: got '#N/A'Expecting numeric in G1905 / R1905C7: got '#N/A'Expecting numeric in K1905 / R1905C11: got '#N/A'Expecting numeric in L1905 / R1905C12: got '#N/A'Expecting numeric in C1906 / R1906C3: got '#N/A'Expecting numeric in D1906 / R1906C4: got '#N/A'Expecting numeric in E1906 / R1906C5: got '#N/A'Expecting numeric in G1906 / R1906C7: got '#N/A'Expecting numeric in K1906 / R1906C11: got '#N/A'Expecting numeric in L1906 / R1906C12: got '#N/A'Expecting numeric in C1907 / R1907C3: got '#N/A'Expecting numeric in D1907 / R1907C4: got '#N/A'Expecting numeric in E1907 / R1907C5: got '#N/A'Expecting numeric in G1907 / R1907C7: got '#N/A'Expecting numeric in K1907 / R1907C11: got '#N/A'Expecting numeric in L1907 / R1907C12: got '#N/A'Expecting numeric in C1908 / R1908C3: got '#N/A'Expecting numeric in D1908 / R1908C4: got '#N/A'Expecting numeric in E1908 / R1908C5: got '#N/A'Expecting numeric in G1908 / R1908C7: got '#N/A'Expecting numeric in K1908 / R1908C11: got '#N/A'Expecting numeric in L1908 / R1908C12: got '#N/A'Expecting numeric in C1909 / R1909C3: got '#N/A'Expecting numeric in D1909 / R1909C4: got '#N/A'Expecting numeric in E1909 / R1909C5: got '#N/A'Expecting numeric in G1909 / R1909C7: got '#N/A'Expecting numeric in K1909 / R1909C11: got '#N/A'Expecting numeric in L1909 / R1909C12: got '#N/A'Expecting numeric in C1910 / R1910C3: got '#N/A'Expecting numeric in D1910 / R1910C4: got '#N/A'Expecting numeric in E1910 / R1910C5: got '#N/A'Expecting numeric in G1910 / R1910C7: got '#N/A'Expecting numeric in K1910 / R1910C11: got '#N/A'Expecting numeric in L1910 / R1910C12: got '#N/A'Expecting numeric in C1911 / R1911C3: got '#N/A'Expecting numeric in D1911 / R1911C4: got '#N/A'Expecting numeric in E1911 / R1911C5: got '#N/A'Expecting numeric in G1911 / R1911C7: got '#N/A'Expecting numeric in K1911 / R1911C11: got '#N/A'Expecting numeric in L1911 / R1911C12: got '#N/A'Expecting numeric in C1912 / R1912C3: got '#N/A'Expecting numeric in D1912 / R1912C4: got '#N/A'Expecting numeric in E1912 / R1912C5: got '#N/A'Expecting numeric in G1912 / R1912C7: got '#N/A'Expecting numeric in K1912 / R1912C11: got '#N/A'Expecting numeric in L1912 / R1912C12: got '#N/A'Expecting numeric in C1913 / R1913C3: got '#N/A'Expecting numeric in D1913 / R1913C4: got '#N/A'Expecting numeric in E1913 / R1913C5: got '#N/A'Expecting numeric in G1913 / R1913C7: got '#N/A'Expecting numeric in K1913 / R1913C11: got '#N/A'Expecting numeric in L1913 / R1913C12: got '#N/A'Expecting numeric in C1914 / R1914C3: got '#N/A'Expecting numeric in D1914 / R1914C4: got '#N/A'Expecting numeric in E1914 / R1914C5: got '#N/A'Expecting numeric in G1914 / R1914C7: got '#N/A'Expecting numeric in K1914 / R1914C11: got '#N/A'Expecting numeric in L1914 / R1914C12: got '#N/A'Expecting numeric in C1915 / R1915C3: got '#N/A'Expecting numeric in D1915 / R1915C4: got '#N/A'Expecting numeric in E1915 / R1915C5: got '#N/A'Expecting numeric in G1915 / R1915C7: got '#N/A'Expecting numeric in K1915 / R1915C11: got '#N/A'Expecting numeric in L1915 / R1915C12: got '#N/A'Expecting numeric in C1916 / R1916C3: got '#N/A'Expecting numeric in D1916 / R1916C4: got '#N/A'Expecting numeric in E1916 / R1916C5: got '#N/A'Expecting numeric in G1916 / R1916C7: got '#N/A'Expecting numeric in K1916 / R1916C11: got '#N/A'Expecting numeric in L1916 / R1916C12: got '#N/A'Expecting numeric in C1917 / R1917C3: got '#N/A'Expecting numeric in D1917 / R1917C4: got '#N/A'Expecting numeric in E1917 / R1917C5: got '#N/A'Expecting numeric in G1917 / R1917C7: got '#N/A'Expecting numeric in K1917 / R1917C11: got '#N/A'Expecting numeric in L1917 / R1917C12: got '#N/A'Expecting numeric in C1918 / R1918C3: got '#N/A'Expecting numeric in D1918 / R1918C4: got '#N/A'Expecting numeric in E1918 / R1918C5: got '#N/A'Expecting numeric in G1918 / R1918C7: got '#N/A'Expecting numeric in K1918 / R1918C11: got '#N/A'Expecting numeric in L1918 / R1918C12: got '#N/A'Expecting numeric in C1919 / R1919C3: got '#N/A'Expecting numeric in D1919 / R1919C4: got '#N/A'Expecting numeric in E1919 / R1919C5: got '#N/A'Expecting numeric in G1919 / R1919C7: got '#N/A'Expecting numeric in K1919 / R1919C11: got '#N/A'Expecting numeric in L1919 / R1919C12: got '#N/A'Expecting numeric in C1920 / R1920C3: got '#N/A'Expecting numeric in D1920 / R1920C4: got '#N/A'Expecting numeric in E1920 / R1920C5: got '#N/A'Expecting numeric in G1920 / R1920C7: got '#N/A'Expecting numeric in K1920 / R1920C11: got '#N/A'Expecting numeric in L1920 / R1920C12: got '#N/A'Expecting numeric in C1921 / R1921C3: got '#N/A'Expecting numeric in D1921 / R1921C4: got '#N/A'Expecting numeric in E1921 / R1921C5: got '#N/A'Expecting numeric in G1921 / R1921C7: got '#N/A'Expecting numeric in K1921 / R1921C11: got '#N/A'Expecting numeric in L1921 / R1921C12: got '#N/A'Expecting numeric in C1922 / R1922C3: got '#N/A'Expecting numeric in D1922 / R1922C4: got '#N/A'Expecting numeric in E1922 / R1922C5: got '#N/A'Expecting numeric in G1922 / R1922C7: got '#N/A'Expecting numeric in K1922 / R1922C11: got '#N/A'Expecting numeric in L1922 / R1922C12: got '#N/A'Expecting numeric in C1923 / R1923C3: got '#N/A'Expecting numeric in D1923 / R1923C4: got '#N/A'Expecting numeric in E1923 / R1923C5: got '#N/A'Expecting numeric in G1923 / R1923C7: got '#N/A'Expecting numeric in K1923 / R1923C11: got '#N/A'Expecting numeric in L1923 / R1923C12: got '#N/A'Expecting numeric in C1924 / R1924C3: got '#N/A'Expecting numeric in D1924 / R1924C4: got '#N/A'Expecting numeric in E1924 / R1924C5: got '#N/A'Expecting numeric in G1924 / R1924C7: got '#N/A'Expecting numeric in K1924 / R1924C11: got '#N/A'Expecting numeric in L1924 / R1924C12: got '#N/A'Expecting numeric in C1925 / R1925C3: got '#N/A'Expecting numeric in D1925 / R1925C4: got '#N/A'Expecting numeric in E1925 / R1925C5: got '#N/A'Expecting numeric in G1925 / R1925C7: got '#N/A'Expecting numeric in K1925 / R1925C11: got '#N/A'Expecting numeric in L1925 / R1925C12: got '#N/A'Expecting numeric in C1926 / R1926C3: got '#N/A'Expecting numeric in D1926 / R1926C4: got '#N/A'Expecting numeric in E1926 / R1926C5: got '#N/A'Expecting numeric in G1926 / R1926C7: got '#N/A'Expecting numeric in K1926 / R1926C11: got '#N/A'Expecting numeric in L1926 / R1926C12: got '#N/A'Expecting numeric in C1927 / R1927C3: got '#N/A'Expecting numeric in D1927 / R1927C4: got '#N/A'Expecting numeric in E1927 / R1927C5: got '#N/A'Expecting numeric in G1927 / R1927C7: got '#N/A'Expecting numeric in K1927 / R1927C11: got '#N/A'Expecting numeric in L1927 / R1927C12: got '#N/A'Expecting numeric in C1928 / R1928C3: got '#N/A'Expecting numeric in D1928 / R1928C4: got '#N/A'Expecting numeric in E1928 / R1928C5: got '#N/A'Expecting numeric in G1928 / R1928C7: got '#N/A'Expecting numeric in K1928 / R1928C11: got '#N/A'Expecting numeric in L1928 / R1928C12: got '#N/A'Expecting numeric in C1929 / R1929C3: got '#N/A'Expecting numeric in D1929 / R1929C4: got '#N/A'Expecting numeric in E1929 / R1929C5: got '#N/A'Expecting numeric in G1929 / R1929C7: got '#N/A'Expecting numeric in K1929 / R1929C11: got '#N/A'Expecting numeric in L1929 / R1929C12: got '#N/A'Expecting numeric in C1930 / R1930C3: got '#N/A'Expecting numeric in D1930 / R1930C4: got '#N/A'Expecting numeric in E1930 / R1930C5: got '#N/A'Expecting numeric in G1930 / R1930C7: got '#N/A'Expecting numeric in K1930 / R1930C11: got '#N/A'Expecting numeric in L1930 / R1930C12: got '#N/A'Expecting numeric in C1931 / R1931C3: got '#N/A'Expecting numeric in D1931 / R1931C4: got '#N/A'Expecting numeric in E1931 / R1931C5: got '#N/A'Expecting numeric in G1931 / R1931C7: got '#N/A'Expecting numeric in K1931 / R1931C11: got '#N/A'Expecting numeric in L1931 / R1931C12: got '#N/A'Expecting numeric in C1932 / R1932C3: got '#N/A'Expecting numeric in D1932 / R1932C4: got '#N/A'Expecting numeric in E1932 / R1932C5: got '#N/A'Expecting numeric in G1932 / R1932C7: got '#N/A'Expecting numeric in K1932 / R1932C11: got '#N/A'Expecting numeric in L1932 / R1932C12: got '#N/A'Expecting numeric in C1933 / R1933C3: got '#N/A'Expecting numeric in D1933 / R1933C4: got '#N/A'Expecting numeric in E1933 / R1933C5: got '#N/A'Expecting numeric in G1933 / R1933C7: got '#N/A'Expecting numeric in K1933 / R1933C11: got '#N/A'Expecting numeric in L1933 / R1933C12: got '#N/A'Expecting numeric in C1934 / R1934C3: got '#N/A'Expecting numeric in D1934 / R1934C4: got '#N/A'Expecting numeric in E1934 / R1934C5: got '#N/A'Expecting numeric in G1934 / R1934C7: got '#N/A'Expecting numeric in K1934 / R1934C11: got '#N/A'Expecting numeric in L1934 / R1934C12: got '#N/A'Expecting numeric in C1935 / R1935C3: got '#N/A'Expecting numeric in D1935 / R1935C4: got '#N/A'Expecting numeric in E1935 / R1935C5: got '#N/A'Expecting numeric in G1935 / R1935C7: got '#N/A'Expecting numeric in K1935 / R1935C11: got '#N/A'Expecting numeric in L1935 / R1935C12: got '#N/A'Expecting numeric in C1936 / R1936C3: got '#N/A'Expecting numeric in D1936 / R1936C4: got '#N/A'Expecting numeric in E1936 / R1936C5: got '#N/A'Expecting numeric in G1936 / R1936C7: got '#N/A'Expecting numeric in K1936 / R1936C11: got '#N/A'Expecting numeric in L1936 / R1936C12: got '#N/A'Expecting numeric in C1937 / R1937C3: got '#N/A'Expecting numeric in D1937 / R1937C4: got '#N/A'Expecting numeric in E1937 / R1937C5: got '#N/A'Expecting numeric in G1937 / R1937C7: got '#N/A'Expecting numeric in K1937 / R1937C11: got '#N/A'Expecting numeric in L1937 / R1937C12: got '#N/A'Expecting numeric in C1938 / R1938C3: got '#N/A'Expecting numeric in D1938 / R1938C4: got '#N/A'Expecting numeric in E1938 / R1938C5: got '#N/A'Expecting numeric in G1938 / R1938C7: got '#N/A'Expecting numeric in K1938 / R1938C11: got '#N/A'Expecting numeric in L1938 / R1938C12: got '#N/A'Expecting numeric in C1939 / R1939C3: got '#N/A'Expecting numeric in D1939 / R1939C4: got '#N/A'Expecting numeric in E1939 / R1939C5: got '#N/A'Expecting numeric in G1939 / R1939C7: got '#N/A'Expecting numeric in K1939 / R1939C11: got '#N/A'Expecting numeric in L1939 / R1939C12: got '#N/A'Expecting numeric in C1940 / R1940C3: got '#N/A'Expecting numeric in D1940 / R1940C4: got '#N/A'Expecting numeric in E1940 / R1940C5: got '#N/A'Expecting numeric in G1940 / R1940C7: got '#N/A'Expecting numeric in K1940 / R1940C11: got '#N/A'Expecting numeric in L1940 / R1940C12: got '#N/A'Expecting numeric in C1941 / R1941C3: got '#N/A'Expecting numeric in D1941 / R1941C4: got '#N/A'Expecting numeric in E1941 / R1941C5: got '#N/A'Expecting numeric in G1941 / R1941C7: got '#N/A'Expecting numeric in K1941 / R1941C11: got '#N/A'Expecting numeric in L1941 / R1941C12: got '#N/A'Expecting numeric in C1942 / R1942C3: got '#N/A'Expecting numeric in D1942 / R1942C4: got '#N/A'Expecting numeric in E1942 / R1942C5: got '#N/A'Expecting numeric in G1942 / R1942C7: got '#N/A'Expecting numeric in K1942 / R1942C11: got '#N/A'Expecting numeric in L1942 / R1942C12: got '#N/A'Expecting numeric in C1943 / R1943C3: got '#N/A'Expecting numeric in D1943 / R1943C4: got '#N/A'Expecting numeric in E1943 / R1943C5: got '#N/A'Expecting numeric in G1943 / R1943C7: got '#N/A'Expecting numeric in K1943 / R1943C11: got '#N/A'Expecting numeric in L1943 / R1943C12: got '#N/A'Expecting numeric in C1944 / R1944C3: got '#N/A'Expecting numeric in D1944 / R1944C4: got '#N/A'Expecting numeric in E1944 / R1944C5: got '#N/A'Expecting numeric in G1944 / R1944C7: got '#N/A'Expecting numeric in K1944 / R1944C11: got '#N/A'Expecting numeric in L1944 / R1944C12: got '#N/A'Expecting numeric in C1945 / R1945C3: got '#N/A'Expecting numeric in D1945 / R1945C4: got '#N/A'Expecting numeric in E1945 / R1945C5: got '#N/A'Expecting numeric in G1945 / R1945C7: got '#N/A'Expecting numeric in K1945 / R1945C11: got '#N/A'Expecting numeric in L1945 / R1945C12: got '#N/A'Expecting numeric in C1946 / R1946C3: got '#N/A'Expecting numeric in D1946 / R1946C4: got '#N/A'Expecting numeric in E1946 / R1946C5: got '#N/A'Expecting numeric in G1946 / R1946C7: got '#N/A'Expecting numeric in K1946 / R1946C11: got '#N/A'Expecting numeric in L1946 / R1946C12: got '#N/A'Expecting numeric in C1947 / R1947C3: got '#N/A'Expecting numeric in D1947 / R1947C4: got '#N/A'Expecting numeric in E1947 / R1947C5: got '#N/A'Expecting numeric in G1947 / R1947C7: got '#N/A'Expecting numeric in K1947 / R1947C11: got '#N/A'Expecting numeric in L1947 / R1947C12: got '#N/A'Expecting numeric in C1948 / R1948C3: got '#N/A'Expecting numeric in D1948 / R1948C4: got '#N/A'Expecting numeric in E1948 / R1948C5: got '#N/A'Expecting numeric in G1948 / R1948C7: got '#N/A'Expecting numeric in K1948 / R1948C11: got '#N/A'Expecting numeric in L1948 / R1948C12: got '#N/A'Expecting numeric in C1949 / R1949C3: got '#N/A'Expecting numeric in D1949 / R1949C4: got '#N/A'Expecting numeric in E1949 / R1949C5: got '#N/A'Expecting numeric in G1949 / R1949C7: got '#N/A'Expecting numeric in K1949 / R1949C11: got '#N/A'Expecting numeric in L1949 / R1949C12: got '#N/A'Expecting numeric in C1950 / R1950C3: got '#N/A'Expecting numeric in D1950 / R1950C4: got '#N/A'Expecting numeric in E1950 / R1950C5: got '#N/A'Expecting numeric in G1950 / R1950C7: got '#N/A'Expecting numeric in K1950 / R1950C11: got '#N/A'Expecting numeric in L1950 / R1950C12: got '#N/A'Expecting numeric in C1951 / R1951C3: got '#N/A'Expecting numeric in D1951 / R1951C4: got '#N/A'Expecting numeric in E1951 / R1951C5: got '#N/A'Expecting numeric in G1951 / R1951C7: got '#N/A'Expecting numeric in K1951 / R1951C11: got '#N/A'Expecting numeric in L1951 / R1951C12: got '#N/A'Expecting numeric in C1952 / R1952C3: got '#N/A'Expecting numeric in D1952 / R1952C4: got '#N/A'Expecting numeric in E1952 / R1952C5: got '#N/A'Expecting numeric in G1952 / R1952C7: got '#N/A'Expecting numeric in K1952 / R1952C11: got '#N/A'Expecting numeric in L1952 / R1952C12: got '#N/A'Expecting numeric in C1953 / R1953C3: got '#N/A'Expecting numeric in D1953 / R1953C4: got '#N/A'Expecting numeric in E1953 / R1953C5: got '#N/A'Expecting numeric in G1953 / R1953C7: got '#N/A'Expecting numeric in K1953 / R1953C11: got '#N/A'Expecting numeric in L1953 / R1953C12: got '#N/A'Expecting numeric in C1954 / R1954C3: got '#N/A'Expecting numeric in D1954 / R1954C4: got '#N/A'Expecting numeric in E1954 / R1954C5: got '#N/A'Expecting numeric in G1954 / R1954C7: got '#N/A'Expecting numeric in K1954 / R1954C11: got '#N/A'Expecting numeric in L1954 / R1954C12: got '#N/A'Expecting numeric in C1955 / R1955C3: got '#N/A'Expecting numeric in D1955 / R1955C4: got '#N/A'Expecting numeric in E1955 / R1955C5: got '#N/A'Expecting numeric in G1955 / R1955C7: got '#N/A'Expecting numeric in K1955 / R1955C11: got '#N/A'Expecting numeric in L1955 / R1955C12: got '#N/A'Expecting numeric in C1956 / R1956C3: got '#N/A'Expecting numeric in D1956 / R1956C4: got '#N/A'Expecting numeric in E1956 / R1956C5: got '#N/A'Expecting numeric in G1956 / R1956C7: got '#N/A'Expecting numeric in K1956 / R1956C11: got '#N/A'Expecting numeric in L1956 / R1956C12: got '#N/A'Expecting numeric in C1957 / R1957C3: got '#N/A'Expecting numeric in D1957 / R1957C4: got '#N/A'Expecting numeric in E1957 / R1957C5: got '#N/A'Expecting numeric in G1957 / R1957C7: got '#N/A'Expecting numeric in K1957 / R1957C11: got '#N/A'Expecting numeric in L1957 / R1957C12: got '#N/A'Expecting numeric in C1958 / R1958C3: got '#N/A'Expecting numeric in D1958 / R1958C4: got '#N/A'Expecting numeric in E1958 / R1958C5: got '#N/A'Expecting numeric in G1958 / R1958C7: got '#N/A'Expecting numeric in K1958 / R1958C11: got '#N/A'Expecting numeric in L1958 / R1958C12: got '#N/A'Expecting numeric in C1959 / R1959C3: got '#N/A'Expecting numeric in D1959 / R1959C4: got '#N/A'Expecting numeric in E1959 / R1959C5: got '#N/A'Expecting numeric in G1959 / R1959C7: got '#N/A'Expecting numeric in K1959 / R1959C11: got '#N/A'Expecting numeric in L1959 / R1959C12: got '#N/A'Expecting numeric in C1960 / R1960C3: got '#N/A'Expecting numeric in D1960 / R1960C4: got '#N/A'Expecting numeric in E1960 / R1960C5: got '#N/A'Expecting numeric in G1960 / R1960C7: got '#N/A'Expecting numeric in K1960 / R1960C11: got '#N/A'Expecting numeric in L1960 / R1960C12: got '#N/A'Expecting numeric in C1961 / R1961C3: got '#N/A'Expecting numeric in D1961 / R1961C4: got '#N/A'Expecting numeric in E1961 / R1961C5: got '#N/A'Expecting numeric in G1961 / R1961C7: got '#N/A'Expecting numeric in K1961 / R1961C11: got '#N/A'Expecting numeric in L1961 / R1961C12: got '#N/A'Expecting numeric in C1962 / R1962C3: got '#N/A'Expecting numeric in D1962 / R1962C4: got '#N/A'Expecting numeric in E1962 / R1962C5: got '#N/A'Expecting numeric in G1962 / R1962C7: got '#N/A'Expecting numeric in K1962 / R1962C11: got '#N/A'Expecting numeric in L1962 / R1962C12: got '#N/A'Expecting numeric in C1963 / R1963C3: got '#N/A'Expecting numeric in D1963 / R1963C4: got '#N/A'Expecting numeric in E1963 / R1963C5: got '#N/A'Expecting numeric in G1963 / R1963C7: got '#N/A'Expecting numeric in K1963 / R1963C11: got '#N/A'Expecting numeric in L1963 / R1963C12: got '#N/A'Expecting numeric in C1964 / R1964C3: got '#N/A'Expecting numeric in D1964 / R1964C4: got '#N/A'Expecting numeric in E1964 / R1964C5: got '#N/A'Expecting numeric in G1964 / R1964C7: got '#N/A'Expecting numeric in K1964 / R1964C11: got '#N/A'Expecting numeric in L1964 / R1964C12: got '#N/A'Expecting numeric in C1965 / R1965C3: got '#N/A'Expecting numeric in D1965 / R1965C4: got '#N/A'Expecting numeric in E1965 / R1965C5: got '#N/A'Expecting numeric in G1965 / R1965C7: got '#N/A'Expecting numeric in K1965 / R1965C11: got '#N/A'Expecting numeric in L1965 / R1965C12: got '#N/A'Expecting numeric in C1966 / R1966C3: got '#N/A'Expecting numeric in D1966 / R1966C4: got '#N/A'Expecting numeric in E1966 / R1966C5: got '#N/A'Expecting numeric in G1966 / R1966C7: got '#N/A'Expecting numeric in K1966 / R1966C11: got '#N/A'Expecting numeric in L1966 / R1966C12: got '#N/A'Expecting numeric in C1967 / R1967C3: got '#N/A'Expecting numeric in D1967 / R1967C4: got '#N/A'Expecting numeric in E1967 / R1967C5: got '#N/A'Expecting numeric in G1967 / R1967C7: got '#N/A'Expecting numeric in K1967 / R1967C11: got '#N/A'Expecting numeric in L1967 / R1967C12: got '#N/A'Expecting numeric in C1968 / R1968C3: got '#N/A'Expecting numeric in D1968 / R1968C4: got '#N/A'Expecting numeric in E1968 / R1968C5: got '#N/A'Expecting numeric in G1968 / R1968C7: got '#N/A'Expecting numeric in K1968 / R1968C11: got '#N/A'Expecting numeric in L1968 / R1968C12: got '#N/A'Expecting numeric in C1969 / R1969C3: got '#N/A'Expecting numeric in D1969 / R1969C4: got '#N/A'Expecting numeric in E1969 / R1969C5: got '#N/A'Expecting numeric in G1969 / R1969C7: got '#N/A'Expecting numeric in K1969 / R1969C11: got '#N/A'Expecting numeric in L1969 / R1969C12: got '#N/A'Expecting numeric in C1970 / R1970C3: got '#N/A'Expecting numeric in D1970 / R1970C4: got '#N/A'Expecting numeric in E1970 / R1970C5: got '#N/A'Expecting numeric in G1970 / R1970C7: got '#N/A'Expecting numeric in K1970 / R1970C11: got '#N/A'Expecting numeric in L1970 / R1970C12: got '#N/A'Expecting numeric in C1971 / R1971C3: got '#N/A'Expecting numeric in D1971 / R1971C4: got '#N/A'Expecting numeric in E1971 / R1971C5: got '#N/A'Expecting numeric in G1971 / R1971C7: got '#N/A'Expecting numeric in K1971 / R1971C11: got '#N/A'Expecting numeric in L1971 / R1971C12: got '#N/A'Expecting numeric in C1972 / R1972C3: got '#N/A'Expecting numeric in D1972 / R1972C4: got '#N/A'Expecting numeric in E1972 / R1972C5: got '#N/A'Expecting numeric in G1972 / R1972C7: got '#N/A'Expecting numeric in K1972 / R1972C11: got '#N/A'Expecting numeric in L1972 / R1972C12: got '#N/A'Expecting numeric in C1973 / R1973C3: got '#N/A'Expecting numeric in D1973 / R1973C4: got '#N/A'Expecting numeric in E1973 / R1973C5: got '#N/A'Expecting numeric in G1973 / R1973C7: got '#N/A'Expecting numeric in K1973 / R1973C11: got '#N/A'Expecting numeric in L1973 / R1973C12: got '#N/A'Expecting numeric in C1974 / R1974C3: got '#N/A'Expecting numeric in D1974 / R1974C4: got '#N/A'Expecting numeric in E1974 / R1974C5: got '#N/A'Expecting numeric in G1974 / R1974C7: got '#N/A'Expecting numeric in K1974 / R1974C11: got '#N/A'Expecting numeric in L1974 / R1974C12: got '#N/A'Expecting numeric in C1975 / R1975C3: got '#N/A'Expecting numeric in D1975 / R1975C4: got '#N/A'Expecting numeric in E1975 / R1975C5: got '#N/A'Expecting numeric in G1975 / R1975C7: got '#N/A'Expecting numeric in K1975 / R1975C11: got '#N/A'Expecting numeric in L1975 / R1975C12: got '#N/A'Expecting numeric in C1976 / R1976C3: got '#N/A'Expecting numeric in D1976 / R1976C4: got '#N/A'Expecting numeric in E1976 / R1976C5: got '#N/A'Expecting numeric in G1976 / R1976C7: got '#N/A'Expecting numeric in K1976 / R1976C11: got '#N/A'Expecting numeric in L1976 / R1976C12: got '#N/A'Expecting numeric in C1977 / R1977C3: got '#N/A'Expecting numeric in D1977 / R1977C4: got '#N/A'Expecting numeric in E1977 / R1977C5: got '#N/A'Expecting numeric in G1977 / R1977C7: got '#N/A'Expecting numeric in K1977 / R1977C11: got '#N/A'Expecting numeric in L1977 / R1977C12: got '#N/A'Expecting numeric in C1978 / R1978C3: got '#N/A'Expecting numeric in D1978 / R1978C4: got '#N/A'Expecting numeric in E1978 / R1978C5: got '#N/A'Expecting numeric in G1978 / R1978C7: got '#N/A'Expecting numeric in K1978 / R1978C11: got '#N/A'Expecting numeric in L1978 / R1978C12: got '#N/A'Expecting numeric in C1979 / R1979C3: got '#N/A'Expecting numeric in D1979 / R1979C4: got '#N/A'Expecting numeric in E1979 / R1979C5: got '#N/A'Expecting numeric in G1979 / R1979C7: got '#N/A'Expecting numeric in K1979 / R1979C11: got '#N/A'Expecting numeric in L1979 / R1979C12: got '#N/A'Expecting numeric in C1980 / R1980C3: got '#N/A'Expecting numeric in D1980 / R1980C4: got '#N/A'Expecting numeric in E1980 / R1980C5: got '#N/A'Expecting numeric in G1980 / R1980C7: got '#N/A'Expecting numeric in K1980 / R1980C11: got '#N/A'Expecting numeric in L1980 / R1980C12: got '#N/A'Expecting numeric in C1981 / R1981C3: got '#N/A'Expecting numeric in D1981 / R1981C4: got '#N/A'Expecting numeric in E1981 / R1981C5: got '#N/A'Expecting numeric in G1981 / R1981C7: got '#N/A'Expecting numeric in K1981 / R1981C11: got '#N/A'Expecting numeric in L1981 / R1981C12: got '#N/A'Expecting numeric in C1982 / R1982C3: got '#N/A'Expecting numeric in D1982 / R1982C4: got '#N/A'Expecting numeric in E1982 / R1982C5: got '#N/A'Expecting numeric in G1982 / R1982C7: got '#N/A'Expecting numeric in K1982 / R1982C11: got '#N/A'Expecting numeric in L1982 / R1982C12: got '#N/A'Expecting numeric in C1983 / R1983C3: got '#N/A'Expecting numeric in D1983 / R1983C4: got '#N/A'Expecting numeric in E1983 / R1983C5: got '#N/A'Expecting numeric in G1983 / R1983C7: got '#N/A'Expecting numeric in K1983 / R1983C11: got '#N/A'Expecting numeric in L1983 / R1983C12: got '#N/A'Expecting numeric in C1984 / R1984C3: got '#N/A'Expecting numeric in D1984 / R1984C4: got '#N/A'Expecting numeric in E1984 / R1984C5: got '#N/A'Expecting numeric in G1984 / R1984C7: got '#N/A'Expecting numeric in K1984 / R1984C11: got '#N/A'Expecting numeric in L1984 / R1984C12: got '#N/A'Expecting numeric in C1985 / R1985C3: got '#N/A'Expecting numeric in D1985 / R1985C4: got '#N/A'Expecting numeric in E1985 / R1985C5: got '#N/A'Expecting numeric in G1985 / R1985C7: got '#N/A'Expecting numeric in K1985 / R1985C11: got '#N/A'Expecting numeric in L1985 / R1985C12: got '#N/A'Expecting numeric in C1986 / R1986C3: got '#N/A'Expecting numeric in D1986 / R1986C4: got '#N/A'Expecting numeric in E1986 / R1986C5: got '#N/A'Expecting numeric in G1986 / R1986C7: got '#N/A'Expecting numeric in K1986 / R1986C11: got '#N/A'Expecting numeric in L1986 / R1986C12: got '#N/A'Expecting numeric in C1987 / R1987C3: got '#N/A'Expecting numeric in D1987 / R1987C4: got '#N/A'Expecting numeric in E1987 / R1987C5: got '#N/A'Expecting numeric in G1987 / R1987C7: got '#N/A'Expecting numeric in K1987 / R1987C11: got '#N/A'Expecting numeric in L1987 / R1987C12: got '#N/A'Expecting numeric in C1988 / R1988C3: got '#N/A'Expecting numeric in D1988 / R1988C4: got '#N/A'Expecting numeric in E1988 / R1988C5: got '#N/A'Expecting numeric in G1988 / R1988C7: got '#N/A'Expecting numeric in K1988 / R1988C11: got '#N/A'Expecting numeric in L1988 / R1988C12: got '#N/A'Expecting numeric in C1989 / R1989C3: got '#N/A'Expecting numeric in D1989 / R1989C4: got '#N/A'Expecting numeric in E1989 / R1989C5: got '#N/A'Expecting numeric in G1989 / R1989C7: got '#N/A'Expecting numeric in K1989 / R1989C11: got '#N/A'Expecting numeric in L1989 / R1989C12: got '#N/A'Expecting numeric in C1990 / R1990C3: got '#N/A'Expecting numeric in D1990 / R1990C4: got '#N/A'Expecting numeric in E1990 / R1990C5: got '#N/A'Expecting numeric in G1990 / R1990C7: got '#N/A'Expecting numeric in K1990 / R1990C11: got '#N/A'Expecting numeric in L1990 / R1990C12: got '#N/A'Expecting numeric in C1991 / R1991C3: got '#N/A'Expecting numeric in D1991 / R1991C4: got '#N/A'Expecting numeric in E1991 / R1991C5: got '#N/A'Expecting numeric in G1991 / R1991C7: got '#N/A'Expecting numeric in K1991 / R1991C11: got '#N/A'Expecting numeric in L1991 / R1991C12: got '#N/A'Expecting numeric in C1992 / R1992C3: got '#N/A'Expecting numeric in D1992 / R1992C4: got '#N/A'Expecting numeric in E1992 / R1992C5: got '#N/A'Expecting numeric in G1992 / R1992C7: got '#N/A'Expecting numeric in K1992 / R1992C11: got '#N/A'Expecting numeric in L1992 / R1992C12: got '#N/A'Expecting numeric in C1993 / R1993C3: got '#N/A'Expecting numeric in D1993 / R1993C4: got '#N/A'Expecting numeric in E1993 / R1993C5: got '#N/A'Expecting numeric in G1993 / R1993C7: got '#N/A'Expecting numeric in K1993 / R1993C11: got '#N/A'Expecting numeric in L1993 / R1993C12: got '#N/A'Expecting numeric in C1994 / R1994C3: got '#N/A'Expecting numeric in D1994 / R1994C4: got '#N/A'Expecting numeric in E1994 / R1994C5: got '#N/A'Expecting numeric in G1994 / R1994C7: got '#N/A'Expecting numeric in K1994 / R1994C11: got '#N/A'Expecting numeric in L1994 / R1994C12: got '#N/A'Expecting numeric in C1995 / R1995C3: got '#N/A'Expecting numeric in D1995 / R1995C4: got '#N/A'Expecting numeric in E1995 / R1995C5: got '#N/A'Expecting numeric in G1995 / R1995C7: got '#N/A'Expecting numeric in K1995 / R1995C11: got '#N/A'Expecting numeric in L1995 / R1995C12: got '#N/A'Expecting numeric in C1996 / R1996C3: got '#N/A'Expecting numeric in D1996 / R1996C4: got '#N/A'Expecting numeric in E1996 / R1996C5: got '#N/A'Expecting numeric in G1996 / R1996C7: got '#N/A'Expecting numeric in K1996 / R1996C11: got '#N/A'Expecting numeric in L1996 / R1996C12: got '#N/A'Expecting numeric in C1997 / R1997C3: got '#N/A'Expecting numeric in D1997 / R1997C4: got '#N/A'Expecting numeric in E1997 / R1997C5: got '#N/A'Expecting numeric in G1997 / R1997C7: got '#N/A'Expecting numeric in K1997 / R1997C11: got '#N/A'Expecting numeric in L1997 / R1997C12: got '#N/A'Expecting numeric in C1998 / R1998C3: got '#N/A'Expecting numeric in D1998 / R1998C4: got '#N/A'Expecting numeric in E1998 / R1998C5: got '#N/A'Expecting numeric in G1998 / R1998C7: got '#N/A'Expecting numeric in K1998 / R1998C11: got '#N/A'Expecting numeric in L1998 / R1998C12: got '#N/A'Expecting numeric in C1999 / R1999C3: got '#N/A'Expecting numeric in D1999 / R1999C4: got '#N/A'Expecting numeric in E1999 / R1999C5: got '#N/A'Expecting numeric in G1999 / R1999C7: got '#N/A'Expecting numeric in K1999 / R1999C11: got '#N/A'Expecting numeric in L1999 / R1999C12: got '#N/A'Expecting numeric in C2000 / R2000C3: got '#N/A'Expecting numeric in D2000 / R2000C4: got '#N/A'Expecting numeric in E2000 / R2000C5: got '#N/A'Expecting numeric in G2000 / R2000C7: got '#N/A'Expecting numeric in K2000 / R2000C11: got '#N/A'Expecting numeric in L2000 / R2000C12: got '#N/A'Expecting numeric in C2001 / R2001C3: got '#N/A'Expecting numeric in D2001 / R2001C4: got '#N/A'Expecting numeric in E2001 / R2001C5: got '#N/A'Expecting numeric in G2001 / R2001C7: got '#N/A'Expecting numeric in K2001 / R2001C11: got '#N/A'Expecting numeric in L2001 / R2001C12: got '#N/A'Expecting numeric in C2002 / R2002C3: got '#N/A'Expecting numeric in D2002 / R2002C4: got '#N/A'Expecting numeric in E2002 / R2002C5: got '#N/A'Expecting numeric in G2002 / R2002C7: got '#N/A'Expecting numeric in K2002 / R2002C11: got '#N/A'Expecting numeric in L2002 / R2002C12: got '#N/A'Expecting numeric in C2003 / R2003C3: got '#N/A'Expecting numeric in D2003 / R2003C4: got '#N/A'Expecting numeric in E2003 / R2003C5: got '#N/A'Expecting numeric in G2003 / R2003C7: got '#N/A'Expecting numeric in K2003 / R2003C11: got '#N/A'Expecting numeric in L2003 / R2003C12: got '#N/A'Expecting numeric in C2004 / R2004C3: got '#N/A'Expecting numeric in D2004 / R2004C4: got '#N/A'Expecting numeric in E2004 / R2004C5: got '#N/A'Expecting numeric in G2004 / R2004C7: got '#N/A'Expecting numeric in K2004 / R2004C11: got '#N/A'Expecting numeric in L2004 / R2004C12: got '#N/A'Expecting numeric in C2005 / R2005C3: got '#N/A'Expecting numeric in D2005 / R2005C4: got '#N/A'Expecting numeric in E2005 / R2005C5: got '#N/A'Expecting numeric in G2005 / R2005C7: got '#N/A'Expecting numeric in K2005 / R2005C11: got '#N/A'Expecting numeric in L2005 / R2005C12: got '#N/A'Expecting numeric in C2006 / R2006C3: got '#N/A'Expecting numeric in D2006 / R2006C4: got '#N/A'Expecting numeric in E2006 / R2006C5: got '#N/A'Expecting numeric in G2006 / R2006C7: got '#N/A'Expecting numeric in K2006 / R2006C11: got '#N/A'Expecting numeric in L2006 / R2006C12: got '#N/A'Expecting numeric in C2007 / R2007C3: got '#N/A'Expecting numeric in D2007 / R2007C4: got '#N/A'Expecting numeric in E2007 / R2007C5: got '#N/A'Expecting numeric in G2007 / R2007C7: got '#N/A'Expecting numeric in K2007 / R2007C11: got '#N/A'Expecting numeric in L2007 / R2007C12: got '#N/A'Expecting numeric in C2008 / R2008C3: got '#N/A'Expecting numeric in D2008 / R2008C4: got '#N/A'Expecting numeric in E2008 / R2008C5: got '#N/A'Expecting numeric in G2008 / R2008C7: got '#N/A'Expecting numeric in K2008 / R2008C11: got '#N/A'Expecting numeric in L2008 / R2008C12: got '#N/A'Expecting numeric in C2009 / R2009C3: got '#N/A'Expecting numeric in D2009 / R2009C4: got '#N/A'Expecting numeric in E2009 / R2009C5: got '#N/A'Expecting numeric in G2009 / R2009C7: got '#N/A'Expecting numeric in K2009 / R2009C11: got '#N/A'Expecting numeric in L2009 / R2009C12: got '#N/A'Expecting numeric in C2010 / R2010C3: got '#N/A'Expecting numeric in D2010 / R2010C4: got '#N/A'Expecting numeric in E2010 / R2010C5: got '#N/A'Expecting numeric in G2010 / R2010C7: got '#N/A'Expecting numeric in K2010 / R2010C11: got '#N/A'Expecting numeric in L2010 / R2010C12: got '#N/A'Expecting numeric in C2011 / R2011C3: got '#N/A'Expecting numeric in D2011 / R2011C4: got '#N/A'Expecting numeric in E2011 / R2011C5: got '#N/A'Expecting numeric in G2011 / R2011C7: got '#N/A'Expecting numeric in K2011 / R2011C11: got '#N/A'Expecting numeric in L2011 / R2011C12: got '#N/A'Expecting numeric in C2012 / R2012C3: got '#N/A'Expecting numeric in D2012 / R2012C4: got '#N/A'Expecting numeric in E2012 / R2012C5: got '#N/A'Expecting numeric in G2012 / R2012C7: got '#N/A'Expecting numeric in K2012 / R2012C11: got '#N/A'Expecting numeric in L2012 / R2012C12: got '#N/A'Expecting numeric in C2013 / R2013C3: got '#N/A'Expecting numeric in D2013 / R2013C4: got '#N/A'Expecting numeric in E2013 / R2013C5: got '#N/A'Expecting numeric in G2013 / R2013C7: got '#N/A'Expecting numeric in K2013 / R2013C11: got '#N/A'Expecting numeric in L2013 / R2013C12: got '#N/A'Expecting numeric in C2014 / R2014C3: got '#N/A'Expecting numeric in D2014 / R2014C4: got '#N/A'Expecting numeric in E2014 / R2014C5: got '#N/A'Expecting numeric in G2014 / R2014C7: got '#N/A'Expecting numeric in K2014 / R2014C11: got '#N/A'Expecting numeric in L2014 / R2014C12: got '#N/A'Expecting numeric in C2015 / R2015C3: got '#N/A'Expecting numeric in D2015 / R2015C4: got '#N/A'Expecting numeric in E2015 / R2015C5: got '#N/A'Expecting numeric in G2015 / R2015C7: got '#N/A'Expecting numeric in K2015 / R2015C11: got '#N/A'Expecting numeric in L2015 / R2015C12: got '#N/A'Expecting numeric in C2016 / R2016C3: got '#N/A'Expecting numeric in D2016 / R2016C4: got '#N/A'Expecting numeric in E2016 / R2016C5: got '#N/A'Expecting numeric in G2016 / R2016C7: got '#N/A'Expecting numeric in K2016 / R2016C11: got '#N/A'Expecting numeric in L2016 / R2016C12: got '#N/A'Expecting numeric in C2017 / R2017C3: got '#N/A'Expecting numeric in D2017 / R2017C4: got '#N/A'Expecting numeric in E2017 / R2017C5: got '#N/A'Expecting numeric in G2017 / R2017C7: got '#N/A'Expecting numeric in K2017 / R2017C11: got '#N/A'Expecting numeric in L2017 / R2017C12: got '#N/A'Expecting numeric in C2018 / R2018C3: got '#N/A'Expecting numeric in D2018 / R2018C4: got '#N/A'Expecting numeric in E2018 / R2018C5: got '#N/A'Expecting numeric in G2018 / R2018C7: got '#N/A'Expecting numeric in K2018 / R2018C11: got '#N/A'Expecting numeric in L2018 / R2018C12: got '#N/A'Expecting numeric in C2019 / R2019C3: got '#N/A'Expecting numeric in D2019 / R2019C4: got '#N/A'Expecting numeric in E2019 / R2019C5: got '#N/A'Expecting numeric in G2019 / R2019C7: got '#N/A'Expecting numeric in K2019 / R2019C11: got '#N/A'Expecting numeric in L2019 / R2019C12: got '#N/A'Expecting numeric in C2020 / R2020C3: got '#N/A'Expecting numeric in D2020 / R2020C4: got '#N/A'Expecting numeric in E2020 / R2020C5: got '#N/A'Expecting numeric in G2020 / R2020C7: got '#N/A'Expecting numeric in K2020 / R2020C11: got '#N/A'Expecting numeric in L2020 / R2020C12: got '#N/A'Expecting numeric in C2021 / R2021C3: got '#N/A'Expecting numeric in D2021 / R2021C4: got '#N/A'Expecting numeric in E2021 / R2021C5: got '#N/A'Expecting numeric in G2021 / R2021C7: got '#N/A'Expecting numeric in K2021 / R2021C11: got '#N/A'Expecting numeric in L2021 / R2021C12: got '#N/A'Expecting numeric in C2022 / R2022C3: got '#N/A'Expecting numeric in D2022 / R2022C4: got '#N/A'Expecting numeric in E2022 / R2022C5: got '#N/A'Expecting numeric in G2022 / R2022C7: got '#N/A'Expecting numeric in K2022 / R2022C11: got '#N/A'Expecting numeric in L2022 / R2022C12: got '#N/A'Expecting numeric in C2023 / R2023C3: got '#N/A'Expecting numeric in D2023 / R2023C4: got '#N/A'Expecting numeric in E2023 / R2023C5: got '#N/A'Expecting numeric in G2023 / R2023C7: got '#N/A'Expecting numeric in K2023 / R2023C11: got '#N/A'Expecting numeric in L2023 / R2023C12: got '#N/A'Expecting numeric in C2024 / R2024C3: got '#N/A'Expecting numeric in D2024 / R2024C4: got '#N/A'Expecting numeric in E2024 / R2024C5: got '#N/A'Expecting numeric in G2024 / R2024C7: got '#N/A'Expecting numeric in K2024 / R2024C11: got '#N/A'Expecting numeric in L2024 / R2024C12: got '#N/A'Expecting numeric in C2025 / R2025C3: got '#N/A'Expecting numeric in D2025 / R2025C4: got '#N/A'Expecting numeric in E2025 / R2025C5: got '#N/A'Expecting numeric in G2025 / R2025C7: got '#N/A'Expecting numeric in K2025 / R2025C11: got '#N/A'Expecting numeric in L2025 / R2025C12: got '#N/A'Expecting numeric in C2026 / R2026C3: got '#N/A'Expecting numeric in D2026 / R2026C4: got '#N/A'Expecting numeric in E2026 / R2026C5: got '#N/A'Expecting numeric in G2026 / R2026C7: got '#N/A'Expecting numeric in K2026 / R2026C11: got '#N/A'Expecting numeric in L2026 / R2026C12: got '#N/A'Expecting numeric in C2027 / R2027C3: got '#N/A'Expecting numeric in D2027 / R2027C4: got '#N/A'Expecting numeric in E2027 / R2027C5: got '#N/A'Expecting numeric in G2027 / R2027C7: got '#N/A'Expecting numeric in K2027 / R2027C11: got '#N/A'Expecting numeric in L2027 / R2027C12: got '#N/A'Expecting numeric in C2028 / R2028C3: got '#N/A'Expecting numeric in D2028 / R2028C4: got '#N/A'Expecting numeric in E2028 / R2028C5: got '#N/A'Expecting numeric in G2028 / R2028C7: got '#N/A'Expecting numeric in K2028 / R2028C11: got '#N/A'Expecting numeric in L2028 / R2028C12: got '#N/A'Expecting numeric in C2029 / R2029C3: got '#N/A'Expecting numeric in D2029 / R2029C4: got '#N/A'Expecting numeric in E2029 / R2029C5: got '#N/A'Expecting numeric in G2029 / R2029C7: got '#N/A'Expecting numeric in K2029 / R2029C11: got '#N/A'Expecting numeric in L2029 / R2029C12: got '#N/A'Expecting numeric in C2030 / R2030C3: got '#N/A'Expecting numeric in D2030 / R2030C4: got '#N/A'Expecting numeric in E2030 / R2030C5: got '#N/A'Expecting numeric in G2030 / R2030C7: got '#N/A'Expecting numeric in K2030 / R2030C11: got '#N/A'Expecting numeric in L2030 / R2030C12: got '#N/A'Expecting numeric in C2031 / R2031C3: got '#N/A'Expecting numeric in D2031 / R2031C4: got '#N/A'Expecting numeric in E2031 / R2031C5: got '#N/A'Expecting numeric in G2031 / R2031C7: got '#N/A'Expecting numeric in K2031 / R2031C11: got '#N/A'Expecting numeric in L2031 / R2031C12: got '#N/A'Expecting numeric in C2032 / R2032C3: got '#N/A'Expecting numeric in D2032 / R2032C4: got '#N/A'Expecting numeric in E2032 / R2032C5: got '#N/A'Expecting numeric in G2032 / R2032C7: got '#N/A'Expecting numeric in K2032 / R2032C11: got '#N/A'Expecting numeric in L2032 / R2032C12: got '#N/A'Expecting numeric in C2033 / R2033C3: got '#N/A'Expecting numeric in D2033 / R2033C4: got '#N/A'Expecting numeric in E2033 / R2033C5: got '#N/A'Expecting numeric in G2033 / R2033C7: got '#N/A'Expecting numeric in K2033 / R2033C11: got '#N/A'Expecting numeric in L2033 / R2033C12: got '#N/A'Expecting numeric in C2034 / R2034C3: got '#N/A'Expecting numeric in D2034 / R2034C4: got '#N/A'Expecting numeric in E2034 / R2034C5: got '#N/A'Expecting numeric in G2034 / R2034C7: got '#N/A'Expecting numeric in K2034 / R2034C11: got '#N/A'Expecting numeric in L2034 / R2034C12: got '#N/A'Expecting numeric in C2035 / R2035C3: got '#N/A'Expecting numeric in D2035 / R2035C4: got '#N/A'Expecting numeric in E2035 / R2035C5: got '#N/A'Expecting numeric in G2035 / R2035C7: got '#N/A'Expecting numeric in K2035 / R2035C11: got '#N/A'Expecting numeric in L2035 / R2035C12: got '#N/A'Expecting numeric in C2036 / R2036C3: got '#N/A'Expecting numeric in D2036 / R2036C4: got '#N/A'Expecting numeric in E2036 / R2036C5: got '#N/A'Expecting numeric in G2036 / R2036C7: got '#N/A'Expecting numeric in K2036 / R2036C11: got '#N/A'Expecting numeric in L2036 / R2036C12: got '#N/A'Expecting numeric in C2037 / R2037C3: got '#N/A'Expecting numeric in D2037 / R2037C4: got '#N/A'Expecting numeric in E2037 / R2037C5: got '#N/A'Expecting numeric in G2037 / R2037C7: got '#N/A'Expecting numeric in K2037 / R2037C11: got '#N/A'Expecting numeric in L2037 / R2037C12: got '#N/A'Expecting numeric in C2038 / R2038C3: got '#N/A'Expecting numeric in D2038 / R2038C4: got '#N/A'Expecting numeric in E2038 / R2038C5: got '#N/A'Expecting numeric in G2038 / R2038C7: got '#N/A'Expecting numeric in K2038 / R2038C11: got '#N/A'Expecting numeric in L2038 / R2038C12: got '#N/A'Expecting numeric in C2039 / R2039C3: got '#N/A'Expecting numeric in D2039 / R2039C4: got '#N/A'Expecting numeric in E2039 / R2039C5: got '#N/A'Expecting numeric in G2039 / R2039C7: got '#N/A'Expecting numeric in K2039 / R2039C11: got '#N/A'Expecting numeric in L2039 / R2039C12: got '#N/A'Expecting numeric in C2040 / R2040C3: got '#N/A'Expecting numeric in D2040 / R2040C4: got '#N/A'Expecting numeric in E2040 / R2040C5: got '#N/A'Expecting numeric in G2040 / R2040C7: got '#N/A'Expecting numeric in K2040 / R2040C11: got '#N/A'Expecting numeric in L2040 / R2040C12: got '#N/A'Expecting numeric in C2041 / R2041C3: got '#N/A'Expecting numeric in D2041 / R2041C4: got '#N/A'Expecting numeric in E2041 / R2041C5: got '#N/A'Expecting numeric in G2041 / R2041C7: got '#N/A'Expecting numeric in K2041 / R2041C11: got '#N/A'Expecting numeric in L2041 / R2041C12: got '#N/A'Expecting numeric in C2042 / R2042C3: got '#N/A'Expecting numeric in D2042 / R2042C4: got '#N/A'Expecting numeric in E2042 / R2042C5: got '#N/A'Expecting numeric in G2042 / R2042C7: got '#N/A'Expecting numeric in K2042 / R2042C11: got '#N/A'Expecting numeric in L2042 / R2042C12: got '#N/A'Expecting numeric in C2043 / R2043C3: got '#N/A'Expecting numeric in D2043 / R2043C4: got '#N/A'Expecting numeric in E2043 / R2043C5: got '#N/A'Expecting numeric in G2043 / R2043C7: got '#N/A'Expecting numeric in K2043 / R2043C11: got '#N/A'Expecting numeric in L2043 / R2043C12: got '#N/A'Expecting numeric in C2044 / R2044C3: got '#N/A'Expecting numeric in D2044 / R2044C4: got '#N/A'Expecting numeric in E2044 / R2044C5: got '#N/A'Expecting numeric in G2044 / R2044C7: got '#N/A'Expecting numeric in K2044 / R2044C11: got '#N/A'Expecting numeric in L2044 / R2044C12: got '#N/A'Expecting numeric in C2045 / R2045C3: got '#N/A'Expecting numeric in D2045 / R2045C4: got '#N/A'Expecting numeric in E2045 / R2045C5: got '#N/A'Expecting numeric in G2045 / R2045C7: got '#N/A'Expecting numeric in K2045 / R2045C11: got '#N/A'Expecting numeric in L2045 / R2045C12: got '#N/A'Expecting numeric in C2046 / R2046C3: got '#N/A'Expecting numeric in D2046 / R2046C4: got '#N/A'Expecting numeric in E2046 / R2046C5: got '#N/A'Expecting numeric in G2046 / R2046C7: got '#N/A'Expecting numeric in K2046 / R2046C11: got '#N/A'Expecting numeric in L2046 / R2046C12: got '#N/A'Expecting numeric in C2047 / R2047C3: got '#N/A'Expecting numeric in D2047 / R2047C4: got '#N/A'Expecting numeric in E2047 / R2047C5: got '#N/A'Expecting numeric in G2047 / R2047C7: got '#N/A'Expecting numeric in K2047 / R2047C11: got '#N/A'Expecting numeric in L2047 / R2047C12: got '#N/A'Expecting numeric in C2048 / R2048C3: got '#N/A'Expecting numeric in D2048 / R2048C4: got '#N/A'Expecting numeric in E2048 / R2048C5: got '#N/A'Expecting numeric in G2048 / R2048C7: got '#N/A'Expecting numeric in K2048 / R2048C11: got '#N/A'Expecting numeric in L2048 / R2048C12: got '#N/A'Expecting numeric in C2049 / R2049C3: got '#N/A'Expecting numeric in D2049 / R2049C4: got '#N/A'Expecting numeric in E2049 / R2049C5: got '#N/A'Expecting numeric in G2049 / R2049C7: got '#N/A'Expecting numeric in K2049 / R2049C11: got '#N/A'Expecting numeric in L2049 / R2049C12: got '#N/A'Expecting numeric in C2050 / R2050C3: got '#N/A'Expecting numeric in D2050 / R2050C4: got '#N/A'Expecting numeric in E2050 / R2050C5: got '#N/A'Expecting numeric in G2050 / R2050C7: got '#N/A'Expecting numeric in K2050 / R2050C11: got '#N/A'Expecting numeric in L2050 / R2050C12: got '#N/A'Expecting numeric in C2051 / R2051C3: got '#N/A'Expecting numeric in D2051 / R2051C4: got '#N/A'Expecting numeric in E2051 / R2051C5: got '#N/A'Expecting numeric in G2051 / R2051C7: got '#N/A'Expecting numeric in K2051 / R2051C11: got '#N/A'Expecting numeric in L2051 / R2051C12: got '#N/A'Expecting numeric in C2052 / R2052C3: got '#N/A'Expecting numeric in D2052 / R2052C4: got '#N/A'Expecting numeric in E2052 / R2052C5: got '#N/A'Expecting numeric in G2052 / R2052C7: got '#N/A'Expecting numeric in K2052 / R2052C11: got '#N/A'Expecting numeric in L2052 / R2052C12: got '#N/A'Expecting numeric in C2053 / R2053C3: got '#N/A'Expecting numeric in D2053 / R2053C4: got '#N/A'Expecting numeric in E2053 / R2053C5: got '#N/A'Expecting numeric in G2053 / R2053C7: got '#N/A'Expecting numeric in K2053 / R2053C11: got '#N/A'Expecting numeric in L2053 / R2053C12: got '#N/A'Expecting numeric in C2054 / R2054C3: got '#N/A'Expecting numeric in D2054 / R2054C4: got '#N/A'Expecting numeric in E2054 / R2054C5: got '#N/A'Expecting numeric in G2054 / R2054C7: got '#N/A'Expecting numeric in K2054 / R2054C11: got '#N/A'Expecting numeric in L2054 / R2054C12: got '#N/A'Expecting numeric in C2055 / R2055C3: got '#N/A'Expecting numeric in D2055 / R2055C4: got '#N/A'Expecting numeric in E2055 / R2055C5: got '#N/A'Expecting numeric in G2055 / R2055C7: got '#N/A'Expecting numeric in K2055 / R2055C11: got '#N/A'Expecting numeric in L2055 / R2055C12: got '#N/A'Expecting numeric in C2056 / R2056C3: got '#N/A'Expecting numeric in D2056 / R2056C4: got '#N/A'Expecting numeric in E2056 / R2056C5: got '#N/A'Expecting numeric in G2056 / R2056C7: got '#N/A'Expecting numeric in K2056 / R2056C11: got '#N/A'Expecting numeric in L2056 / R2056C12: got '#N/A'Expecting numeric in C2057 / R2057C3: got '#N/A'Expecting numeric in D2057 / R2057C4: got '#N/A'Expecting numeric in E2057 / R2057C5: got '#N/A'Expecting numeric in G2057 / R2057C7: got '#N/A'Expecting numeric in K2057 / R2057C11: got '#N/A'Expecting numeric in L2057 / R2057C12: got '#N/A'Expecting numeric in C2058 / R2058C3: got '#N/A'Expecting numeric in D2058 / R2058C4: got '#N/A'Expecting numeric in E2058 / R2058C5: got '#N/A'Expecting numeric in G2058 / R2058C7: got '#N/A'Expecting numeric in K2058 / R2058C11: got '#N/A'Expecting numeric in L2058 / R2058C12: got '#N/A'Expecting numeric in C2059 / R2059C3: got '#N/A'Expecting numeric in D2059 / R2059C4: got '#N/A'Expecting numeric in E2059 / R2059C5: got '#N/A'Expecting numeric in G2059 / R2059C7: got '#N/A'Expecting numeric in K2059 / R2059C11: got '#N/A'Expecting numeric in L2059 / R2059C12: got '#N/A'Expecting numeric in C2060 / R2060C3: got '#N/A'Expecting numeric in D2060 / R2060C4: got '#N/A'Expecting numeric in E2060 / R2060C5: got '#N/A'Expecting numeric in G2060 / R2060C7: got '#N/A'Expecting numeric in K2060 / R2060C11: got '#N/A'Expecting numeric in L2060 / R2060C12: got '#N/A'Expecting numeric in C2061 / R2061C3: got '#N/A'Expecting numeric in D2061 / R2061C4: got '#N/A'Expecting numeric in E2061 / R2061C5: got '#N/A'Expecting numeric in G2061 / R2061C7: got '#N/A'Expecting numeric in K2061 / R2061C11: got '#N/A'Expecting numeric in L2061 / R2061C12: got '#N/A'Expecting numeric in C2062 / R2062C3: got '#N/A'Expecting numeric in D2062 / R2062C4: got '#N/A'Expecting numeric in E2062 / R2062C5: got '#N/A'Expecting numeric in G2062 / R2062C7: got '#N/A'Expecting numeric in K2062 / R2062C11: got '#N/A'Expecting numeric in L2062 / R2062C12: got '#N/A'Expecting numeric in C2063 / R2063C3: got '#N/A'Expecting numeric in D2063 / R2063C4: got '#N/A'Expecting numeric in E2063 / R2063C5: got '#N/A'Expecting numeric in G2063 / R2063C7: got '#N/A'Expecting numeric in K2063 / R2063C11: got '#N/A'Expecting numeric in L2063 / R2063C12: got '#N/A'Expecting numeric in C2064 / R2064C3: got '#N/A'Expecting numeric in D2064 / R2064C4: got '#N/A'Expecting numeric in E2064 / R2064C5: got '#N/A'Expecting numeric in G2064 / R2064C7: got '#N/A'Expecting numeric in K2064 / R2064C11: got '#N/A'Expecting numeric in L2064 / R2064C12: got '#N/A'Expecting numeric in C2065 / R2065C3: got '#N/A'Expecting numeric in D2065 / R2065C4: got '#N/A'Expecting numeric in E2065 / R2065C5: got '#N/A'Expecting numeric in G2065 / R2065C7: got '#N/A'Expecting numeric in K2065 / R2065C11: got '#N/A'Expecting numeric in L2065 / R2065C12: got '#N/A'Expecting numeric in C2066 / R2066C3: got '#N/A'Expecting numeric in D2066 / R2066C4: got '#N/A'Expecting numeric in E2066 / R2066C5: got '#N/A'Expecting numeric in G2066 / R2066C7: got '#N/A'Expecting numeric in K2066 / R2066C11: got '#N/A'Expecting numeric in L2066 / R2066C12: got '#N/A'Expecting numeric in C2067 / R2067C3: got '#N/A'Expecting numeric in D2067 / R2067C4: got '#N/A'Expecting numeric in E2067 / R2067C5: got '#N/A'Expecting numeric in G2067 / R2067C7: got '#N/A'Expecting numeric in K2067 / R2067C11: got '#N/A'Expecting numeric in L2067 / R2067C12: got '#N/A'Expecting numeric in C2068 / R2068C3: got '#N/A'Expecting numeric in D2068 / R2068C4: got '#N/A'Expecting numeric in E2068 / R2068C5: got '#N/A'Expecting numeric in G2068 / R2068C7: got '#N/A'Expecting numeric in K2068 / R2068C11: got '#N/A'Expecting numeric in L2068 / R2068C12: got '#N/A'Expecting numeric in C2069 / R2069C3: got '#N/A'Expecting numeric in D2069 / R2069C4: got '#N/A'Expecting numeric in E2069 / R2069C5: got '#N/A'Expecting numeric in G2069 / R2069C7: got '#N/A'Expecting numeric in K2069 / R2069C11: got '#N/A'Expecting numeric in L2069 / R2069C12: got '#N/A'Expecting numeric in C2070 / R2070C3: got '#N/A'Expecting numeric in D2070 / R2070C4: got '#N/A'Expecting numeric in E2070 / R2070C5: got '#N/A'Expecting numeric in G2070 / R2070C7: got '#N/A'Expecting numeric in K2070 / R2070C11: got '#N/A'Expecting numeric in L2070 / R2070C12: got '#N/A'Expecting numeric in C2071 / R2071C3: got '#N/A'Expecting numeric in D2071 / R2071C4: got '#N/A'Expecting numeric in E2071 / R2071C5: got '#N/A'Expecting numeric in G2071 / R2071C7: got '#N/A'Expecting numeric in K2071 / R2071C11: got '#N/A'Expecting numeric in L2071 / R2071C12: got '#N/A'Expecting numeric in C2072 / R2072C3: got '#N/A'Expecting numeric in D2072 / R2072C4: got '#N/A'Expecting numeric in E2072 / R2072C5: got '#N/A'Expecting numeric in G2072 / R2072C7: got '#N/A'Expecting numeric in K2072 / R2072C11: got '#N/A'Expecting numeric in L2072 / R2072C12: got '#N/A'Expecting numeric in C2073 / R2073C3: got '#N/A'Expecting numeric in D2073 / R2073C4: got '#N/A'Expecting numeric in E2073 / R2073C5: got '#N/A'Expecting numeric in G2073 / R2073C7: got '#N/A'Expecting numeric in K2073 / R2073C11: got '#N/A'Expecting numeric in L2073 / R2073C12: got '#N/A'Expecting numeric in C2074 / R2074C3: got '#N/A'Expecting numeric in D2074 / R2074C4: got '#N/A'Expecting numeric in E2074 / R2074C5: got '#N/A'Expecting numeric in G2074 / R2074C7: got '#N/A'Expecting numeric in K2074 / R2074C11: got '#N/A'Expecting numeric in L2074 / R2074C12: got '#N/A'Expecting numeric in C2075 / R2075C3: got '#N/A'Expecting numeric in D2075 / R2075C4: got '#N/A'Expecting numeric in E2075 / R2075C5: got '#N/A'Expecting numeric in G2075 / R2075C7: got '#N/A'Expecting numeric in K2075 / R2075C11: got '#N/A'Expecting numeric in L2075 / R2075C12: got '#N/A'Expecting numeric in C2076 / R2076C3: got '#N/A'Expecting numeric in D2076 / R2076C4: got '#N/A'Expecting numeric in E2076 / R2076C5: got '#N/A'Expecting numeric in G2076 / R2076C7: got '#N/A'Expecting numeric in K2076 / R2076C11: got '#N/A'Expecting numeric in L2076 / R2076C12: got '#N/A'Expecting numeric in C2077 / R2077C3: got '#N/A'Expecting numeric in D2077 / R2077C4: got '#N/A'Expecting numeric in E2077 / R2077C5: got '#N/A'Expecting numeric in G2077 / R2077C7: got '#N/A'Expecting numeric in K2077 / R2077C11: got '#N/A'Expecting numeric in L2077 / R2077C12: got '#N/A'Expecting numeric in C2078 / R2078C3: got '#N/A'Expecting numeric in D2078 / R2078C4: got '#N/A'Expecting numeric in E2078 / R2078C5: got '#N/A'Expecting numeric in G2078 / R2078C7: got '#N/A'Expecting numeric in K2078 / R2078C11: got '#N/A'Expecting numeric in L2078 / R2078C12: got '#N/A'Expecting numeric in C2079 / R2079C3: got '#N/A'Expecting numeric in D2079 / R2079C4: got '#N/A'Expecting numeric in E2079 / R2079C5: got '#N/A'Expecting numeric in G2079 / R2079C7: got '#N/A'Expecting numeric in K2079 / R2079C11: got '#N/A'Expecting numeric in L2079 / R2079C12: got '#N/A'Expecting numeric in C2080 / R2080C3: got '#N/A'Expecting numeric in D2080 / R2080C4: got '#N/A'Expecting numeric in E2080 / R2080C5: got '#N/A'Expecting numeric in G2080 / R2080C7: got '#N/A'Expecting numeric in K2080 / R2080C11: got '#N/A'Expecting numeric in L2080 / R2080C12: got '#N/A'Expecting numeric in C2081 / R2081C3: got '#N/A'Expecting numeric in D2081 / R2081C4: got '#N/A'Expecting numeric in E2081 / R2081C5: got '#N/A'Expecting numeric in G2081 / R2081C7: got '#N/A'Expecting numeric in K2081 / R2081C11: got '#N/A'Expecting numeric in L2081 / R2081C12: got '#N/A'Expecting numeric in C2082 / R2082C3: got '#N/A'Expecting numeric in D2082 / R2082C4: got '#N/A'Expecting numeric in E2082 / R2082C5: got '#N/A'Expecting numeric in G2082 / R2082C7: got '#N/A'Expecting numeric in K2082 / R2082C11: got '#N/A'Expecting numeric in L2082 / R2082C12: got '#N/A'Expecting numeric in C2083 / R2083C3: got '#N/A'Expecting numeric in D2083 / R2083C4: got '#N/A'Expecting numeric in E2083 / R2083C5: got '#N/A'Expecting numeric in G2083 / R2083C7: got '#N/A'Expecting numeric in K2083 / R2083C11: got '#N/A'Expecting numeric in L2083 / R2083C12: got '#N/A'Expecting numeric in C2084 / R2084C3: got '#N/A'Expecting numeric in D2084 / R2084C4: got '#N/A'Expecting numeric in E2084 / R2084C5: got '#N/A'Expecting numeric in G2084 / R2084C7: got '#N/A'Expecting numeric in K2084 / R2084C11: got '#N/A'Expecting numeric in L2084 / R2084C12: got '#N/A'Expecting numeric in C2085 / R2085C3: got '#N/A'Expecting numeric in D2085 / R2085C4: got '#N/A'Expecting numeric in E2085 / R2085C5: got '#N/A'Expecting numeric in G2085 / R2085C7: got '#N/A'Expecting numeric in K2085 / R2085C11: got '#N/A'Expecting numeric in L2085 / R2085C12: got '#N/A'Expecting numeric in C2086 / R2086C3: got '#N/A'Expecting numeric in D2086 / R2086C4: got '#N/A'Expecting numeric in E2086 / R2086C5: got '#N/A'Expecting numeric in G2086 / R2086C7: got '#N/A'Expecting numeric in K2086 / R2086C11: got '#N/A'Expecting numeric in L2086 / R2086C12: got '#N/A'Expecting numeric in C2087 / R2087C3: got '#N/A'Expecting numeric in D2087 / R2087C4: got '#N/A'Expecting numeric in E2087 / R2087C5: got '#N/A'Expecting numeric in G2087 / R2087C7: got '#N/A'Expecting numeric in K2087 / R2087C11: got '#N/A'Expecting numeric in L2087 / R2087C12: got '#N/A'Expecting numeric in C2088 / R2088C3: got '#N/A'Expecting numeric in D2088 / R2088C4: got '#N/A'Expecting numeric in E2088 / R2088C5: got '#N/A'Expecting numeric in G2088 / R2088C7: got '#N/A'Expecting numeric in K2088 / R2088C11: got '#N/A'Expecting numeric in L2088 / R2088C12: got '#N/A'Expecting numeric in C2089 / R2089C3: got '#N/A'Expecting numeric in D2089 / R2089C4: got '#N/A'Expecting numeric in E2089 / R2089C5: got '#N/A'Expecting numeric in G2089 / R2089C7: got '#N/A'Expecting numeric in K2089 / R2089C11: got '#N/A'Expecting numeric in L2089 / R2089C12: got '#N/A'Expecting numeric in C2090 / R2090C3: got '#N/A'Expecting numeric in D2090 / R2090C4: got '#N/A'Expecting numeric in E2090 / R2090C5: got '#N/A'Expecting numeric in G2090 / R2090C7: got '#N/A'Expecting numeric in K2090 / R2090C11: got '#N/A'Expecting numeric in L2090 / R2090C12: got '#N/A'Expecting numeric in C2091 / R2091C3: got '#N/A'Expecting numeric in D2091 / R2091C4: got '#N/A'Expecting numeric in E2091 / R2091C5: got '#N/A'Expecting numeric in G2091 / R2091C7: got '#N/A'Expecting numeric in K2091 / R2091C11: got '#N/A'Expecting numeric in L2091 / R2091C12: got '#N/A'Expecting numeric in C2092 / R2092C3: got '#N/A'Expecting numeric in D2092 / R2092C4: got '#N/A'Expecting numeric in E2092 / R2092C5: got '#N/A'Expecting numeric in G2092 / R2092C7: got '#N/A'Expecting numeric in K2092 / R2092C11: got '#N/A'Expecting numeric in L2092 / R2092C12: got '#N/A'Expecting numeric in C2093 / R2093C3: got '#N/A'Expecting numeric in D2093 / R2093C4: got '#N/A'Expecting numeric in E2093 / R2093C5: got '#N/A'Expecting numeric in G2093 / R2093C7: got '#N/A'Expecting numeric in K2093 / R2093C11: got '#N/A'Expecting numeric in L2093 / R2093C12: got '#N/A'Expecting numeric in C2094 / R2094C3: got '#N/A'Expecting numeric in D2094 / R2094C4: got '#N/A'Expecting numeric in E2094 / R2094C5: got '#N/A'Expecting numeric in G2094 / R2094C7: got '#N/A'Expecting numeric in K2094 / R2094C11: got '#N/A'Expecting numeric in L2094 / R2094C12: got '#N/A'Expecting numeric in C2095 / R2095C3: got '#N/A'Expecting numeric in D2095 / R2095C4: got '#N/A'Expecting numeric in E2095 / R2095C5: got '#N/A'Expecting numeric in G2095 / R2095C7: got '#N/A'Expecting numeric in K2095 / R2095C11: got '#N/A'Expecting numeric in L2095 / R2095C12: got '#N/A'Expecting numeric in C2096 / R2096C3: got '#N/A'Expecting numeric in D2096 / R2096C4: got '#N/A'Expecting numeric in E2096 / R2096C5: got '#N/A'Expecting numeric in G2096 / R2096C7: got '#N/A'Expecting numeric in K2096 / R2096C11: got '#N/A'Expecting numeric in L2096 / R2096C12: got '#N/A'Expecting numeric in C2097 / R2097C3: got '#N/A'Expecting numeric in D2097 / R2097C4: got '#N/A'Expecting numeric in E2097 / R2097C5: got '#N/A'Expecting numeric in G2097 / R2097C7: got '#N/A'Expecting numeric in K2097 / R2097C11: got '#N/A'Expecting numeric in L2097 / R2097C12: got '#N/A'Expecting numeric in C2098 / R2098C3: got '#N/A'Expecting numeric in D2098 / R2098C4: got '#N/A'Expecting numeric in E2098 / R2098C5: got '#N/A'Expecting numeric in G2098 / R2098C7: got '#N/A'Expecting numeric in K2098 / R2098C11: got '#N/A'Expecting numeric in L2098 / R2098C12: got '#N/A'Expecting numeric in C2099 / R2099C3: got '#N/A'Expecting numeric in D2099 / R2099C4: got '#N/A'Expecting numeric in E2099 / R2099C5: got '#N/A'Expecting numeric in G2099 / R2099C7: got '#N/A'Expecting numeric in K2099 / R2099C11: got '#N/A'Expecting numeric in L2099 / R2099C12: got '#N/A'Expecting numeric in C2100 / R2100C3: got '#N/A'Expecting numeric in D2100 / R2100C4: got '#N/A'Expecting numeric in E2100 / R2100C5: got '#N/A'Expecting numeric in G2100 / R2100C7: got '#N/A'Expecting numeric in K2100 / R2100C11: got '#N/A'Expecting numeric in L2100 / R2100C12: got '#N/A'Expecting numeric in C2101 / R2101C3: got '#N/A'Expecting numeric in D2101 / R2101C4: got '#N/A'Expecting numeric in E2101 / R2101C5: got '#N/A'Expecting numeric in G2101 / R2101C7: got '#N/A'Expecting numeric in K2101 / R2101C11: got '#N/A'Expecting numeric in L2101 / R2101C12: got '#N/A'Expecting numeric in C2102 / R2102C3: got '#N/A'Expecting numeric in D2102 / R2102C4: got '#N/A'Expecting numeric in E2102 / R2102C5: got '#N/A'Expecting numeric in G2102 / R2102C7: got '#N/A'Expecting numeric in K2102 / R2102C11: got '#N/A'Expecting numeric in L2102 / R2102C12: got '#N/A'Expecting numeric in C2103 / R2103C3: got '#N/A'Expecting numeric in D2103 / R2103C4: got '#N/A'Expecting numeric in E2103 / R2103C5: got '#N/A'Expecting numeric in G2103 / R2103C7: got '#N/A'Expecting numeric in K2103 / R2103C11: got '#N/A'Expecting numeric in L2103 / R2103C12: got '#N/A'Expecting numeric in C2104 / R2104C3: got '#N/A'Expecting numeric in D2104 / R2104C4: got '#N/A'Expecting numeric in E2104 / R2104C5: got '#N/A'Expecting numeric in G2104 / R2104C7: got '#N/A'Expecting numeric in K2104 / R2104C11: got '#N/A'Expecting numeric in L2104 / R2104C12: got '#N/A'Expecting numeric in C2105 / R2105C3: got '#N/A'Expecting numeric in D2105 / R2105C4: got '#N/A'Expecting numeric in E2105 / R2105C5: got '#N/A'Expecting numeric in G2105 / R2105C7: got '#N/A'Expecting numeric in K2105 / R2105C11: got '#N/A'Expecting numeric in L2105 / R2105C12: got '#N/A'Expecting numeric in C2106 / R2106C3: got '#N/A'Expecting numeric in D2106 / R2106C4: got '#N/A'Expecting numeric in E2106 / R2106C5: got '#N/A'Expecting numeric in G2106 / R2106C7: got '#N/A'Expecting numeric in K2106 / R2106C11: got '#N/A'Expecting numeric in L2106 / R2106C12: got '#N/A'Expecting numeric in C2107 / R2107C3: got '#N/A'Expecting numeric in D2107 / R2107C4: got '#N/A'Expecting numeric in E2107 / R2107C5: got '#N/A'Expecting numeric in G2107 / R2107C7: got '#N/A'Expecting numeric in K2107 / R2107C11: got '#N/A'Expecting numeric in L2107 / R2107C12: got '#N/A'Expecting numeric in C2108 / R2108C3: got '#N/A'Expecting numeric in D2108 / R2108C4: got '#N/A'Expecting numeric in E2108 / R2108C5: got '#N/A'Expecting numeric in G2108 / R2108C7: got '#N/A'Expecting numeric in K2108 / R2108C11: got '#N/A'Expecting numeric in L2108 / R2108C12: got '#N/A'Expecting numeric in C2109 / R2109C3: got '#N/A'Expecting numeric in D2109 / R2109C4: got '#N/A'Expecting numeric in E2109 / R2109C5: got '#N/A'Expecting numeric in G2109 / R2109C7: got '#N/A'Expecting numeric in K2109 / R2109C11: got '#N/A'Expecting numeric in L2109 / R2109C12: got '#N/A'Expecting numeric in C2110 / R2110C3: got '#N/A'Expecting numeric in D2110 / R2110C4: got '#N/A'Expecting numeric in E2110 / R2110C5: got '#N/A'Expecting numeric in G2110 / R2110C7: got '#N/A'Expecting numeric in K2110 / R2110C11: got '#N/A'Expecting numeric in L2110 / R2110C12: got '#N/A'Expecting numeric in C2111 / R2111C3: got '#N/A'Expecting numeric in D2111 / R2111C4: got '#N/A'Expecting numeric in E2111 / R2111C5: got '#N/A'Expecting numeric in G2111 / R2111C7: got '#N/A'Expecting numeric in K2111 / R2111C11: got '#N/A'Expecting numeric in L2111 / R2111C12: got '#N/A'Expecting numeric in C2112 / R2112C3: got '#N/A'Expecting numeric in D2112 / R2112C4: got '#N/A'Expecting numeric in E2112 / R2112C5: got '#N/A'Expecting numeric in G2112 / R2112C7: got '#N/A'Expecting numeric in K2112 / R2112C11: got '#N/A'Expecting numeric in L2112 / R2112C12: got '#N/A'Expecting numeric in C2113 / R2113C3: got '#N/A'Expecting numeric in D2113 / R2113C4: got '#N/A'Expecting numeric in E2113 / R2113C5: got '#N/A'Expecting numeric in G2113 / R2113C7: got '#N/A'Expecting numeric in K2113 / R2113C11: got '#N/A'Expecting numeric in L2113 / R2113C12: got '#N/A'Expecting numeric in C2114 / R2114C3: got '#N/A'Expecting numeric in D2114 / R2114C4: got '#N/A'Expecting numeric in E2114 / R2114C5: got '#N/A'Expecting numeric in G2114 / R2114C7: got '#N/A'Expecting numeric in K2114 / R2114C11: got '#N/A'Expecting numeric in L2114 / R2114C12: got '#N/A'Expecting numeric in C2115 / R2115C3: got '#N/A'Expecting numeric in D2115 / R2115C4: got '#N/A'Expecting numeric in E2115 / R2115C5: got '#N/A'Expecting numeric in G2115 / R2115C7: got '#N/A'Expecting numeric in K2115 / R2115C11: got '#N/A'Expecting numeric in L2115 / R2115C12: got '#N/A'Expecting numeric in C2116 / R2116C3: got '#N/A'Expecting numeric in D2116 / R2116C4: got '#N/A'Expecting numeric in E2116 / R2116C5: got '#N/A'Expecting numeric in G2116 / R2116C7: got '#N/A'Expecting numeric in K2116 / R2116C11: got '#N/A'Expecting numeric in L2116 / R2116C12: got '#N/A'Expecting numeric in C2117 / R2117C3: got '#N/A'Expecting numeric in D2117 / R2117C4: got '#N/A'Expecting numeric in E2117 / R2117C5: got '#N/A'Expecting numeric in G2117 / R2117C7: got '#N/A'Expecting numeric in K2117 / R2117C11: got '#N/A'Expecting numeric in L2117 / R2117C12: got '#N/A'Expecting numeric in C2118 / R2118C3: got '#N/A'Expecting numeric in D2118 / R2118C4: got '#N/A'Expecting numeric in E2118 / R2118C5: got '#N/A'Expecting numeric in G2118 / R2118C7: got '#N/A'Expecting numeric in K2118 / R2118C11: got '#N/A'Expecting numeric in L2118 / R2118C12: got '#N/A'Expecting numeric in C2119 / R2119C3: got '#N/A'Expecting numeric in D2119 / R2119C4: got '#N/A'Expecting numeric in E2119 / R2119C5: got '#N/A'Expecting numeric in G2119 / R2119C7: got '#N/A'Expecting numeric in K2119 / R2119C11: got '#N/A'Expecting numeric in L2119 / R2119C12: got '#N/A'Expecting numeric in C2120 / R2120C3: got '#N/A'Expecting numeric in D2120 / R2120C4: got '#N/A'Expecting numeric in E2120 / R2120C5: got '#N/A'Expecting numeric in G2120 / R2120C7: got '#N/A'Expecting numeric in K2120 / R2120C11: got '#N/A'Expecting numeric in L2120 / R2120C12: got '#N/A'Expecting numeric in C2121 / R2121C3: got '#N/A'Expecting numeric in D2121 / R2121C4: got '#N/A'Expecting numeric in E2121 / R2121C5: got '#N/A'Expecting numeric in G2121 / R2121C7: got '#N/A'Expecting numeric in K2121 / R2121C11: got '#N/A'Expecting numeric in L2121 / R2121C12: got '#N/A'Expecting numeric in C2122 / R2122C3: got '#N/A'Expecting numeric in D2122 / R2122C4: got '#N/A'Expecting numeric in E2122 / R2122C5: got '#N/A'Expecting numeric in G2122 / R2122C7: got '#N/A'Expecting numeric in K2122 / R2122C11: got '#N/A'Expecting numeric in L2122 / R2122C12: got '#N/A'Expecting numeric in C2123 / R2123C3: got '#N/A'Expecting numeric in D2123 / R2123C4: got '#N/A'Expecting numeric in E2123 / R2123C5: got '#N/A'Expecting numeric in G2123 / R2123C7: got '#N/A'Expecting numeric in K2123 / R2123C11: got '#N/A'Expecting numeric in L2123 / R2123C12: got '#N/A'Expecting numeric in C2124 / R2124C3: got '#N/A'Expecting numeric in D2124 / R2124C4: got '#N/A'Expecting numeric in E2124 / R2124C5: got '#N/A'Expecting numeric in G2124 / R2124C7: got '#N/A'Expecting numeric in K2124 / R2124C11: got '#N/A'Expecting numeric in L2124 / R2124C12: got '#N/A'Expecting numeric in C2125 / R2125C3: got '#N/A'Expecting numeric in D2125 / R2125C4: got '#N/A'Expecting numeric in E2125 / R2125C5: got '#N/A'Expecting numeric in G2125 / R2125C7: got '#N/A'Expecting numeric in K2125 / R2125C11: got '#N/A'Expecting numeric in L2125 / R2125C12: got '#N/A'Expecting numeric in C2126 / R2126C3: got '#N/A'Expecting numeric in D2126 / R2126C4: got '#N/A'Expecting numeric in E2126 / R2126C5: got '#N/A'Expecting numeric in G2126 / R2126C7: got '#N/A'Expecting numeric in K2126 / R2126C11: got '#N/A'Expecting numeric in L2126 / R2126C12: got '#N/A'Expecting numeric in C2127 / R2127C3: got '#N/A'Expecting numeric in D2127 / R2127C4: got '#N/A'Expecting numeric in E2127 / R2127C5: got '#N/A'Expecting numeric in G2127 / R2127C7: got '#N/A'Expecting numeric in K2127 / R2127C11: got '#N/A'Expecting numeric in L2127 / R2127C12: got '#N/A'Expecting numeric in C2128 / R2128C3: got '#N/A'Expecting numeric in D2128 / R2128C4: got '#N/A'Expecting numeric in E2128 / R2128C5: got '#N/A'Expecting numeric in G2128 / R2128C7: got '#N/A'Expecting numeric in K2128 / R2128C11: got '#N/A'Expecting numeric in L2128 / R2128C12: got '#N/A'Expecting numeric in C2129 / R2129C3: got '#N/A'Expecting numeric in D2129 / R2129C4: got '#N/A'Expecting numeric in E2129 / R2129C5: got '#N/A'Expecting numeric in G2129 / R2129C7: got '#N/A'Expecting numeric in K2129 / R2129C11: got '#N/A'Expecting numeric in L2129 / R2129C12: got '#N/A'Expecting numeric in C2130 / R2130C3: got '#N/A'Expecting numeric in D2130 / R2130C4: got '#N/A'Expecting numeric in E2130 / R2130C5: got '#N/A'Expecting numeric in G2130 / R2130C7: got '#N/A'Expecting numeric in K2130 / R2130C11: got '#N/A'Expecting numeric in L2130 / R2130C12: got '#N/A'Expecting numeric in C2131 / R2131C3: got '#N/A'Expecting numeric in D2131 / R2131C4: got '#N/A'Expecting numeric in E2131 / R2131C5: got '#N/A'Expecting numeric in G2131 / R2131C7: got '#N/A'Expecting numeric in K2131 / R2131C11: got '#N/A'Expecting numeric in L2131 / R2131C12: got '#N/A'Expecting numeric in C2132 / R2132C3: got '#N/A'Expecting numeric in D2132 / R2132C4: got '#N/A'Expecting numeric in E2132 / R2132C5: got '#N/A'Expecting numeric in G2132 / R2132C7: got '#N/A'Expecting numeric in K2132 / R2132C11: got '#N/A'Expecting numeric in L2132 / R2132C12: got '#N/A'Expecting numeric in C2133 / R2133C3: got '#N/A'Expecting numeric in D2133 / R2133C4: got '#N/A'Expecting numeric in E2133 / R2133C5: got '#N/A'Expecting numeric in G2133 / R2133C7: got '#N/A'Expecting numeric in K2133 / R2133C11: got '#N/A'Expecting numeric in L2133 / R2133C12: got '#N/A'Expecting numeric in C2134 / R2134C3: got '#N/A'Expecting numeric in D2134 / R2134C4: got '#N/A'Expecting numeric in E2134 / R2134C5: got '#N/A'Expecting numeric in G2134 / R2134C7: got '#N/A'Expecting numeric in K2134 / R2134C11: got '#N/A'Expecting numeric in L2134 / R2134C12: got '#N/A'Expecting numeric in C2135 / R2135C3: got '#N/A'Expecting numeric in D2135 / R2135C4: got '#N/A'Expecting numeric in E2135 / R2135C5: got '#N/A'Expecting numeric in G2135 / R2135C7: got '#N/A'Expecting numeric in K2135 / R2135C11: got '#N/A'Expecting numeric in L2135 / R2135C12: got '#N/A'Expecting numeric in C2136 / R2136C3: got '#N/A'Expecting numeric in D2136 / R2136C4: got '#N/A'Expecting numeric in E2136 / R2136C5: got '#N/A'Expecting numeric in G2136 / R2136C7: got '#N/A'Expecting numeric in K2136 / R2136C11: got '#N/A'Expecting numeric in L2136 / R2136C12: got '#N/A'Expecting numeric in C2137 / R2137C3: got '#N/A'Expecting numeric in D2137 / R2137C4: got '#N/A'Expecting numeric in E2137 / R2137C5: got '#N/A'Expecting numeric in G2137 / R2137C7: got '#N/A'Expecting numeric in K2137 / R2137C11: got '#N/A'Expecting numeric in L2137 / R2137C12: got '#N/A'Expecting numeric in C2138 / R2138C3: got '#N/A'Expecting numeric in D2138 / R2138C4: got '#N/A'Expecting numeric in E2138 / R2138C5: got '#N/A'Expecting numeric in G2138 / R2138C7: got '#N/A'Expecting numeric in K2138 / R2138C11: got '#N/A'Expecting numeric in L2138 / R2138C12: got '#N/A'Expecting numeric in C2139 / R2139C3: got '#N/A'Expecting numeric in D2139 / R2139C4: got '#N/A'Expecting numeric in E2139 / R2139C5: got '#N/A'Expecting numeric in G2139 / R2139C7: got '#N/A'Expecting numeric in K2139 / R2139C11: got '#N/A'Expecting numeric in L2139 / R2139C12: got '#N/A'Expecting numeric in C2140 / R2140C3: got '#N/A'Expecting numeric in D2140 / R2140C4: got '#N/A'Expecting numeric in E2140 / R2140C5: got '#N/A'Expecting numeric in G2140 / R2140C7: got '#N/A'Expecting numeric in K2140 / R2140C11: got '#N/A'Expecting numeric in L2140 / R2140C12: got '#N/A'Expecting numeric in C2141 / R2141C3: got '#N/A'Expecting numeric in D2141 / R2141C4: got '#N/A'Expecting numeric in E2141 / R2141C5: got '#N/A'Expecting numeric in G2141 / R2141C7: got '#N/A'Expecting numeric in K2141 / R2141C11: got '#N/A'Expecting numeric in L2141 / R2141C12: got '#N/A'Expecting numeric in C2142 / R2142C3: got '#N/A'Expecting numeric in D2142 / R2142C4: got '#N/A'Expecting numeric in E2142 / R2142C5: got '#N/A'Expecting numeric in G2142 / R2142C7: got '#N/A'Expecting numeric in K2142 / R2142C11: got '#N/A'Expecting numeric in L2142 / R2142C12: got '#N/A'Expecting numeric in C2143 / R2143C3: got '#N/A'Expecting numeric in D2143 / R2143C4: got '#N/A'Expecting numeric in E2143 / R2143C5: got '#N/A'Expecting numeric in G2143 / R2143C7: got '#N/A'Expecting numeric in K2143 / R2143C11: got '#N/A'Expecting numeric in L2143 / R2143C12: got '#N/A'Expecting numeric in C2144 / R2144C3: got '#N/A'Expecting numeric in D2144 / R2144C4: got '#N/A'Expecting numeric in E2144 / R2144C5: got '#N/A'Expecting numeric in G2144 / R2144C7: got '#N/A'Expecting numeric in K2144 / R2144C11: got '#N/A'Expecting numeric in L2144 / R2144C12: got '#N/A'Expecting numeric in C2145 / R2145C3: got '#N/A'Expecting numeric in D2145 / R2145C4: got '#N/A'Expecting numeric in E2145 / R2145C5: got '#N/A'Expecting numeric in G2145 / R2145C7: got '#N/A'Expecting numeric in K2145 / R2145C11: got '#N/A'Expecting numeric in L2145 / R2145C12: got '#N/A'Expecting numeric in C2146 / R2146C3: got '#N/A'Expecting numeric in D2146 / R2146C4: got '#N/A'Expecting numeric in E2146 / R2146C5: got '#N/A'Expecting numeric in G2146 / R2146C7: got '#N/A'Expecting numeric in K2146 / R2146C11: got '#N/A'Expecting numeric in L2146 / R2146C12: got '#N/A'Expecting numeric in C2147 / R2147C3: got '#N/A'Expecting numeric in D2147 / R2147C4: got '#N/A'Expecting numeric in E2147 / R2147C5: got '#N/A'Expecting numeric in G2147 / R2147C7: got '#N/A'Expecting numeric in K2147 / R2147C11: got '#N/A'Expecting numeric in C2148 / R2148C3: got '#N/A'Expecting numeric in D2148 / R2148C4: got '#N/A'Expecting numeric in E2148 / R2148C5: got '#N/A'Expecting numeric in G2148 / R2148C7: got '#N/A'Expecting numeric in K2148 / R2148C11: got '#N/A'Expecting numeric in C2149 / R2149C3: got '#N/A'Expecting numeric in D2149 / R2149C4: got '#N/A'Expecting numeric in E2149 / R2149C5: got '#N/A'Expecting numeric in G2149 / R2149C7: got '#N/A'Expecting numeric in K2149 / R2149C11: got '#N/A'Expecting numeric in C2150 / R2150C3: got '#N/A'Expecting numeric in D2150 / R2150C4: got '#N/A'Expecting numeric in E2150 / R2150C5: got '#N/A'Expecting numeric in G2150 / R2150C7: got '#N/A'Expecting numeric in K2150 / R2150C11: got '#N/A'Expecting numeric in C2151 / R2151C3: got '#N/A'Expecting numeric in D2151 / R2151C4: got '#N/A'Expecting numeric in E2151 / R2151C5: got '#N/A'Expecting numeric in G2151 / R2151C7: got '#N/A'Expecting numeric in K2151 / R2151C11: got '#N/A'Expecting numeric in C2152 / R2152C3: got '#N/A'Expecting numeric in D2152 / R2152C4: got '#N/A'Expecting numeric in E2152 / R2152C5: got '#N/A'Expecting numeric in G2152 / R2152C7: got '#N/A'Expecting numeric in K2152 / R2152C11: got '#N/A'Expecting numeric in C2153 / R2153C3: got '#N/A'Expecting numeric in D2153 / R2153C4: got '#N/A'Expecting numeric in E2153 / R2153C5: got '#N/A'Expecting numeric in G2153 / R2153C7: got '#N/A'Expecting numeric in K2153 / R2153C11: got '#N/A'Expecting numeric in C2154 / R2154C3: got '#N/A'Expecting numeric in D2154 / R2154C4: got '#N/A'Expecting numeric in E2154 / R2154C5: got '#N/A'Expecting numeric in G2154 / R2154C7: got '#N/A'Expecting numeric in K2154 / R2154C11: got '#N/A'Expecting numeric in C2155 / R2155C3: got '#N/A'Expecting numeric in D2155 / R2155C4: got '#N/A'Expecting numeric in E2155 / R2155C5: got '#N/A'Expecting numeric in G2155 / R2155C7: got '#N/A'Expecting numeric in K2155 / R2155C11: got '#N/A'Expecting numeric in C2156 / R2156C3: got '#N/A'Expecting numeric in D2156 / R2156C4: got '#N/A'Expecting numeric in E2156 / R2156C5: got '#N/A'Expecting numeric in G2156 / R2156C7: got '#N/A'Expecting numeric in K2156 / R2156C11: got '#N/A'Expecting numeric in C2157 / R2157C3: got '#N/A'Expecting numeric in D2157 / R2157C4: got '#N/A'Expecting numeric in E2157 / R2157C5: got '#N/A'Expecting numeric in G2157 / R2157C7: got '#N/A'Expecting numeric in K2157 / R2157C11: got '#N/A'Expecting numeric in C2158 / R2158C3: got '#N/A'Expecting numeric in D2158 / R2158C4: got '#N/A'Expecting numeric in E2158 / R2158C5: got '#N/A'Expecting numeric in G2158 / R2158C7: got '#N/A'Expecting numeric in K2158 / R2158C11: got '#N/A'Expecting numeric in C2159 / R2159C3: got '#N/A'Expecting numeric in D2159 / R2159C4: got '#N/A'Expecting numeric in E2159 / R2159C5: got '#N/A'Expecting numeric in G2159 / R2159C7: got '#N/A'Expecting numeric in K2159 / R2159C11: got '#N/A'Expecting numeric in C2160 / R2160C3: got '#N/A'Expecting numeric in D2160 / R2160C4: got '#N/A'Expecting numeric in E2160 / R2160C5: got '#N/A'Expecting numeric in G2160 / R2160C7: got '#N/A'Expecting numeric in K2160 / R2160C11: got '#N/A'Expecting numeric in C2161 / R2161C3: got '#N/A'Expecting numeric in D2161 / R2161C4: got '#N/A'Expecting numeric in E2161 / R2161C5: got '#N/A'Expecting numeric in G2161 / R2161C7: got '#N/A'Expecting numeric in K2161 / R2161C11: got '#N/A'Expecting numeric in C2162 / R2162C3: got '#N/A'Expecting numeric in D2162 / R2162C4: got '#N/A'Expecting numeric in E2162 / R2162C5: got '#N/A'Expecting numeric in G2162 / R2162C7: got '#N/A'Expecting numeric in K2162 / R2162C11: got '#N/A'Expecting numeric in C2163 / R2163C3: got '#N/A'Expecting numeric in D2163 / R2163C4: got '#N/A'Expecting numeric in E2163 / R2163C5: got '#N/A'Expecting numeric in G2163 / R2163C7: got '#N/A'Expecting numeric in K2163 / R2163C11: got '#N/A'Expecting numeric in C2164 / R2164C3: got '#N/A'Expecting numeric in D2164 / R2164C4: got '#N/A'Expecting numeric in E2164 / R2164C5: got '#N/A'Expecting numeric in G2164 / R2164C7: got '#N/A'Expecting numeric in K2164 / R2164C11: got '#N/A'Expecting numeric in C2165 / R2165C3: got '#N/A'Expecting numeric in D2165 / R2165C4: got '#N/A'Expecting numeric in E2165 / R2165C5: got '#N/A'Expecting numeric in G2165 / R2165C7: got '#N/A'Expecting numeric in K2165 / R2165C11: got '#N/A'Expecting numeric in C2166 / R2166C3: got '#N/A'Expecting numeric in D2166 / R2166C4: got '#N/A'Expecting numeric in E2166 / R2166C5: got '#N/A'Expecting numeric in G2166 / R2166C7: got '#N/A'Expecting numeric in K2166 / R2166C11: got '#N/A'Expecting numeric in C2167 / R2167C3: got '#N/A'Expecting numeric in D2167 / R2167C4: got '#N/A'Expecting numeric in E2167 / R2167C5: got '#N/A'Expecting numeric in G2167 / R2167C7: got '#N/A'Expecting numeric in K2167 / R2167C11: got '#N/A'Expecting numeric in C2168 / R2168C3: got '#N/A'Expecting numeric in D2168 / R2168C4: got '#N/A'Expecting numeric in E2168 / R2168C5: got '#N/A'Expecting numeric in G2168 / R2168C7: got '#N/A'Expecting numeric in K2168 / R2168C11: got '#N/A'Expecting numeric in C2169 / R2169C3: got '#N/A'Expecting numeric in D2169 / R2169C4: got '#N/A'Expecting numeric in E2169 / R2169C5: got '#N/A'Expecting numeric in G2169 / R2169C7: got '#N/A'Expecting numeric in K2169 / R2169C11: got '#N/A'Expecting numeric in C2170 / R2170C3: got '#N/A'Expecting numeric in D2170 / R2170C4: got '#N/A'Expecting numeric in E2170 / R2170C5: got '#N/A'Expecting numeric in G2170 / R2170C7: got '#N/A'Expecting numeric in K2170 / R2170C11: got '#N/A'Expecting numeric in C2171 / R2171C3: got '#N/A'Expecting numeric in D2171 / R2171C4: got '#N/A'Expecting numeric in E2171 / R2171C5: got '#N/A'Expecting numeric in G2171 / R2171C7: got '#N/A'Expecting numeric in K2171 / R2171C11: got '#N/A'Expecting numeric in C2172 / R2172C3: got '#N/A'Expecting numeric in D2172 / R2172C4: got '#N/A'Expecting numeric in E2172 / R2172C5: got '#N/A'Expecting numeric in G2172 / R2172C7: got '#N/A'Expecting numeric in K2172 / R2172C11: got '#N/A'Expecting numeric in C2173 / R2173C3: got '#N/A'Expecting numeric in D2173 / R2173C4: got '#N/A'Expecting numeric in E2173 / R2173C5: got '#N/A'Expecting numeric in G2173 / R2173C7: got '#N/A'Expecting numeric in K2173 / R2173C11: got '#N/A'Expecting numeric in C2174 / R2174C3: got '#N/A'Expecting numeric in D2174 / R2174C4: got '#N/A'Expecting numeric in E2174 / R2174C5: got '#N/A'Expecting numeric in G2174 / R2174C7: got '#N/A'Expecting numeric in K2174 / R2174C11: got '#N/A'Expecting numeric in C2175 / R2175C3: got '#N/A'Expecting numeric in D2175 / R2175C4: got '#N/A'Expecting numeric in E2175 / R2175C5: got '#N/A'Expecting numeric in G2175 / R2175C7: got '#N/A'Expecting numeric in K2175 / R2175C11: got '#N/A'Expecting numeric in C2176 / R2176C3: got '#N/A'Expecting numeric in D2176 / R2176C4: got '#N/A'Expecting numeric in E2176 / R2176C5: got '#N/A'Expecting numeric in G2176 / R2176C7: got '#N/A'Expecting numeric in K2176 / R2176C11: got '#N/A'Expecting numeric in C2177 / R2177C3: got '#N/A'Expecting numeric in D2177 / R2177C4: got '#N/A'Expecting numeric in E2177 / R2177C5: got '#N/A'Expecting numeric in G2177 / R2177C7: got '#N/A'Expecting numeric in K2177 / R2177C11: got '#N/A'Expecting numeric in C2178 / R2178C3: got '#N/A'Expecting numeric in D2178 / R2178C4: got '#N/A'Expecting numeric in E2178 / R2178C5: got '#N/A'Expecting numeric in G2178 / R2178C7: got '#N/A'Expecting numeric in K2178 / R2178C11: got '#N/A'Expecting numeric in C2179 / R2179C3: got '#N/A'Expecting numeric in D2179 / R2179C4: got '#N/A'Expecting numeric in E2179 / R2179C5: got '#N/A'Expecting numeric in G2179 / R2179C7: got '#N/A'Expecting numeric in K2179 / R2179C11: got '#N/A'Expecting numeric in C2180 / R2180C3: got '#N/A'Expecting numeric in D2180 / R2180C4: got '#N/A'Expecting numeric in E2180 / R2180C5: got '#N/A'Expecting numeric in G2180 / R2180C7: got '#N/A'Expecting numeric in K2180 / R2180C11: got '#N/A'Expecting numeric in C2181 / R2181C3: got '#N/A'Expecting numeric in D2181 / R2181C4: got '#N/A'Expecting numeric in E2181 / R2181C5: got '#N/A'Expecting numeric in G2181 / R2181C7: got '#N/A'Expecting numeric in K2181 / R2181C11: got '#N/A'Expecting numeric in C2182 / R2182C3: got '#N/A'Expecting numeric in D2182 / R2182C4: got '#N/A'Expecting numeric in E2182 / R2182C5: got '#N/A'Expecting numeric in G2182 / R2182C7: got '#N/A'Expecting numeric in K2182 / R2182C11: got '#N/A'Expecting numeric in C2183 / R2183C3: got '#N/A'Expecting numeric in D2183 / R2183C4: got '#N/A'Expecting numeric in E2183 / R2183C5: got '#N/A'Expecting numeric in G2183 / R2183C7: got '#N/A'Expecting numeric in K2183 / R2183C11: got '#N/A'Expecting numeric in C2184 / R2184C3: got '#N/A'Expecting numeric in D2184 / R2184C4: got '#N/A'Expecting numeric in E2184 / R2184C5: got '#N/A'Expecting numeric in G2184 / R2184C7: got '#N/A'Expecting numeric in K2184 / R2184C11: got '#N/A'Expecting numeric in C2185 / R2185C3: got '#N/A'Expecting numeric in D2185 / R2185C4: got '#N/A'Expecting numeric in E2185 / R2185C5: got '#N/A'Expecting numeric in G2185 / R2185C7: got '#N/A'Expecting numeric in K2185 / R2185C11: got '#N/A'Expecting numeric in C2186 / R2186C3: got '#N/A'Expecting numeric in D2186 / R2186C4: got '#N/A'Expecting numeric in E2186 / R2186C5: got '#N/A'Expecting numeric in G2186 / R2186C7: got '#N/A'Expecting numeric in K2186 / R2186C11: got '#N/A'Expecting numeric in C2187 / R2187C3: got '#N/A'Expecting numeric in D2187 / R2187C4: got '#N/A'Expecting numeric in E2187 / R2187C5: got '#N/A'Expecting numeric in G2187 / R2187C7: got '#N/A'Expecting numeric in K2187 / R2187C11: got '#N/A'Expecting numeric in C2188 / R2188C3: got '#N/A'Expecting numeric in D2188 / R2188C4: got '#N/A'Expecting numeric in E2188 / R2188C5: got '#N/A'Expecting numeric in G2188 / R2188C7: got '#N/A'Expecting numeric in K2188 / R2188C11: got '#N/A'Expecting numeric in C2189 / R2189C3: got '#N/A'Expecting numeric in D2189 / R2189C4: got '#N/A'Expecting numeric in E2189 / R2189C5: got '#N/A'Expecting numeric in G2189 / R2189C7: got '#N/A'Expecting numeric in K2189 / R2189C11: got '#N/A'Expecting numeric in C2190 / R2190C3: got '#N/A'Expecting numeric in D2190 / R2190C4: got '#N/A'Expecting numeric in E2190 / R2190C5: got '#N/A'Expecting numeric in G2190 / R2190C7: got '#N/A'Expecting numeric in K2190 / R2190C11: got '#N/A'Expecting numeric in C2191 / R2191C3: got '#N/A'Expecting numeric in D2191 / R2191C4: got '#N/A'Expecting numeric in E2191 / R2191C5: got '#N/A'Expecting numeric in G2191 / R2191C7: got '#N/A'Expecting numeric in K2191 / R2191C11: got '#N/A'Expecting numeric in C2192 / R2192C3: got '#N/A'Expecting numeric in D2192 / R2192C4: got '#N/A'Expecting numeric in E2192 / R2192C5: got '#N/A'Expecting numeric in G2192 / R2192C7: got '#N/A'Expecting numeric in K2192 / R2192C11: got '#N/A'Expecting numeric in C2193 / R2193C3: got '#N/A'Expecting numeric in D2193 / R2193C4: got '#N/A'Expecting numeric in E2193 / R2193C5: got '#N/A'Expecting numeric in G2193 / R2193C7: got '#N/A'Expecting numeric in K2193 / R2193C11: got '#N/A'Expecting numeric in C2194 / R2194C3: got '#N/A'Expecting numeric in D2194 / R2194C4: got '#N/A'Expecting numeric in E2194 / R2194C5: got '#N/A'Expecting numeric in G2194 / R2194C7: got '#N/A'Expecting numeric in K2194 / R2194C11: got '#N/A'Expecting numeric in C2195 / R2195C3: got '#N/A'Expecting numeric in D2195 / R2195C4: got '#N/A'Expecting numeric in E2195 / R2195C5: got '#N/A'Expecting numeric in G2195 / R2195C7: got '#N/A'Expecting numeric in K2195 / R2195C11: got '#N/A'Expecting numeric in C2196 / R2196C3: got '#N/A'Expecting numeric in D2196 / R2196C4: got '#N/A'Expecting numeric in E2196 / R2196C5: got '#N/A'Expecting numeric in G2196 / R2196C7: got '#N/A'Expecting numeric in K2196 / R2196C11: got '#N/A'Expecting numeric in C2197 / R2197C3: got '#N/A'Expecting numeric in D2197 / R2197C4: got '#N/A'Expecting numeric in E2197 / R2197C5: got '#N/A'Expecting numeric in G2197 / R2197C7: got '#N/A'Expecting numeric in K2197 / R2197C11: got '#N/A'Expecting numeric in C2198 / R2198C3: got '#N/A'Expecting numeric in D2198 / R2198C4: got '#N/A'Expecting numeric in E2198 / R2198C5: got '#N/A'Expecting numeric in G2198 / R2198C7: got '#N/A'Expecting numeric in K2198 / R2198C11: got '#N/A'Expecting numeric in C2199 / R2199C3: got '#N/A'Expecting numeric in D2199 / R2199C4: got '#N/A'Expecting numeric in E2199 / R2199C5: got '#N/A'Expecting numeric in G2199 / R2199C7: got '#N/A'Expecting numeric in K2199 / R2199C11: got '#N/A'Expecting numeric in C2200 / R2200C3: got '#N/A'Expecting numeric in D2200 / R2200C4: got '#N/A'Expecting numeric in E2200 / R2200C5: got '#N/A'Expecting numeric in G2200 / R2200C7: got '#N/A'Expecting numeric in K2200 / R2200C11: got '#N/A'Expecting numeric in C2201 / R2201C3: got '#N/A'Expecting numeric in D2201 / R2201C4: got '#N/A'Expecting numeric in E2201 / R2201C5: got '#N/A'Expecting numeric in G2201 / R2201C7: got '#N/A'Expecting numeric in K2201 / R2201C11: got '#N/A'Expecting numeric in C2202 / R2202C3: got '#N/A'Expecting numeric in D2202 / R2202C4: got '#N/A'Expecting numeric in E2202 / R2202C5: got '#N/A'Expecting numeric in G2202 / R2202C7: got '#N/A'Expecting numeric in K2202 / R2202C11: got '#N/A'Expecting numeric in C2203 / R2203C3: got '#N/A'Expecting numeric in D2203 / R2203C4: got '#N/A'Expecting numeric in E2203 / R2203C5: got '#N/A'Expecting numeric in G2203 / R2203C7: got '#N/A'Expecting numeric in K2203 / R2203C11: got '#N/A'Expecting numeric in C2204 / R2204C3: got '#N/A'Expecting numeric in D2204 / R2204C4: got '#N/A'Expecting numeric in E2204 / R2204C5: got '#N/A'Expecting numeric in G2204 / R2204C7: got '#N/A'Expecting numeric in K2204 / R2204C11: got '#N/A'Expecting numeric in C2205 / R2205C3: got '#N/A'Expecting numeric in D2205 / R2205C4: got '#N/A'Expecting numeric in E2205 / R2205C5: got '#N/A'Expecting numeric in G2205 / R2205C7: got '#N/A'Expecting numeric in K2205 / R2205C11: got '#N/A'Expecting numeric in C2206 / R2206C3: got '#N/A'Expecting numeric in D2206 / R2206C4: got '#N/A'Expecting numeric in E2206 / R2206C5: got '#N/A'Expecting numeric in G2206 / R2206C7: got '#N/A'Expecting numeric in K2206 / R2206C11: got '#N/A'Expecting numeric in C2207 / R2207C3: got '#N/A'Expecting numeric in D2207 / R2207C4: got '#N/A'Expecting numeric in E2207 / R2207C5: got '#N/A'Expecting numeric in G2207 / R2207C7: got '#N/A'Expecting numeric in K2207 / R2207C11: got '#N/A'Expecting numeric in C2208 / R2208C3: got '#N/A'Expecting numeric in D2208 / R2208C4: got '#N/A'Expecting numeric in E2208 / R2208C5: got '#N/A'Expecting numeric in G2208 / R2208C7: got '#N/A'Expecting numeric in K2208 / R2208C11: got '#N/A'Expecting numeric in C2209 / R2209C3: got '#N/A'Expecting numeric in D2209 / R2209C4: got '#N/A'Expecting numeric in E2209 / R2209C5: got '#N/A'Expecting numeric in G2209 / R2209C7: got '#N/A'Expecting numeric in K2209 / R2209C11: got '#N/A'Expecting numeric in C2210 / R2210C3: got '#N/A'Expecting numeric in D2210 / R2210C4: got '#N/A'Expecting numeric in E2210 / R2210C5: got '#N/A'Expecting numeric in G2210 / R2210C7: got '#N/A'Expecting numeric in K2210 / R2210C11: got '#N/A'Expecting numeric in C2211 / R2211C3: got '#N/A'Expecting numeric in D2211 / R2211C4: got '#N/A'Expecting numeric in E2211 / R2211C5: got '#N/A'Expecting numeric in G2211 / R2211C7: got '#N/A'Expecting numeric in K2211 / R2211C11: got '#N/A'Expecting numeric in C2212 / R2212C3: got '#N/A'Expecting numeric in D2212 / R2212C4: got '#N/A'Expecting numeric in E2212 / R2212C5: got '#N/A'Expecting numeric in G2212 / R2212C7: got '#N/A'Expecting numeric in K2212 / R2212C11: got '#N/A'Expecting numeric in C2213 / R2213C3: got '#N/A'Expecting numeric in D2213 / R2213C4: got '#N/A'Expecting numeric in E2213 / R2213C5: got '#N/A'Expecting numeric in G2213 / R2213C7: got '#N/A'Expecting numeric in K2213 / R2213C11: got '#N/A'Expecting numeric in C2214 / R2214C3: got '#N/A'Expecting numeric in D2214 / R2214C4: got '#N/A'Expecting numeric in E2214 / R2214C5: got '#N/A'Expecting numeric in G2214 / R2214C7: got '#N/A'Expecting numeric in K2214 / R2214C11: got '#N/A'Expecting numeric in C2215 / R2215C3: got '#N/A'Expecting numeric in D2215 / R2215C4: got '#N/A'Expecting numeric in E2215 / R2215C5: got '#N/A'Expecting numeric in G2215 / R2215C7: got '#N/A'Expecting numeric in K2215 / R2215C11: got '#N/A'Expecting numeric in C2216 / R2216C3: got '#N/A'Expecting numeric in D2216 / R2216C4: got '#N/A'Expecting numeric in E2216 / R2216C5: got '#N/A'Expecting numeric in G2216 / R2216C7: got '#N/A'Expecting numeric in K2216 / R2216C11: got '#N/A'Expecting numeric in C2217 / R2217C3: got '#N/A'Expecting numeric in D2217 / R2217C4: got '#N/A'Expecting numeric in E2217 / R2217C5: got '#N/A'Expecting numeric in G2217 / R2217C7: got '#N/A'Expecting numeric in K2217 / R2217C11: got '#N/A'Expecting numeric in C2218 / R2218C3: got '#N/A'Expecting numeric in D2218 / R2218C4: got '#N/A'Expecting numeric in E2218 / R2218C5: got '#N/A'Expecting numeric in G2218 / R2218C7: got '#N/A'Expecting numeric in K2218 / R2218C11: got '#N/A'Expecting numeric in C2219 / R2219C3: got '#N/A'Expecting numeric in D2219 / R2219C4: got '#N/A'Expecting numeric in E2219 / R2219C5: got '#N/A'Expecting numeric in G2219 / R2219C7: got '#N/A'Expecting numeric in K2219 / R2219C11: got '#N/A'Expecting numeric in C2220 / R2220C3: got '#N/A'Expecting numeric in D2220 / R2220C4: got '#N/A'Expecting numeric in E2220 / R2220C5: got '#N/A'Expecting numeric in G2220 / R2220C7: got '#N/A'Expecting numeric in K2220 / R2220C11: got '#N/A'Expecting numeric in C2221 / R2221C3: got '#N/A'Expecting numeric in D2221 / R2221C4: got '#N/A'Expecting numeric in E2221 / R2221C5: got '#N/A'Expecting numeric in G2221 / R2221C7: got '#N/A'Expecting numeric in K2221 / R2221C11: got '#N/A'Expecting numeric in C2222 / R2222C3: got '#N/A'Expecting numeric in D2222 / R2222C4: got '#N/A'Expecting numeric in E2222 / R2222C5: got '#N/A'Expecting numeric in G2222 / R2222C7: got '#N/A'Expecting numeric in K2222 / R2222C11: got '#N/A'Expecting numeric in C2223 / R2223C3: got '#N/A'Expecting numeric in D2223 / R2223C4: got '#N/A'Expecting numeric in E2223 / R2223C5: got '#N/A'Expecting numeric in G2223 / R2223C7: got '#N/A'Expecting numeric in K2223 / R2223C11: got '#N/A'Expecting numeric in C2224 / R2224C3: got '#N/A'Expecting numeric in D2224 / R2224C4: got '#N/A'Expecting numeric in E2224 / R2224C5: got '#N/A'Expecting numeric in G2224 / R2224C7: got '#N/A'Expecting numeric in K2224 / R2224C11: got '#N/A'Expecting numeric in C2225 / R2225C3: got '#N/A'Expecting numeric in D2225 / R2225C4: got '#N/A'Expecting numeric in E2225 / R2225C5: got '#N/A'Expecting numeric in G2225 / R2225C7: got '#N/A'Expecting numeric in K2225 / R2225C11: got '#N/A'Expecting numeric in C2226 / R2226C3: got '#N/A'Expecting numeric in D2226 / R2226C4: got '#N/A'Expecting numeric in E2226 / R2226C5: got '#N/A'Expecting numeric in G2226 / R2226C7: got '#N/A'Expecting numeric in K2226 / R2226C11: got '#N/A'Expecting numeric in C2227 / R2227C3: got '#N/A'Expecting numeric in D2227 / R2227C4: got '#N/A'Expecting numeric in E2227 / R2227C5: got '#N/A'Expecting numeric in G2227 / R2227C7: got '#N/A'Expecting numeric in K2227 / R2227C11: got '#N/A'Expecting numeric in C2228 / R2228C3: got '#N/A'Expecting numeric in D2228 / R2228C4: got '#N/A'Expecting numeric in E2228 / R2228C5: got '#N/A'Expecting numeric in G2228 / R2228C7: got '#N/A'Expecting numeric in K2228 / R2228C11: got '#N/A'Expecting numeric in C2229 / R2229C3: got '#N/A'Expecting numeric in D2229 / R2229C4: got '#N/A'Expecting numeric in E2229 / R2229C5: got '#N/A'Expecting numeric in G2229 / R2229C7: got '#N/A'Expecting numeric in K2229 / R2229C11: got '#N/A'Expecting numeric in C2230 / R2230C3: got '#N/A'Expecting numeric in D2230 / R2230C4: got '#N/A'Expecting numeric in E2230 / R2230C5: got '#N/A'Expecting numeric in G2230 / R2230C7: got '#N/A'Expecting numeric in K2230 / R2230C11: got '#N/A'Expecting numeric in C2231 / R2231C3: got '#N/A'Expecting numeric in D2231 / R2231C4: got '#N/A'Expecting numeric in E2231 / R2231C5: got '#N/A'Expecting numeric in G2231 / R2231C7: got '#N/A'Expecting numeric in K2231 / R2231C11: got '#N/A'Expecting numeric in C2232 / R2232C3: got '#N/A'Expecting numeric in D2232 / R2232C4: got '#N/A'Expecting numeric in E2232 / R2232C5: got '#N/A'Expecting numeric in G2232 / R2232C7: got '#N/A'Expecting numeric in K2232 / R2232C11: got '#N/A'Expecting numeric in C2233 / R2233C3: got '#N/A'Expecting numeric in D2233 / R2233C4: got '#N/A'Expecting numeric in E2233 / R2233C5: got '#N/A'Expecting numeric in G2233 / R2233C7: got '#N/A'Expecting numeric in K2233 / R2233C11: got '#N/A'Expecting numeric in C2234 / R2234C3: got '#N/A'Expecting numeric in D2234 / R2234C4: got '#N/A'Expecting numeric in E2234 / R2234C5: got '#N/A'Expecting numeric in G2234 / R2234C7: got '#N/A'Expecting numeric in K2234 / R2234C11: got '#N/A'Expecting numeric in C2235 / R2235C3: got '#N/A'Expecting numeric in D2235 / R2235C4: got '#N/A'Expecting numeric in E2235 / R2235C5: got '#N/A'Expecting numeric in G2235 / R2235C7: got '#N/A'Expecting numeric in K2235 / R2235C11: got '#N/A'Expecting numeric in C2236 / R2236C3: got '#N/A'Expecting numeric in D2236 / R2236C4: got '#N/A'Expecting numeric in E2236 / R2236C5: got '#N/A'Expecting numeric in G2236 / R2236C7: got '#N/A'Expecting numeric in K2236 / R2236C11: got '#N/A'Expecting numeric in C2237 / R2237C3: got '#N/A'Expecting numeric in D2237 / R2237C4: got '#N/A'Expecting numeric in E2237 / R2237C5: got '#N/A'Expecting numeric in G2237 / R2237C7: got '#N/A'Expecting numeric in K2237 / R2237C11: got '#N/A'Expecting numeric in C2238 / R2238C3: got '#N/A'Expecting numeric in D2238 / R2238C4: got '#N/A'Expecting numeric in E2238 / R2238C5: got '#N/A'Expecting numeric in G2238 / R2238C7: got '#N/A'Expecting numeric in K2238 / R2238C11: got '#N/A'Expecting numeric in C2239 / R2239C3: got '#N/A'Expecting numeric in D2239 / R2239C4: got '#N/A'Expecting numeric in E2239 / R2239C5: got '#N/A'Expecting numeric in G2239 / R2239C7: got '#N/A'Expecting numeric in K2239 / R2239C11: got '#N/A'Expecting numeric in C2240 / R2240C3: got '#N/A'Expecting numeric in D2240 / R2240C4: got '#N/A'Expecting numeric in E2240 / R2240C5: got '#N/A'Expecting numeric in G2240 / R2240C7: got '#N/A'Expecting numeric in K2240 / R2240C11: got '#N/A'Expecting numeric in C2241 / R2241C3: got '#N/A'Expecting numeric in D2241 / R2241C4: got '#N/A'Expecting numeric in E2241 / R2241C5: got '#N/A'Expecting numeric in G2241 / R2241C7: got '#N/A'Expecting numeric in K2241 / R2241C11: got '#N/A'Expecting numeric in C2242 / R2242C3: got '#N/A'Expecting numeric in D2242 / R2242C4: got '#N/A'Expecting numeric in E2242 / R2242C5: got '#N/A'Expecting numeric in G2242 / R2242C7: got '#N/A'Expecting numeric in K2242 / R2242C11: got '#N/A'Expecting numeric in C2243 / R2243C3: got '#N/A'Expecting numeric in D2243 / R2243C4: got '#N/A'Expecting numeric in E2243 / R2243C5: got '#N/A'Expecting numeric in G2243 / R2243C7: got '#N/A'Expecting numeric in K2243 / R2243C11: got '#N/A'Expecting numeric in C2244 / R2244C3: got '#N/A'Expecting numeric in D2244 / R2244C4: got '#N/A'Expecting numeric in E2244 / R2244C5: got '#N/A'Expecting numeric in G2244 / R2244C7: got '#N/A'Expecting numeric in K2244 / R2244C11: got '#N/A'Expecting numeric in C2245 / R2245C3: got '#N/A'Expecting numeric in D2245 / R2245C4: got '#N/A'Expecting numeric in E2245 / R2245C5: got '#N/A'Expecting numeric in G2245 / R2245C7: got '#N/A'Expecting numeric in K2245 / R2245C11: got '#N/A'Expecting numeric in C2246 / R2246C3: got '#N/A'Expecting numeric in D2246 / R2246C4: got '#N/A'Expecting numeric in E2246 / R2246C5: got '#N/A'Expecting numeric in G2246 / R2246C7: got '#N/A'Expecting numeric in K2246 / R2246C11: got '#N/A'Expecting numeric in C2247 / R2247C3: got '#N/A'Expecting numeric in D2247 / R2247C4: got '#N/A'Expecting numeric in E2247 / R2247C5: got '#N/A'Expecting numeric in G2247 / R2247C7: got '#N/A'Expecting numeric in K2247 / R2247C11: got '#N/A'Expecting numeric in C2248 / R2248C3: got '#N/A'Expecting numeric in D2248 / R2248C4: got '#N/A'Expecting numeric in E2248 / R2248C5: got '#N/A'Expecting numeric in G2248 / R2248C7: got '#N/A'Expecting numeric in K2248 / R2248C11: got '#N/A'Expecting numeric in C2249 / R2249C3: got '#N/A'Expecting numeric in D2249 / R2249C4: got '#N/A'Expecting numeric in E2249 / R2249C5: got '#N/A'Expecting numeric in G2249 / R2249C7: got '#N/A'Expecting numeric in K2249 / R2249C11: got '#N/A'Expecting numeric in C2250 / R2250C3: got '#N/A'Expecting numeric in D2250 / R2250C4: got '#N/A'Expecting numeric in E2250 / R2250C5: got '#N/A'Expecting numeric in G2250 / R2250C7: got '#N/A'Expecting numeric in K2250 / R2250C11: got '#N/A'Expecting numeric in C2251 / R2251C3: got '#N/A'Expecting numeric in D2251 / R2251C4: got '#N/A'Expecting numeric in E2251 / R2251C5: got '#N/A'Expecting numeric in G2251 / R2251C7: got '#N/A'Expecting numeric in K2251 / R2251C11: got '#N/A'Expecting numeric in C2252 / R2252C3: got '#N/A'Expecting numeric in D2252 / R2252C4: got '#N/A'Expecting numeric in E2252 / R2252C5: got '#N/A'Expecting numeric in G2252 / R2252C7: got '#N/A'Expecting numeric in K2252 / R2252C11: got '#N/A'Expecting numeric in C2253 / R2253C3: got '#N/A'Expecting numeric in D2253 / R2253C4: got '#N/A'Expecting numeric in E2253 / R2253C5: got '#N/A'Expecting numeric in G2253 / R2253C7: got '#N/A'Expecting numeric in K2253 / R2253C11: got '#N/A'Expecting numeric in C2254 / R2254C3: got '#N/A'Expecting numeric in D2254 / R2254C4: got '#N/A'Expecting numeric in E2254 / R2254C5: got '#N/A'Expecting numeric in G2254 / R2254C7: got '#N/A'Expecting numeric in K2254 / R2254C11: got '#N/A'Expecting numeric in C2255 / R2255C3: got '#N/A'Expecting numeric in D2255 / R2255C4: got '#N/A'Expecting numeric in E2255 / R2255C5: got '#N/A'Expecting numeric in G2255 / R2255C7: got '#N/A'Expecting numeric in K2255 / R2255C11: got '#N/A'Expecting numeric in C2256 / R2256C3: got '#N/A'Expecting numeric in D2256 / R2256C4: got '#N/A'Expecting numeric in E2256 / R2256C5: got '#N/A'Expecting numeric in G2256 / R2256C7: got '#N/A'Expecting numeric in K2256 / R2256C11: got '#N/A'Expecting numeric in C2257 / R2257C3: got '#N/A'Expecting numeric in D2257 / R2257C4: got '#N/A'Expecting numeric in E2257 / R2257C5: got '#N/A'Expecting numeric in G2257 / R2257C7: got '#N/A'Expecting numeric in K2257 / R2257C11: got '#N/A'Expecting numeric in C2258 / R2258C3: got '#N/A'Expecting numeric in D2258 / R2258C4: got '#N/A'Expecting numeric in E2258 / R2258C5: got '#N/A'Expecting numeric in G2258 / R2258C7: got '#N/A'Expecting numeric in K2258 / R2258C11: got '#N/A'Expecting numeric in C2259 / R2259C3: got '#N/A'Expecting numeric in D2259 / R2259C4: got '#N/A'Expecting numeric in E2259 / R2259C5: got '#N/A'Expecting numeric in G2259 / R2259C7: got '#N/A'Expecting numeric in K2259 / R2259C11: got '#N/A'Expecting numeric in C2260 / R2260C3: got '#N/A'Expecting numeric in D2260 / R2260C4: got '#N/A'Expecting numeric in E2260 / R2260C5: got '#N/A'Expecting numeric in G2260 / R2260C7: got '#N/A'Expecting numeric in K2260 / R2260C11: got '#N/A'Expecting numeric in C2261 / R2261C3: got '#N/A'Expecting numeric in D2261 / R2261C4: got '#N/A'Expecting numeric in E2261 / R2261C5: got '#N/A'Expecting numeric in G2261 / R2261C7: got '#N/A'Expecting numeric in K2261 / R2261C11: got '#N/A'Expecting numeric in C2262 / R2262C3: got '#N/A'Expecting numeric in D2262 / R2262C4: got '#N/A'Expecting numeric in E2262 / R2262C5: got '#N/A'Expecting numeric in G2262 / R2262C7: got '#N/A'Expecting numeric in K2262 / R2262C11: got '#N/A'Expecting numeric in C2263 / R2263C3: got '#N/A'Expecting numeric in D2263 / R2263C4: got '#N/A'Expecting numeric in E2263 / R2263C5: got '#N/A'Expecting numeric in G2263 / R2263C7: got '#N/A'Expecting numeric in K2263 / R2263C11: got '#N/A'Expecting numeric in C2264 / R2264C3: got '#N/A'Expecting numeric in D2264 / R2264C4: got '#N/A'Expecting numeric in E2264 / R2264C5: got '#N/A'Expecting numeric in G2264 / R2264C7: got '#N/A'Expecting numeric in K2264 / R2264C11: got '#N/A'Expecting numeric in C2265 / R2265C3: got '#N/A'Expecting numeric in D2265 / R2265C4: got '#N/A'Expecting numeric in E2265 / R2265C5: got '#N/A'Expecting numeric in G2265 / R2265C7: got '#N/A'Expecting numeric in K2265 / R2265C11: got '#N/A'Expecting numeric in C2266 / R2266C3: got '#N/A'Expecting numeric in D2266 / R2266C4: got '#N/A'Expecting numeric in E2266 / R2266C5: got '#N/A'Expecting numeric in G2266 / R2266C7: got '#N/A'Expecting numeric in K2266 / R2266C11: got '#N/A'Expecting numeric in C2267 / R2267C3: got '#N/A'Expecting numeric in D2267 / R2267C4: got '#N/A'Expecting numeric in E2267 / R2267C5: got '#N/A'Expecting numeric in G2267 / R2267C7: got '#N/A'Expecting numeric in K2267 / R2267C11: got '#N/A'Expecting numeric in C2268 / R2268C3: got '#N/A'Expecting numeric in D2268 / R2268C4: got '#N/A'Expecting numeric in E2268 / R2268C5: got '#N/A'Expecting numeric in G2268 / R2268C7: got '#N/A'Expecting numeric in K2268 / R2268C11: got '#N/A'Expecting numeric in C2269 / R2269C3: got '#N/A'Expecting numeric in D2269 / R2269C4: got '#N/A'Expecting numeric in E2269 / R2269C5: got '#N/A'Expecting numeric in G2269 / R2269C7: got '#N/A'Expecting numeric in K2269 / R2269C11: got '#N/A'Expecting numeric in C2270 / R2270C3: got '#N/A'Expecting numeric in D2270 / R2270C4: got '#N/A'Expecting numeric in E2270 / R2270C5: got '#N/A'Expecting numeric in G2270 / R2270C7: got '#N/A'Expecting numeric in K2270 / R2270C11: got '#N/A'Expecting numeric in C2271 / R2271C3: got '#N/A'Expecting numeric in D2271 / R2271C4: got '#N/A'Expecting numeric in E2271 / R2271C5: got '#N/A'Expecting numeric in G2271 / R2271C7: got '#N/A'Expecting numeric in K2271 / R2271C11: got '#N/A'Expecting numeric in C2272 / R2272C3: got '#N/A'Expecting numeric in D2272 / R2272C4: got '#N/A'Expecting numeric in E2272 / R2272C5: got '#N/A'Expecting numeric in G2272 / R2272C7: got '#N/A'Expecting numeric in K2272 / R2272C11: got '#N/A'Expecting numeric in C2273 / R2273C3: got '#N/A'Expecting numeric in D2273 / R2273C4: got '#N/A'Expecting numeric in E2273 / R2273C5: got '#N/A'Expecting numeric in G2273 / R2273C7: got '#N/A'Expecting numeric in K2273 / R2273C11: got '#N/A'Expecting numeric in C2274 / R2274C3: got '#N/A'Expecting numeric in D2274 / R2274C4: got '#N/A'Expecting numeric in E2274 / R2274C5: got '#N/A'Expecting numeric in G2274 / R2274C7: got '#N/A'Expecting numeric in K2274 / R2274C11: got '#N/A'Expecting numeric in C2275 / R2275C3: got '#N/A'Expecting numeric in D2275 / R2275C4: got '#N/A'Expecting numeric in E2275 / R2275C5: got '#N/A'Expecting numeric in G2275 / R2275C7: got '#N/A'Expecting numeric in K2275 / R2275C11: got '#N/A'Expecting numeric in C2276 / R2276C3: got '#N/A'Expecting numeric in D2276 / R2276C4: got '#N/A'Expecting numeric in E2276 / R2276C5: got '#N/A'Expecting numeric in G2276 / R2276C7: got '#N/A'Expecting numeric in K2276 / R2276C11: got '#N/A'Expecting numeric in C2277 / R2277C3: got '#N/A'Expecting numeric in D2277 / R2277C4: got '#N/A'Expecting numeric in E2277 / R2277C5: got '#N/A'Expecting numeric in G2277 / R2277C7: got '#N/A'Expecting numeric in K2277 / R2277C11: got '#N/A'Expecting numeric in C2278 / R2278C3: got '#N/A'Expecting numeric in D2278 / R2278C4: got '#N/A'Expecting numeric in E2278 / R2278C5: got '#N/A'Expecting numeric in G2278 / R2278C7: got '#N/A'Expecting numeric in K2278 / R2278C11: got '#N/A'Expecting numeric in C2279 / R2279C3: got '#N/A'Expecting numeric in D2279 / R2279C4: got '#N/A'Expecting numeric in E2279 / R2279C5: got '#N/A'Expecting numeric in G2279 / R2279C7: got '#N/A'Expecting numeric in K2279 / R2279C11: got '#N/A'Expecting numeric in C2280 / R2280C3: got '#N/A'Expecting numeric in D2280 / R2280C4: got '#N/A'Expecting numeric in E2280 / R2280C5: got '#N/A'Expecting numeric in G2280 / R2280C7: got '#N/A'Expecting numeric in K2280 / R2280C11: got '#N/A'Expecting numeric in C2281 / R2281C3: got '#N/A'Expecting numeric in D2281 / R2281C4: got '#N/A'Expecting numeric in E2281 / R2281C5: got '#N/A'Expecting numeric in G2281 / R2281C7: got '#N/A'Expecting numeric in K2281 / R2281C11: got '#N/A'Expecting numeric in C2282 / R2282C3: got '#N/A'Expecting numeric in D2282 / R2282C4: got '#N/A'Expecting numeric in E2282 / R2282C5: got '#N/A'Expecting numeric in G2282 / R2282C7: got '#N/A'Expecting numeric in K2282 / R2282C11: got '#N/A'Expecting numeric in C2283 / R2283C3: got '#N/A'Expecting numeric in D2283 / R2283C4: got '#N/A'Expecting numeric in E2283 / R2283C5: got '#N/A'Expecting numeric in G2283 / R2283C7: got '#N/A'Expecting numeric in K2283 / R2283C11: got '#N/A'Expecting numeric in C2284 / R2284C3: got '#N/A'Expecting numeric in D2284 / R2284C4: got '#N/A'Expecting numeric in E2284 / R2284C5: got '#N/A'Expecting numeric in G2284 / R2284C7: got '#N/A'Expecting numeric in K2284 / R2284C11: got '#N/A'Expecting numeric in C2285 / R2285C3: got '#N/A'Expecting numeric in D2285 / R2285C4: got '#N/A'Expecting numeric in E2285 / R2285C5: got '#N/A'Expecting numeric in G2285 / R2285C7: got '#N/A'Expecting numeric in K2285 / R2285C11: got '#N/A'Expecting numeric in C2286 / R2286C3: got '#N/A'Expecting numeric in D2286 / R2286C4: got '#N/A'Expecting numeric in E2286 / R2286C5: got '#N/A'Expecting numeric in G2286 / R2286C7: got '#N/A'Expecting numeric in K2286 / R2286C11: got '#N/A'Expecting numeric in C2287 / R2287C3: got '#N/A'Expecting numeric in D2287 / R2287C4: got '#N/A'Expecting numeric in E2287 / R2287C5: got '#N/A'Expecting numeric in G2287 / R2287C7: got '#N/A'Expecting numeric in K2287 / R2287C11: got '#N/A'Expecting numeric in C2288 / R2288C3: got '#N/A'Expecting numeric in D2288 / R2288C4: got '#N/A'Expecting numeric in E2288 / R2288C5: got '#N/A'Expecting numeric in G2288 / R2288C7: got '#N/A'Expecting numeric in K2288 / R2288C11: got '#N/A'Expecting numeric in C2289 / R2289C3: got '#N/A'Expecting numeric in D2289 / R2289C4: got '#N/A'Expecting numeric in E2289 / R2289C5: got '#N/A'Expecting numeric in G2289 / R2289C7: got '#N/A'Expecting numeric in K2289 / R2289C11: got '#N/A'Expecting numeric in C2290 / R2290C3: got '#N/A'Expecting numeric in D2290 / R2290C4: got '#N/A'Expecting numeric in E2290 / R2290C5: got '#N/A'Expecting numeric in G2290 / R2290C7: got '#N/A'Expecting numeric in K2290 / R2290C11: got '#N/A'Expecting numeric in C2291 / R2291C3: got '#N/A'Expecting numeric in D2291 / R2291C4: got '#N/A'Expecting numeric in E2291 / R2291C5: got '#N/A'Expecting numeric in G2291 / R2291C7: got '#N/A'Expecting numeric in K2291 / R2291C11: got '#N/A'Expecting numeric in C2292 / R2292C3: got '#N/A'Expecting numeric in D2292 / R2292C4: got '#N/A'Expecting numeric in E2292 / R2292C5: got '#N/A'Expecting numeric in G2292 / R2292C7: got '#N/A'Expecting numeric in K2292 / R2292C11: got '#N/A'Expecting numeric in C2293 / R2293C3: got '#N/A'Expecting numeric in D2293 / R2293C4: got '#N/A'Expecting numeric in E2293 / R2293C5: got '#N/A'Expecting numeric in G2293 / R2293C7: got '#N/A'Expecting numeric in K2293 / R2293C11: got '#N/A'Expecting numeric in C2294 / R2294C3: got '#N/A'Expecting numeric in D2294 / R2294C4: got '#N/A'Expecting numeric in E2294 / R2294C5: got '#N/A'Expecting numeric in G2294 / R2294C7: got '#N/A'Expecting numeric in K2294 / R2294C11: got '#N/A'Expecting numeric in C2295 / R2295C3: got '#N/A'Expecting numeric in D2295 / R2295C4: got '#N/A'Expecting numeric in E2295 / R2295C5: got '#N/A'Expecting numeric in G2295 / R2295C7: got '#N/A'Expecting numeric in K2295 / R2295C11: got '#N/A'Expecting numeric in C2296 / R2296C3: got '#N/A'Expecting numeric in D2296 / R2296C4: got '#N/A'Expecting numeric in E2296 / R2296C5: got '#N/A'Expecting numeric in G2296 / R2296C7: got '#N/A'Expecting numeric in K2296 / R2296C11: got '#N/A'Expecting numeric in C2297 / R2297C3: got '#N/A'Expecting numeric in D2297 / R2297C4: got '#N/A'Expecting numeric in E2297 / R2297C5: got '#N/A'Expecting numeric in G2297 / R2297C7: got '#N/A'Expecting numeric in K2297 / R2297C11: got '#N/A'Expecting numeric in C2298 / R2298C3: got '#N/A'Expecting numeric in D2298 / R2298C4: got '#N/A'Expecting numeric in E2298 / R2298C5: got '#N/A'Expecting numeric in G2298 / R2298C7: got '#N/A'Expecting numeric in K2298 / R2298C11: got '#N/A'Expecting numeric in C2299 / R2299C3: got '#N/A'Expecting numeric in D2299 / R2299C4: got '#N/A'Expecting numeric in E2299 / R2299C5: got '#N/A'Expecting numeric in G2299 / R2299C7: got '#N/A'Expecting numeric in K2299 / R2299C11: got '#N/A'Expecting numeric in C2300 / R2300C3: got '#N/A'Expecting numeric in D2300 / R2300C4: got '#N/A'Expecting numeric in E2300 / R2300C5: got '#N/A'Expecting numeric in G2300 / R2300C7: got '#N/A'Expecting numeric in K2300 / R2300C11: got '#N/A'Expecting numeric in C2301 / R2301C3: got '#N/A'Expecting numeric in D2301 / R2301C4: got '#N/A'Expecting numeric in E2301 / R2301C5: got '#N/A'Expecting numeric in G2301 / R2301C7: got '#N/A'Expecting numeric in K2301 / R2301C11: got '#N/A'Expecting numeric in C2302 / R2302C3: got '#N/A'Expecting numeric in D2302 / R2302C4: got '#N/A'Expecting numeric in E2302 / R2302C5: got '#N/A'Expecting numeric in G2302 / R2302C7: got '#N/A'Expecting numeric in K2302 / R2302C11: got '#N/A'Expecting numeric in C2303 / R2303C3: got '#N/A'Expecting numeric in D2303 / R2303C4: got '#N/A'Expecting numeric in E2303 / R2303C5: got '#N/A'Expecting numeric in G2303 / R2303C7: got '#N/A'Expecting numeric in K2303 / R2303C11: got '#N/A'Expecting numeric in C2304 / R2304C3: got '#N/A'Expecting numeric in D2304 / R2304C4: got '#N/A'Expecting numeric in E2304 / R2304C5: got '#N/A'Expecting numeric in G2304 / R2304C7: got '#N/A'Expecting numeric in K2304 / R2304C11: got '#N/A'Expecting numeric in C2305 / R2305C3: got '#N/A'Expecting numeric in D2305 / R2305C4: got '#N/A'Expecting numeric in E2305 / R2305C5: got '#N/A'Expecting numeric in G2305 / R2305C7: got '#N/A'Expecting numeric in K2305 / R2305C11: got '#N/A'Expecting numeric in C2306 / R2306C3: got '#N/A'Expecting numeric in D2306 / R2306C4: got '#N/A'Expecting numeric in E2306 / R2306C5: got '#N/A'Expecting numeric in G2306 / R2306C7: got '#N/A'Expecting numeric in K2306 / R2306C11: got '#N/A'Expecting numeric in C2307 / R2307C3: got '#N/A'Expecting numeric in D2307 / R2307C4: got '#N/A'Expecting numeric in E2307 / R2307C5: got '#N/A'Expecting numeric in G2307 / R2307C7: got '#N/A'Expecting numeric in K2307 / R2307C11: got '#N/A'Expecting numeric in C2308 / R2308C3: got '#N/A'Expecting numeric in D2308 / R2308C4: got '#N/A'Expecting numeric in E2308 / R2308C5: got '#N/A'Expecting numeric in G2308 / R2308C7: got '#N/A'Expecting numeric in K2308 / R2308C11: got '#N/A'Expecting numeric in C2309 / R2309C3: got '#N/A'Expecting numeric in D2309 / R2309C4: got '#N/A'Expecting numeric in E2309 / R2309C5: got '#N/A'Expecting numeric in G2309 / R2309C7: got '#N/A'Expecting numeric in K2309 / R2309C11: got '#N/A'Expecting numeric in C2310 / R2310C3: got '#N/A'Expecting numeric in D2310 / R2310C4: got '#N/A'Expecting numeric in E2310 / R2310C5: got '#N/A'Expecting numeric in G2310 / R2310C7: got '#N/A'Expecting numeric in K2310 / R2310C11: got '#N/A'Expecting numeric in C2311 / R2311C3: got '#N/A'Expecting numeric in D2311 / R2311C4: got '#N/A'Expecting numeric in E2311 / R2311C5: got '#N/A'Expecting numeric in G2311 / R2311C7: got '#N/A'Expecting numeric in K2311 / R2311C11: got '#N/A'Expecting numeric in C2312 / R2312C3: got '#N/A'Expecting numeric in D2312 / R2312C4: got '#N/A'Expecting numeric in E2312 / R2312C5: got '#N/A'Expecting numeric in G2312 / R2312C7: got '#N/A'Expecting numeric in K2312 / R2312C11: got '#N/A'Expecting numeric in C2313 / R2313C3: got '#N/A'Expecting numeric in D2313 / R2313C4: got '#N/A'Expecting numeric in E2313 / R2313C5: got '#N/A'Expecting numeric in G2313 / R2313C7: got '#N/A'Expecting numeric in K2313 / R2313C11: got '#N/A'Expecting numeric in C2314 / R2314C3: got '#N/A'Expecting numeric in D2314 / R2314C4: got '#N/A'Expecting numeric in E2314 / R2314C5: got '#N/A'Expecting numeric in G2314 / R2314C7: got '#N/A'Expecting numeric in K2314 / R2314C11: got '#N/A'Expecting numeric in C2315 / R2315C3: got '#N/A'Expecting numeric in D2315 / R2315C4: got '#N/A'Expecting numeric in E2315 / R2315C5: got '#N/A'Expecting numeric in G2315 / R2315C7: got '#N/A'Expecting numeric in K2315 / R2315C11: got '#N/A'Expecting numeric in C2316 / R2316C3: got '#N/A'Expecting numeric in D2316 / R2316C4: got '#N/A'Expecting numeric in E2316 / R2316C5: got '#N/A'Expecting numeric in G2316 / R2316C7: got '#N/A'Expecting numeric in K2316 / R2316C11: got '#N/A'Expecting numeric in C2317 / R2317C3: got '#N/A'Expecting numeric in D2317 / R2317C4: got '#N/A'Expecting numeric in E2317 / R2317C5: got '#N/A'Expecting numeric in G2317 / R2317C7: got '#N/A'Expecting numeric in K2317 / R2317C11: got '#N/A'Expecting numeric in C2318 / R2318C3: got '#N/A'Expecting numeric in D2318 / R2318C4: got '#N/A'Expecting numeric in E2318 / R2318C5: got '#N/A'Expecting numeric in G2318 / R2318C7: got '#N/A'Expecting numeric in K2318 / R2318C11: got '#N/A'Expecting numeric in C2319 / R2319C3: got '#N/A'Expecting numeric in D2319 / R2319C4: got '#N/A'Expecting numeric in E2319 / R2319C5: got '#N/A'Expecting numeric in G2319 / R2319C7: got '#N/A'Expecting numeric in K2319 / R2319C11: got '#N/A'Expecting numeric in C2320 / R2320C3: got '#N/A'Expecting numeric in D2320 / R2320C4: got '#N/A'Expecting numeric in E2320 / R2320C5: got '#N/A'Expecting numeric in G2320 / R2320C7: got '#N/A'Expecting numeric in K2320 / R2320C11: got '#N/A'Expecting numeric in C2321 / R2321C3: got '#N/A'Expecting numeric in D2321 / R2321C4: got '#N/A'Expecting numeric in E2321 / R2321C5: got '#N/A'Expecting numeric in G2321 / R2321C7: got '#N/A'Expecting numeric in K2321 / R2321C11: got '#N/A'Expecting numeric in C2322 / R2322C3: got '#N/A'Expecting numeric in D2322 / R2322C4: got '#N/A'Expecting numeric in E2322 / R2322C5: got '#N/A'Expecting numeric in G2322 / R2322C7: got '#N/A'Expecting numeric in K2322 / R2322C11: got '#N/A'Expecting numeric in C2323 / R2323C3: got '#N/A'Expecting numeric in D2323 / R2323C4: got '#N/A'Expecting numeric in E2323 / R2323C5: got '#N/A'Expecting numeric in G2323 / R2323C7: got '#N/A'Expecting numeric in K2323 / R2323C11: got '#N/A'Expecting numeric in C2324 / R2324C3: got '#N/A'Expecting numeric in D2324 / R2324C4: got '#N/A'Expecting numeric in E2324 / R2324C5: got '#N/A'Expecting numeric in G2324 / R2324C7: got '#N/A'Expecting numeric in K2324 / R2324C11: got '#N/A'Expecting numeric in C2325 / R2325C3: got '#N/A'Expecting numeric in D2325 / R2325C4: got '#N/A'Expecting numeric in E2325 / R2325C5: got '#N/A'Expecting numeric in G2325 / R2325C7: got '#N/A'Expecting numeric in K2325 / R2325C11: got '#N/A'Expecting numeric in C2326 / R2326C3: got '#N/A'Expecting numeric in D2326 / R2326C4: got '#N/A'Expecting numeric in E2326 / R2326C5: got '#N/A'Expecting numeric in G2326 / R2326C7: got '#N/A'Expecting numeric in K2326 / R2326C11: got '#N/A'Expecting numeric in C2327 / R2327C3: got '#N/A'Expecting numeric in D2327 / R2327C4: got '#N/A'Expecting numeric in E2327 / R2327C5: got '#N/A'Expecting numeric in G2327 / R2327C7: got '#N/A'Expecting numeric in K2327 / R2327C11: got '#N/A'Expecting numeric in C2328 / R2328C3: got '#N/A'Expecting numeric in D2328 / R2328C4: got '#N/A'Expecting numeric in E2328 / R2328C5: got '#N/A'Expecting numeric in G2328 / R2328C7: got '#N/A'Expecting numeric in K2328 / R2328C11: got '#N/A'Expecting numeric in C2329 / R2329C3: got '#N/A'Expecting numeric in D2329 / R2329C4: got '#N/A'Expecting numeric in E2329 / R2329C5: got '#N/A'Expecting numeric in G2329 / R2329C7: got '#N/A'Expecting numeric in K2329 / R2329C11: got '#N/A'Expecting numeric in C2330 / R2330C3: got '#N/A'Expecting numeric in D2330 / R2330C4: got '#N/A'Expecting numeric in E2330 / R2330C5: got '#N/A'Expecting numeric in G2330 / R2330C7: got '#N/A'Expecting numeric in K2330 / R2330C11: got '#N/A'Expecting numeric in C2331 / R2331C3: got '#N/A'Expecting numeric in D2331 / R2331C4: got '#N/A'Expecting numeric in E2331 / R2331C5: got '#N/A'Expecting numeric in G2331 / R2331C7: got '#N/A'Expecting numeric in K2331 / R2331C11: got '#N/A'Expecting numeric in C2332 / R2332C3: got '#N/A'Expecting numeric in D2332 / R2332C4: got '#N/A'Expecting numeric in E2332 / R2332C5: got '#N/A'Expecting numeric in G2332 / R2332C7: got '#N/A'Expecting numeric in K2332 / R2332C11: got '#N/A'Expecting numeric in C2333 / R2333C3: got '#N/A'Expecting numeric in D2333 / R2333C4: got '#N/A'Expecting numeric in E2333 / R2333C5: got '#N/A'Expecting numeric in G2333 / R2333C7: got '#N/A'Expecting numeric in K2333 / R2333C11: got '#N/A'Expecting numeric in C2334 / R2334C3: got '#N/A'Expecting numeric in D2334 / R2334C4: got '#N/A'Expecting numeric in E2334 / R2334C5: got '#N/A'Expecting numeric in G2334 / R2334C7: got '#N/A'Expecting numeric in K2334 / R2334C11: got '#N/A'Expecting numeric in C2335 / R2335C3: got '#N/A'Expecting numeric in D2335 / R2335C4: got '#N/A'Expecting numeric in E2335 / R2335C5: got '#N/A'Expecting numeric in G2335 / R2335C7: got '#N/A'Expecting numeric in K2335 / R2335C11: got '#N/A'Expecting numeric in C2336 / R2336C3: got '#N/A'Expecting numeric in D2336 / R2336C4: got '#N/A'Expecting numeric in E2336 / R2336C5: got '#N/A'Expecting numeric in G2336 / R2336C7: got '#N/A'Expecting numeric in K2336 / R2336C11: got '#N/A'Expecting numeric in C2337 / R2337C3: got '#N/A'Expecting numeric in D2337 / R2337C4: got '#N/A'Expecting numeric in E2337 / R2337C5: got '#N/A'Expecting numeric in G2337 / R2337C7: got '#N/A'Expecting numeric in K2337 / R2337C11: got '#N/A'Expecting numeric in C2338 / R2338C3: got '#N/A'Expecting numeric in D2338 / R2338C4: got '#N/A'Expecting numeric in E2338 / R2338C5: got '#N/A'Expecting numeric in G2338 / R2338C7: got '#N/A'Expecting numeric in K2338 / R2338C11: got '#N/A'Expecting numeric in C2339 / R2339C3: got '#N/A'Expecting numeric in D2339 / R2339C4: got '#N/A'Expecting numeric in E2339 / R2339C5: got '#N/A'Expecting numeric in G2339 / R2339C7: got '#N/A'Expecting numeric in K2339 / R2339C11: got '#N/A'Expecting numeric in C2340 / R2340C3: got '#N/A'Expecting numeric in D2340 / R2340C4: got '#N/A'Expecting numeric in E2340 / R2340C5: got '#N/A'Expecting numeric in G2340 / R2340C7: got '#N/A'Expecting numeric in K2340 / R2340C11: got '#N/A'Expecting numeric in C2341 / R2341C3: got '#N/A'Expecting numeric in D2341 / R2341C4: got '#N/A'Expecting numeric in E2341 / R2341C5: got '#N/A'Expecting numeric in G2341 / R2341C7: got '#N/A'Expecting numeric in K2341 / R2341C11: got '#N/A'Expecting numeric in C2342 / R2342C3: got '#N/A'Expecting numeric in D2342 / R2342C4: got '#N/A'Expecting numeric in E2342 / R2342C5: got '#N/A'Expecting numeric in G2342 / R2342C7: got '#N/A'Expecting numeric in K2342 / R2342C11: got '#N/A'Expecting numeric in C2343 / R2343C3: got '#N/A'Expecting numeric in D2343 / R2343C4: got '#N/A'Expecting numeric in E2343 / R2343C5: got '#N/A'Expecting numeric in G2343 / R2343C7: got '#N/A'Expecting numeric in K2343 / R2343C11: got '#N/A'Expecting numeric in C2344 / R2344C3: got '#N/A'Expecting numeric in D2344 / R2344C4: got '#N/A'Expecting numeric in E2344 / R2344C5: got '#N/A'Expecting numeric in G2344 / R2344C7: got '#N/A'Expecting numeric in K2344 / R2344C11: got '#N/A'Expecting numeric in C2345 / R2345C3: got '#N/A'Expecting numeric in D2345 / R2345C4: got '#N/A'Expecting numeric in E2345 / R2345C5: got '#N/A'Expecting numeric in G2345 / R2345C7: got '#N/A'Expecting numeric in K2345 / R2345C11: got '#N/A'Expecting numeric in C2346 / R2346C3: got '#N/A'Expecting numeric in D2346 / R2346C4: got '#N/A'Expecting numeric in E2346 / R2346C5: got '#N/A'Expecting numeric in G2346 / R2346C7: got '#N/A'Expecting numeric in K2346 / R2346C11: got '#N/A'Expecting numeric in C2347 / R2347C3: got '#N/A'Expecting numeric in D2347 / R2347C4: got '#N/A'Expecting numeric in E2347 / R2347C5: got '#N/A'Expecting numeric in G2347 / R2347C7: got '#N/A'Expecting numeric in K2347 / R2347C11: got '#N/A'Expecting numeric in C2348 / R2348C3: got '#N/A'Expecting numeric in D2348 / R2348C4: got '#N/A'Expecting numeric in E2348 / R2348C5: got '#N/A'Expecting numeric in G2348 / R2348C7: got '#N/A'Expecting numeric in K2348 / R2348C11: got '#N/A'Expecting numeric in C2349 / R2349C3: got '#N/A'Expecting numeric in D2349 / R2349C4: got '#N/A'Expecting numeric in E2349 / R2349C5: got '#N/A'Expecting numeric in G2349 / R2349C7: got '#N/A'Expecting numeric in K2349 / R2349C11: got '#N/A'Expecting numeric in C2350 / R2350C3: got '#N/A'Expecting numeric in D2350 / R2350C4: got '#N/A'Expecting numeric in E2350 / R2350C5: got '#N/A'Expecting numeric in G2350 / R2350C7: got '#N/A'Expecting numeric in K2350 / R2350C11: got '#N/A'Expecting numeric in C2351 / R2351C3: got '#N/A'Expecting numeric in D2351 / R2351C4: got '#N/A'Expecting numeric in E2351 / R2351C5: got '#N/A'Expecting numeric in G2351 / R2351C7: got '#N/A'Expecting numeric in K2351 / R2351C11: got '#N/A'Expecting numeric in C2352 / R2352C3: got '#N/A'Expecting numeric in D2352 / R2352C4: got '#N/A'Expecting numeric in E2352 / R2352C5: got '#N/A'Expecting numeric in G2352 / R2352C7: got '#N/A'Expecting numeric in K2352 / R2352C11: got '#N/A'Expecting numeric in C2353 / R2353C3: got '#N/A'Expecting numeric in D2353 / R2353C4: got '#N/A'Expecting numeric in E2353 / R2353C5: got '#N/A'Expecting numeric in G2353 / R2353C7: got '#N/A'Expecting numeric in K2353 / R2353C11: got '#N/A'Expecting numeric in C2354 / R2354C3: got '#N/A'Expecting numeric in D2354 / R2354C4: got '#N/A'Expecting numeric in E2354 / R2354C5: got '#N/A'Expecting numeric in G2354 / R2354C7: got '#N/A'Expecting numeric in K2354 / R2354C11: got '#N/A'Expecting numeric in C2355 / R2355C3: got '#N/A'Expecting numeric in D2355 / R2355C4: got '#N/A'Expecting numeric in E2355 / R2355C5: got '#N/A'Expecting numeric in G2355 / R2355C7: got '#N/A'Expecting numeric in K2355 / R2355C11: got '#N/A'Expecting numeric in C2356 / R2356C3: got '#N/A'Expecting numeric in D2356 / R2356C4: got '#N/A'Expecting numeric in E2356 / R2356C5: got '#N/A'Expecting numeric in G2356 / R2356C7: got '#N/A'Expecting numeric in K2356 / R2356C11: got '#N/A'Expecting numeric in C2357 / R2357C3: got '#N/A'Expecting numeric in D2357 / R2357C4: got '#N/A'Expecting numeric in E2357 / R2357C5: got '#N/A'Expecting numeric in G2357 / R2357C7: got '#N/A'Expecting numeric in K2357 / R2357C11: got '#N/A'Expecting numeric in C2358 / R2358C3: got '#N/A'Expecting numeric in D2358 / R2358C4: got '#N/A'Expecting numeric in E2358 / R2358C5: got '#N/A'Expecting numeric in G2358 / R2358C7: got '#N/A'Expecting numeric in K2358 / R2358C11: got '#N/A'Expecting numeric in C2359 / R2359C3: got '#N/A'Expecting numeric in D2359 / R2359C4: got '#N/A'Expecting numeric in E2359 / R2359C5: got '#N/A'Expecting numeric in G2359 / R2359C7: got '#N/A'Expecting numeric in K2359 / R2359C11: got '#N/A'Expecting numeric in C2360 / R2360C3: got '#N/A'Expecting numeric in D2360 / R2360C4: got '#N/A'Expecting numeric in E2360 / R2360C5: got '#N/A'Expecting numeric in G2360 / R2360C7: got '#N/A'Expecting numeric in K2360 / R2360C11: got '#N/A'Expecting numeric in C2361 / R2361C3: got '#N/A'Expecting numeric in D2361 / R2361C4: got '#N/A'Expecting numeric in E2361 / R2361C5: got '#N/A'Expecting numeric in G2361 / R2361C7: got '#N/A'Expecting numeric in K2361 / R2361C11: got '#N/A'Expecting numeric in C2362 / R2362C3: got '#N/A'Expecting numeric in D2362 / R2362C4: got '#N/A'Expecting numeric in E2362 / R2362C5: got '#N/A'Expecting numeric in G2362 / R2362C7: got '#N/A'Expecting numeric in K2362 / R2362C11: got '#N/A'Expecting numeric in C2363 / R2363C3: got '#N/A'Expecting numeric in D2363 / R2363C4: got '#N/A'Expecting numeric in E2363 / R2363C5: got '#N/A'Expecting numeric in G2363 / R2363C7: got '#N/A'Expecting numeric in K2363 / R2363C11: got '#N/A'Expecting numeric in C2364 / R2364C3: got '#N/A'Expecting numeric in D2364 / R2364C4: got '#N/A'Expecting numeric in E2364 / R2364C5: got '#N/A'Expecting numeric in G2364 / R2364C7: got '#N/A'Expecting numeric in K2364 / R2364C11: got '#N/A'Expecting numeric in C2365 / R2365C3: got '#N/A'Expecting numeric in D2365 / R2365C4: got '#N/A'Expecting numeric in E2365 / R2365C5: got '#N/A'Expecting numeric in G2365 / R2365C7: got '#N/A'Expecting numeric in K2365 / R2365C11: got '#N/A'Expecting numeric in C2366 / R2366C3: got '#N/A'Expecting numeric in D2366 / R2366C4: got '#N/A'Expecting numeric in E2366 / R2366C5: got '#N/A'Expecting numeric in G2366 / R2366C7: got '#N/A'Expecting numeric in K2366 / R2366C11: got '#N/A'Expecting numeric in C2367 / R2367C3: got '#N/A'Expecting numeric in D2367 / R2367C4: got '#N/A'Expecting numeric in E2367 / R2367C5: got '#N/A'Expecting numeric in G2367 / R2367C7: got '#N/A'Expecting numeric in K2367 / R2367C11: got '#N/A'Expecting numeric in C2368 / R2368C3: got '#N/A'Expecting numeric in D2368 / R2368C4: got '#N/A'Expecting numeric in E2368 / R2368C5: got '#N/A'Expecting numeric in G2368 / R2368C7: got '#N/A'Expecting numeric in K2368 / R2368C11: got '#N/A'Expecting numeric in C2369 / R2369C3: got '#N/A'Expecting numeric in D2369 / R2369C4: got '#N/A'Expecting numeric in E2369 / R2369C5: got '#N/A'Expecting numeric in G2369 / R2369C7: got '#N/A'Expecting numeric in K2369 / R2369C11: got '#N/A'Expecting numeric in C2370 / R2370C3: got '#N/A'Expecting numeric in D2370 / R2370C4: got '#N/A'Expecting numeric in E2370 / R2370C5: got '#N/A'Expecting numeric in G2370 / R2370C7: got '#N/A'Expecting numeric in K2370 / R2370C11: got '#N/A'Expecting numeric in C2371 / R2371C3: got '#N/A'Expecting numeric in D2371 / R2371C4: got '#N/A'Expecting numeric in E2371 / R2371C5: got '#N/A'Expecting numeric in G2371 / R2371C7: got '#N/A'Expecting numeric in K2371 / R2371C11: got '#N/A'Expecting numeric in C2372 / R2372C3: got '#N/A'Expecting numeric in D2372 / R2372C4: got '#N/A'Expecting numeric in E2372 / R2372C5: got '#N/A'Expecting numeric in G2372 / R2372C7: got '#N/A'Expecting numeric in K2372 / R2372C11: got '#N/A'Expecting numeric in C2373 / R2373C3: got '#N/A'Expecting numeric in D2373 / R2373C4: got '#N/A'Expecting numeric in E2373 / R2373C5: got '#N/A'Expecting numeric in G2373 / R2373C7: got '#N/A'Expecting numeric in K2373 / R2373C11: got '#N/A'Expecting numeric in C2374 / R2374C3: got '#N/A'Expecting numeric in D2374 / R2374C4: got '#N/A'Expecting numeric in E2374 / R2374C5: got '#N/A'Expecting numeric in G2374 / R2374C7: got '#N/A'Expecting numeric in K2374 / R2374C11: got '#N/A'Expecting numeric in C2375 / R2375C3: got '#N/A'Expecting numeric in D2375 / R2375C4: got '#N/A'Expecting numeric in E2375 / R2375C5: got '#N/A'Expecting numeric in G2375 / R2375C7: got '#N/A'Expecting numeric in K2375 / R2375C11: got '#N/A'Expecting numeric in C2376 / R2376C3: got '#N/A'Expecting numeric in D2376 / R2376C4: got '#N/A'Expecting numeric in E2376 / R2376C5: got '#N/A'Expecting numeric in G2376 / R2376C7: got '#N/A'Expecting numeric in K2376 / R2376C11: got '#N/A'Expecting numeric in C2377 / R2377C3: got '#N/A'Expecting numeric in D2377 / R2377C4: got '#N/A'Expecting numeric in E2377 / R2377C5: got '#N/A'Expecting numeric in G2377 / R2377C7: got '#N/A'Expecting numeric in K2377 / R2377C11: got '#N/A'Expecting numeric in C2378 / R2378C3: got '#N/A'Expecting numeric in D2378 / R2378C4: got '#N/A'Expecting numeric in E2378 / R2378C5: got '#N/A'Expecting numeric in G2378 / R2378C7: got '#N/A'Expecting numeric in K2378 / R2378C11: got '#N/A'Expecting numeric in C2379 / R2379C3: got '#N/A'Expecting numeric in D2379 / R2379C4: got '#N/A'Expecting numeric in E2379 / R2379C5: got '#N/A'Expecting numeric in G2379 / R2379C7: got '#N/A'Expecting numeric in K2379 / R2379C11: got '#N/A'Expecting numeric in C2380 / R2380C3: got '#N/A'Expecting numeric in D2380 / R2380C4: got '#N/A'Expecting numeric in E2380 / R2380C5: got '#N/A'Expecting numeric in G2380 / R2380C7: got '#N/A'Expecting numeric in K2380 / R2380C11: got '#N/A'Expecting numeric in C2381 / R2381C3: got '#N/A'Expecting numeric in D2381 / R2381C4: got '#N/A'Expecting numeric in E2381 / R2381C5: got '#N/A'Expecting numeric in G2381 / R2381C7: got '#N/A'Expecting numeric in K2381 / R2381C11: got '#N/A'Expecting numeric in C2382 / R2382C3: got '#N/A'Expecting numeric in D2382 / R2382C4: got '#N/A'Expecting numeric in E2382 / R2382C5: got '#N/A'Expecting numeric in G2382 / R2382C7: got '#N/A'Expecting numeric in K2382 / R2382C11: got '#N/A'Expecting numeric in C2383 / R2383C3: got '#N/A'Expecting numeric in D2383 / R2383C4: got '#N/A'Expecting numeric in E2383 / R2383C5: got '#N/A'Expecting numeric in G2383 / R2383C7: got '#N/A'Expecting numeric in K2383 / R2383C11: got '#N/A'Expecting numeric in C2384 / R2384C3: got '#N/A'Expecting numeric in D2384 / R2384C4: got '#N/A'Expecting numeric in E2384 / R2384C5: got '#N/A'Expecting numeric in G2384 / R2384C7: got '#N/A'Expecting numeric in K2384 / R2384C11: got '#N/A'Expecting numeric in C2385 / R2385C3: got '#N/A'Expecting numeric in D2385 / R2385C4: got '#N/A'Expecting numeric in E2385 / R2385C5: got '#N/A'Expecting numeric in G2385 / R2385C7: got '#N/A'Expecting numeric in K2385 / R2385C11: got '#N/A'Expecting numeric in C2386 / R2386C3: got '#N/A'Expecting numeric in D2386 / R2386C4: got '#N/A'Expecting numeric in E2386 / R2386C5: got '#N/A'Expecting numeric in G2386 / R2386C7: got '#N/A'Expecting numeric in K2386 / R2386C11: got '#N/A'Expecting numeric in C2387 / R2387C3: got '#N/A'Expecting numeric in D2387 / R2387C4: got '#N/A'Expecting numeric in E2387 / R2387C5: got '#N/A'Expecting numeric in G2387 / R2387C7: got '#N/A'Expecting numeric in K2387 / R2387C11: got '#N/A'Expecting numeric in C2388 / R2388C3: got '#N/A'Expecting numeric in D2388 / R2388C4: got '#N/A'Expecting numeric in E2388 / R2388C5: got '#N/A'Expecting numeric in G2388 / R2388C7: got '#N/A'Expecting numeric in K2388 / R2388C11: got '#N/A'Expecting numeric in C2389 / R2389C3: got '#N/A'Expecting numeric in D2389 / R2389C4: got '#N/A'Expecting numeric in E2389 / R2389C5: got '#N/A'Expecting numeric in G2389 / R2389C7: got '#N/A'Expecting numeric in K2389 / R2389C11: got '#N/A'Expecting numeric in C2390 / R2390C3: got '#N/A'Expecting numeric in D2390 / R2390C4: got '#N/A'Expecting numeric in E2390 / R2390C5: got '#N/A'Expecting numeric in G2390 / R2390C7: got '#N/A'Expecting numeric in K2390 / R2390C11: got '#N/A'Expecting numeric in C2391 / R2391C3: got '#N/A'Expecting numeric in D2391 / R2391C4: got '#N/A'Expecting numeric in E2391 / R2391C5: got '#N/A'Expecting numeric in G2391 / R2391C7: got '#N/A'Expecting numeric in K2391 / R2391C11: got '#N/A'Expecting numeric in C2392 / R2392C3: got '#N/A'Expecting numeric in D2392 / R2392C4: got '#N/A'Expecting numeric in E2392 / R2392C5: got '#N/A'Expecting numeric in G2392 / R2392C7: got '#N/A'Expecting numeric in K2392 / R2392C11: got '#N/A'Expecting numeric in C2393 / R2393C3: got '#N/A'Expecting numeric in D2393 / R2393C4: got '#N/A'Expecting numeric in E2393 / R2393C5: got '#N/A'Expecting numeric in G2393 / R2393C7: got '#N/A'Expecting numeric in K2393 / R2393C11: got '#N/A'Expecting numeric in C2394 / R2394C3: got '#N/A'Expecting numeric in D2394 / R2394C4: got '#N/A'Expecting numeric in E2394 / R2394C5: got '#N/A'Expecting numeric in G2394 / R2394C7: got '#N/A'Expecting numeric in K2394 / R2394C11: got '#N/A'Expecting numeric in C2395 / R2395C3: got '#N/A'Expecting numeric in D2395 / R2395C4: got '#N/A'Expecting numeric in E2395 / R2395C5: got '#N/A'Expecting numeric in G2395 / R2395C7: got '#N/A'Expecting numeric in K2395 / R2395C11: got '#N/A'Expecting numeric in C2396 / R2396C3: got '#N/A'Expecting numeric in D2396 / R2396C4: got '#N/A'Expecting numeric in E2396 / R2396C5: got '#N/A'Expecting numeric in G2396 / R2396C7: got '#N/A'Expecting numeric in K2396 / R2396C11: got '#N/A'Expecting numeric in C2397 / R2397C3: got '#N/A'Expecting numeric in D2397 / R2397C4: got '#N/A'Expecting numeric in E2397 / R2397C5: got '#N/A'Expecting numeric in G2397 / R2397C7: got '#N/A'Expecting numeric in K2397 / R2397C11: got '#N/A'Expecting numeric in C2398 / R2398C3: got '#N/A'Expecting numeric in D2398 / R2398C4: got '#N/A'Expecting numeric in E2398 / R2398C5: got '#N/A'Expecting numeric in G2398 / R2398C7: got '#N/A'Expecting numeric in K2398 / R2398C11: got '#N/A'Expecting numeric in C2399 / R2399C3: got '#N/A'Expecting numeric in D2399 / R2399C4: got '#N/A'Expecting numeric in E2399 / R2399C5: got '#N/A'Expecting numeric in G2399 / R2399C7: got '#N/A'Expecting numeric in K2399 / R2399C11: got '#N/A'Expecting numeric in C2400 / R2400C3: got '#N/A'Expecting numeric in D2400 / R2400C4: got '#N/A'Expecting numeric in E2400 / R2400C5: got '#N/A'Expecting numeric in G2400 / R2400C7: got '#N/A'Expecting numeric in K2400 / R2400C11: got '#N/A'Expecting numeric in C2401 / R2401C3: got '#N/A'Expecting numeric in D2401 / R2401C4: got '#N/A'Expecting numeric in E2401 / R2401C5: got '#N/A'Expecting numeric in G2401 / R2401C7: got '#N/A'Expecting numeric in K2401 / R2401C11: got '#N/A'Expecting numeric in C2402 / R2402C3: got '#N/A'Expecting numeric in D2402 / R2402C4: got '#N/A'Expecting numeric in E2402 / R2402C5: got '#N/A'Expecting numeric in G2402 / R2402C7: got '#N/A'Expecting numeric in K2402 / R2402C11: got '#N/A'Expecting numeric in C2403 / R2403C3: got '#N/A'Expecting numeric in D2403 / R2403C4: got '#N/A'Expecting numeric in E2403 / R2403C5: got '#N/A'Expecting numeric in G2403 / R2403C7: got '#N/A'Expecting numeric in K2403 / R2403C11: got '#N/A'Expecting numeric in C2404 / R2404C3: got '#N/A'Expecting numeric in D2404 / R2404C4: got '#N/A'Expecting numeric in E2404 / R2404C5: got '#N/A'Expecting numeric in G2404 / R2404C7: got '#N/A'Expecting numeric in K2404 / R2404C11: got '#N/A'Expecting numeric in C2405 / R2405C3: got '#N/A'Expecting numeric in D2405 / R2405C4: got '#N/A'Expecting numeric in E2405 / R2405C5: got '#N/A'Expecting numeric in G2405 / R2405C7: got '#N/A'Expecting numeric in K2405 / R2405C11: got '#N/A'Expecting numeric in C2406 / R2406C3: got '#N/A'Expecting numeric in D2406 / R2406C4: got '#N/A'Expecting numeric in E2406 / R2406C5: got '#N/A'Expecting numeric in G2406 / R2406C7: got '#N/A'Expecting numeric in K2406 / R2406C11: got '#N/A'Expecting numeric in C2407 / R2407C3: got '#N/A'Expecting numeric in D2407 / R2407C4: got '#N/A'Expecting numeric in E2407 / R2407C5: got '#N/A'Expecting numeric in G2407 / R2407C7: got '#N/A'Expecting numeric in K2407 / R2407C11: got '#N/A'Expecting numeric in C2408 / R2408C3: got '#N/A'Expecting numeric in D2408 / R2408C4: got '#N/A'Expecting numeric in E2408 / R2408C5: got '#N/A'Expecting numeric in G2408 / R2408C7: got '#N/A'Expecting numeric in K2408 / R2408C11: got '#N/A'Expecting numeric in C2409 / R2409C3: got '#N/A'Expecting numeric in D2409 / R2409C4: got '#N/A'Expecting numeric in E2409 / R2409C5: got '#N/A'Expecting numeric in G2409 / R2409C7: got '#N/A'Expecting numeric in K2409 / R2409C11: got '#N/A'Expecting numeric in C2410 / R2410C3: got '#N/A'Expecting numeric in D2410 / R2410C4: got '#N/A'Expecting numeric in E2410 / R2410C5: got '#N/A'Expecting numeric in G2410 / R2410C7: got '#N/A'Expecting numeric in K2410 / R2410C11: got '#N/A'Expecting numeric in C2411 / R2411C3: got '#N/A'Expecting numeric in D2411 / R2411C4: got '#N/A'Expecting numeric in E2411 / R2411C5: got '#N/A'Expecting numeric in G2411 / R2411C7: got '#N/A'Expecting numeric in K2411 / R2411C11: got '#N/A'Expecting numeric in C2412 / R2412C3: got '#N/A'Expecting numeric in D2412 / R2412C4: got '#N/A'Expecting numeric in E2412 / R2412C5: got '#N/A'Expecting numeric in G2412 / R2412C7: got '#N/A'Expecting numeric in K2412 / R2412C11: got '#N/A'Expecting numeric in C2413 / R2413C3: got '#N/A'Expecting numeric in D2413 / R2413C4: got '#N/A'Expecting numeric in E2413 / R2413C5: got '#N/A'Expecting numeric in G2413 / R2413C7: got '#N/A'Expecting numeric in K2413 / R2413C11: got '#N/A'Expecting numeric in C2414 / R2414C3: got '#N/A'Expecting numeric in D2414 / R2414C4: got '#N/A'Expecting numeric in E2414 / R2414C5: got '#N/A'Expecting numeric in G2414 / R2414C7: got '#N/A'Expecting numeric in K2414 / R2414C11: got '#N/A'Expecting numeric in C2415 / R2415C3: got '#N/A'Expecting numeric in D2415 / R2415C4: got '#N/A'Expecting numeric in E2415 / R2415C5: got '#N/A'Expecting numeric in G2415 / R2415C7: got '#N/A'Expecting numeric in K2415 / R2415C11: got '#N/A'Expecting numeric in C2416 / R2416C3: got '#N/A'Expecting numeric in D2416 / R2416C4: got '#N/A'Expecting numeric in E2416 / R2416C5: got '#N/A'Expecting numeric in G2416 / R2416C7: got '#N/A'Expecting numeric in K2416 / R2416C11: got '#N/A'Expecting numeric in C2417 / R2417C3: got '#N/A'Expecting numeric in D2417 / R2417C4: got '#N/A'Expecting numeric in E2417 / R2417C5: got '#N/A'Expecting numeric in G2417 / R2417C7: got '#N/A'Expecting numeric in K2417 / R2417C11: got '#N/A'Expecting numeric in C2418 / R2418C3: got '#N/A'Expecting numeric in D2418 / R2418C4: got '#N/A'Expecting numeric in E2418 / R2418C5: got '#N/A'Expecting numeric in G2418 / R2418C7: got '#N/A'Expecting numeric in K2418 / R2418C11: got '#N/A'Expecting numeric in C2419 / R2419C3: got '#N/A'Expecting numeric in D2419 / R2419C4: got '#N/A'Expecting numeric in E2419 / R2419C5: got '#N/A'Expecting numeric in G2419 / R2419C7: got '#N/A'Expecting numeric in K2419 / R2419C11: got '#N/A'Expecting numeric in C2420 / R2420C3: got '#N/A'Expecting numeric in D2420 / R2420C4: got '#N/A'Expecting numeric in E2420 / R2420C5: got '#N/A'Expecting numeric in G2420 / R2420C7: got '#N/A'Expecting numeric in K2420 / R2420C11: got '#N/A'Expecting numeric in C2421 / R2421C3: got '#N/A'Expecting numeric in D2421 / R2421C4: got '#N/A'Expecting numeric in E2421 / R2421C5: got '#N/A'Expecting numeric in G2421 / R2421C7: got '#N/A'Expecting numeric in K2421 / R2421C11: got '#N/A'Expecting numeric in C2422 / R2422C3: got '#N/A'Expecting numeric in D2422 / R2422C4: got '#N/A'Expecting numeric in E2422 / R2422C5: got '#N/A'Expecting numeric in G2422 / R2422C7: got '#N/A'Expecting numeric in K2422 / R2422C11: got '#N/A'Expecting numeric in C2423 / R2423C3: got '#N/A'Expecting numeric in D2423 / R2423C4: got '#N/A'Expecting numeric in E2423 / R2423C5: got '#N/A'Expecting numeric in G2423 / R2423C7: got '#N/A'Expecting numeric in K2423 / R2423C11: got '#N/A'Expecting numeric in C2424 / R2424C3: got '#N/A'Expecting numeric in D2424 / R2424C4: got '#N/A'Expecting numeric in E2424 / R2424C5: got '#N/A'Expecting numeric in G2424 / R2424C7: got '#N/A'Expecting numeric in K2424 / R2424C11: got '#N/A'Expecting numeric in C2425 / R2425C3: got '#N/A'Expecting numeric in D2425 / R2425C4: got '#N/A'Expecting numeric in E2425 / R2425C5: got '#N/A'Expecting numeric in G2425 / R2425C7: got '#N/A'Expecting numeric in K2425 / R2425C11: got '#N/A'Expecting numeric in C2426 / R2426C3: got '#N/A'Expecting numeric in D2426 / R2426C4: got '#N/A'Expecting numeric in E2426 / R2426C5: got '#N/A'Expecting numeric in G2426 / R2426C7: got '#N/A'Expecting numeric in K2426 / R2426C11: got '#N/A'Expecting numeric in C2427 / R2427C3: got '#N/A'Expecting numeric in D2427 / R2427C4: got '#N/A'Expecting numeric in E2427 / R2427C5: got '#N/A'Expecting numeric in G2427 / R2427C7: got '#N/A'Expecting numeric in K2427 / R2427C11: got '#N/A'Expecting numeric in C2428 / R2428C3: got '#N/A'Expecting numeric in D2428 / R2428C4: got '#N/A'Expecting numeric in E2428 / R2428C5: got '#N/A'Expecting numeric in G2428 / R2428C7: got '#N/A'Expecting numeric in K2428 / R2428C11: got '#N/A'Expecting numeric in C2429 / R2429C3: got '#N/A'Expecting numeric in D2429 / R2429C4: got '#N/A'Expecting numeric in E2429 / R2429C5: got '#N/A'Expecting numeric in G2429 / R2429C7: got '#N/A'Expecting numeric in K2429 / R2429C11: got '#N/A'Expecting numeric in C2430 / R2430C3: got '#N/A'Expecting numeric in D2430 / R2430C4: got '#N/A'Expecting numeric in E2430 / R2430C5: got '#N/A'Expecting numeric in G2430 / R2430C7: got '#N/A'Expecting numeric in K2430 / R2430C11: got '#N/A'Expecting numeric in C2431 / R2431C3: got '#N/A'Expecting numeric in D2431 / R2431C4: got '#N/A'Expecting numeric in E2431 / R2431C5: got '#N/A'Expecting numeric in G2431 / R2431C7: got '#N/A'Expecting numeric in K2431 / R2431C11: got '#N/A'Expecting numeric in C2432 / R2432C3: got '#N/A'Expecting numeric in D2432 / R2432C4: got '#N/A'Expecting numeric in E2432 / R2432C5: got '#N/A'Expecting numeric in G2432 / R2432C7: got '#N/A'Expecting numeric in K2432 / R2432C11: got '#N/A'Expecting numeric in C2433 / R2433C3: got '#N/A'Expecting numeric in D2433 / R2433C4: got '#N/A'Expecting numeric in E2433 / R2433C5: got '#N/A'Expecting numeric in G2433 / R2433C7: got '#N/A'Expecting numeric in K2433 / R2433C11: got '#N/A'Expecting numeric in C2434 / R2434C3: got '#N/A'Expecting numeric in D2434 / R2434C4: got '#N/A'Expecting numeric in E2434 / R2434C5: got '#N/A'Expecting numeric in G2434 / R2434C7: got '#N/A'Expecting numeric in K2434 / R2434C11: got '#N/A'Expecting numeric in C2435 / R2435C3: got '#N/A'Expecting numeric in D2435 / R2435C4: got '#N/A'Expecting numeric in E2435 / R2435C5: got '#N/A'Expecting numeric in G2435 / R2435C7: got '#N/A'Expecting numeric in K2435 / R2435C11: got '#N/A'Expecting numeric in C2436 / R2436C3: got '#N/A'Expecting numeric in D2436 / R2436C4: got '#N/A'Expecting numeric in E2436 / R2436C5: got '#N/A'Expecting numeric in G2436 / R2436C7: got '#N/A'Expecting numeric in K2436 / R2436C11: got '#N/A'Expecting numeric in C2437 / R2437C3: got '#N/A'Expecting numeric in D2437 / R2437C4: got '#N/A'Expecting numeric in E2437 / R2437C5: got '#N/A'Expecting numeric in G2437 / R2437C7: got '#N/A'Expecting numeric in K2437 / R2437C11: got '#N/A'Expecting numeric in C2438 / R2438C3: got '#N/A'Expecting numeric in D2438 / R2438C4: got '#N/A'Expecting numeric in E2438 / R2438C5: got '#N/A'Expecting numeric in G2438 / R2438C7: got '#N/A'Expecting numeric in K2438 / R2438C11: got '#N/A'Expecting numeric in C2439 / R2439C3: got '#N/A'Expecting numeric in D2439 / R2439C4: got '#N/A'Expecting numeric in E2439 / R2439C5: got '#N/A'Expecting numeric in G2439 / R2439C7: got '#N/A'Expecting numeric in K2439 / R2439C11: got '#N/A'Expecting numeric in C2440 / R2440C3: got '#N/A'Expecting numeric in D2440 / R2440C4: got '#N/A'Expecting numeric in E2440 / R2440C5: got '#N/A'Expecting numeric in G2440 / R2440C7: got '#N/A'Expecting numeric in K2440 / R2440C11: got '#N/A'Expecting numeric in C2441 / R2441C3: got '#N/A'Expecting numeric in D2441 / R2441C4: got '#N/A'Expecting numeric in E2441 / R2441C5: got '#N/A'Expecting numeric in G2441 / R2441C7: got '#N/A'Expecting numeric in K2441 / R2441C11: got '#N/A'Expecting numeric in C2442 / R2442C3: got '#N/A'Expecting numeric in D2442 / R2442C4: got '#N/A'Expecting numeric in E2442 / R2442C5: got '#N/A'Expecting numeric in G2442 / R2442C7: got '#N/A'Expecting numeric in K2442 / R2442C11: got '#N/A'Expecting numeric in C2443 / R2443C3: got '#N/A'Expecting numeric in D2443 / R2443C4: got '#N/A'Expecting numeric in E2443 / R2443C5: got '#N/A'Expecting numeric in G2443 / R2443C7: got '#N/A'Expecting numeric in K2443 / R2443C11: got '#N/A'Expecting numeric in C2444 / R2444C3: got '#N/A'Expecting numeric in D2444 / R2444C4: got '#N/A'Expecting numeric in E2444 / R2444C5: got '#N/A'Expecting numeric in G2444 / R2444C7: got '#N/A'Expecting numeric in K2444 / R2444C11: got '#N/A'Expecting numeric in C2445 / R2445C3: got '#N/A'Expecting numeric in D2445 / R2445C4: got '#N/A'Expecting numeric in E2445 / R2445C5: got '#N/A'Expecting numeric in G2445 / R2445C7: got '#N/A'Expecting numeric in K2445 / R2445C11: got '#N/A'Expecting numeric in C2446 / R2446C3: got '#N/A'Expecting numeric in D2446 / R2446C4: got '#N/A'Expecting numeric in E2446 / R2446C5: got '#N/A'Expecting numeric in G2446 / R2446C7: got '#N/A'Expecting numeric in K2446 / R2446C11: got '#N/A'Expecting numeric in C2447 / R2447C3: got '#N/A'Expecting numeric in D2447 / R2447C4: got '#N/A'Expecting numeric in E2447 / R2447C5: got '#N/A'Expecting numeric in G2447 / R2447C7: got '#N/A'Expecting numeric in K2447 / R2447C11: got '#N/A'Expecting numeric in C2448 / R2448C3: got '#N/A'Expecting numeric in D2448 / R2448C4: got '#N/A'Expecting numeric in E2448 / R2448C5: got '#N/A'Expecting numeric in G2448 / R2448C7: got '#N/A'Expecting numeric in K2448 / R2448C11: got '#N/A'Expecting numeric in C2449 / R2449C3: got '#N/A'Expecting numeric in D2449 / R2449C4: got '#N/A'Expecting numeric in E2449 / R2449C5: got '#N/A'Expecting numeric in G2449 / R2449C7: got '#N/A'Expecting numeric in K2449 / R2449C11: got '#N/A'Expecting numeric in C2450 / R2450C3: got '#N/A'Expecting numeric in D2450 / R2450C4: got '#N/A'Expecting numeric in E2450 / R2450C5: got '#N/A'Expecting numeric in G2450 / R2450C7: got '#N/A'Expecting numeric in K2450 / R2450C11: got '#N/A'Expecting numeric in C2451 / R2451C3: got '#N/A'Expecting numeric in D2451 / R2451C4: got '#N/A'Expecting numeric in E2451 / R2451C5: got '#N/A'Expecting numeric in G2451 / R2451C7: got '#N/A'Expecting numeric in K2451 / R2451C11: got '#N/A'Expecting numeric in C2452 / R2452C3: got '#N/A'Expecting numeric in D2452 / R2452C4: got '#N/A'Expecting numeric in E2452 / R2452C5: got '#N/A'Expecting numeric in G2452 / R2452C7: got '#N/A'Expecting numeric in K2452 / R2452C11: got '#N/A'Expecting numeric in C2453 / R2453C3: got '#N/A'Expecting numeric in D2453 / R2453C4: got '#N/A'Expecting numeric in E2453 / R2453C5: got '#N/A'Expecting numeric in G2453 / R2453C7: got '#N/A'Expecting numeric in K2453 / R2453C11: got '#N/A'Expecting numeric in C2454 / R2454C3: got '#N/A'Expecting numeric in D2454 / R2454C4: got '#N/A'Expecting numeric in E2454 / R2454C5: got '#N/A'Expecting numeric in G2454 / R2454C7: got '#N/A'Expecting numeric in K2454 / R2454C11: got '#N/A'Expecting numeric in C2455 / R2455C3: got '#N/A'Expecting numeric in D2455 / R2455C4: got '#N/A'Expecting numeric in E2455 / R2455C5: got '#N/A'Expecting numeric in G2455 / R2455C7: got '#N/A'Expecting numeric in K2455 / R2455C11: got '#N/A'Expecting numeric in C2456 / R2456C3: got '#N/A'Expecting numeric in D2456 / R2456C4: got '#N/A'Expecting numeric in E2456 / R2456C5: got '#N/A'Expecting numeric in G2456 / R2456C7: got '#N/A'Expecting numeric in K2456 / R2456C11: got '#N/A'Expecting numeric in C2457 / R2457C3: got '#N/A'Expecting numeric in D2457 / R2457C4: got '#N/A'Expecting numeric in E2457 / R2457C5: got '#N/A'Expecting numeric in G2457 / R2457C7: got '#N/A'Expecting numeric in K2457 / R2457C11: got '#N/A'Expecting numeric in C2458 / R2458C3: got '#N/A'Expecting numeric in D2458 / R2458C4: got '#N/A'Expecting numeric in E2458 / R2458C5: got '#N/A'Expecting numeric in G2458 / R2458C7: got '#N/A'Expecting numeric in K2458 / R2458C11: got '#N/A'Expecting numeric in C2459 / R2459C3: got '#N/A'Expecting numeric in D2459 / R2459C4: got '#N/A'Expecting numeric in E2459 / R2459C5: got '#N/A'Expecting numeric in G2459 / R2459C7: got '#N/A'Expecting numeric in K2459 / R2459C11: got '#N/A'Expecting numeric in C2460 / R2460C3: got '#N/A'Expecting numeric in D2460 / R2460C4: got '#N/A'Expecting numeric in E2460 / R2460C5: got '#N/A'Expecting numeric in G2460 / R2460C7: got '#N/A'Expecting numeric in K2460 / R2460C11: got '#N/A'Expecting numeric in C2461 / R2461C3: got '#N/A'Expecting numeric in D2461 / R2461C4: got '#N/A'Expecting numeric in E2461 / R2461C5: got '#N/A'Expecting numeric in G2461 / R2461C7: got '#N/A'Expecting numeric in K2461 / R2461C11: got '#N/A'Expecting numeric in C2462 / R2462C3: got '#N/A'Expecting numeric in D2462 / R2462C4: got '#N/A'Expecting numeric in E2462 / R2462C5: got '#N/A'Expecting numeric in G2462 / R2462C7: got '#N/A'Expecting numeric in K2462 / R2462C11: got '#N/A'Expecting numeric in C2463 / R2463C3: got '#N/A'Expecting numeric in D2463 / R2463C4: got '#N/A'Expecting numeric in E2463 / R2463C5: got '#N/A'Expecting numeric in G2463 / R2463C7: got '#N/A'Expecting numeric in K2463 / R2463C11: got '#N/A'Expecting numeric in C2464 / R2464C3: got '#N/A'Expecting numeric in D2464 / R2464C4: got '#N/A'Expecting numeric in E2464 / R2464C5: got '#N/A'Expecting numeric in G2464 / R2464C7: got '#N/A'Expecting numeric in K2464 / R2464C11: got '#N/A'Expecting numeric in C2465 / R2465C3: got '#N/A'Expecting numeric in D2465 / R2465C4: got '#N/A'Expecting numeric in E2465 / R2465C5: got '#N/A'Expecting numeric in G2465 / R2465C7: got '#N/A'Expecting numeric in K2465 / R2465C11: got '#N/A'Expecting numeric in C2466 / R2466C3: got '#N/A'Expecting numeric in D2466 / R2466C4: got '#N/A'Expecting numeric in E2466 / R2466C5: got '#N/A'Expecting numeric in G2466 / R2466C7: got '#N/A'Expecting numeric in K2466 / R2466C11: got '#N/A'Expecting numeric in C2467 / R2467C3: got '#N/A'Expecting numeric in D2467 / R2467C4: got '#N/A'Expecting numeric in E2467 / R2467C5: got '#N/A'Expecting numeric in G2467 / R2467C7: got '#N/A'Expecting numeric in K2467 / R2467C11: got '#N/A'Expecting numeric in C2468 / R2468C3: got '#N/A'Expecting numeric in D2468 / R2468C4: got '#N/A'Expecting numeric in E2468 / R2468C5: got '#N/A'Expecting numeric in G2468 / R2468C7: got '#N/A'Expecting numeric in K2468 / R2468C11: got '#N/A'Expecting numeric in C2469 / R2469C3: got '#N/A'Expecting numeric in D2469 / R2469C4: got '#N/A'Expecting numeric in E2469 / R2469C5: got '#N/A'Expecting numeric in G2469 / R2469C7: got '#N/A'Expecting numeric in K2469 / R2469C11: got '#N/A'Expecting numeric in C2470 / R2470C3: got '#N/A'Expecting numeric in D2470 / R2470C4: got '#N/A'Expecting numeric in E2470 / R2470C5: got '#N/A'Expecting numeric in G2470 / R2470C7: got '#N/A'Expecting numeric in K2470 / R2470C11: got '#N/A'Expecting numeric in C2471 / R2471C3: got '#N/A'Expecting numeric in D2471 / R2471C4: got '#N/A'Expecting numeric in E2471 / R2471C5: got '#N/A'Expecting numeric in G2471 / R2471C7: got '#N/A'Expecting numeric in K2471 / R2471C11: got '#N/A'Expecting numeric in C2472 / R2472C3: got '#N/A'Expecting numeric in D2472 / R2472C4: got '#N/A'Expecting numeric in E2472 / R2472C5: got '#N/A'Expecting numeric in G2472 / R2472C7: got '#N/A'Expecting numeric in K2472 / R2472C11: got '#N/A'Expecting numeric in C2473 / R2473C3: got '#N/A'Expecting numeric in D2473 / R2473C4: got '#N/A'Expecting numeric in E2473 / R2473C5: got '#N/A'Expecting numeric in G2473 / R2473C7: got '#N/A'Expecting numeric in K2473 / R2473C11: got '#N/A'Expecting numeric in C2474 / R2474C3: got '#N/A'Expecting numeric in D2474 / R2474C4: got '#N/A'Expecting numeric in E2474 / R2474C5: got '#N/A'Expecting numeric in G2474 / R2474C7: got '#N/A'Expecting numeric in K2474 / R2474C11: got '#N/A'Expecting numeric in C2475 / R2475C3: got '#N/A'Expecting numeric in D2475 / R2475C4: got '#N/A'Expecting numeric in E2475 / R2475C5: got '#N/A'Expecting numeric in G2475 / R2475C7: got '#N/A'Expecting numeric in K2475 / R2475C11: got '#N/A'Expecting numeric in C2476 / R2476C3: got '#N/A'Expecting numeric in D2476 / R2476C4: got '#N/A'Expecting numeric in E2476 / R2476C5: got '#N/A'Expecting numeric in G2476 / R2476C7: got '#N/A'Expecting numeric in K2476 / R2476C11: got '#N/A'Expecting numeric in C2477 / R2477C3: got '#N/A'Expecting numeric in D2477 / R2477C4: got '#N/A'Expecting numeric in E2477 / R2477C5: got '#N/A'Expecting numeric in G2477 / R2477C7: got '#N/A'Expecting numeric in K2477 / R2477C11: got '#N/A'Expecting numeric in C2478 / R2478C3: got '#N/A'Expecting numeric in D2478 / R2478C4: got '#N/A'Expecting numeric in E2478 / R2478C5: got '#N/A'Expecting numeric in G2478 / R2478C7: got '#N/A'Expecting numeric in K2478 / R2478C11: got '#N/A'Expecting numeric in C2479 / R2479C3: got '#N/A'Expecting numeric in D2479 / R2479C4: got '#N/A'Expecting numeric in E2479 / R2479C5: got '#N/A'Expecting numeric in G2479 / R2479C7: got '#N/A'Expecting numeric in K2479 / R2479C11: got '#N/A'Expecting numeric in C2480 / R2480C3: got '#N/A'Expecting numeric in D2480 / R2480C4: got '#N/A'Expecting numeric in E2480 / R2480C5: got '#N/A'Expecting numeric in G2480 / R2480C7: got '#N/A'Expecting numeric in K2480 / R2480C11: got '#N/A'Expecting numeric in C2481 / R2481C3: got '#N/A'Expecting numeric in D2481 / R2481C4: got '#N/A'Expecting numeric in E2481 / R2481C5: got '#N/A'Expecting numeric in G2481 / R2481C7: got '#N/A'Expecting numeric in K2481 / R2481C11: got '#N/A'Expecting numeric in C2482 / R2482C3: got '#N/A'Expecting numeric in D2482 / R2482C4: got '#N/A'Expecting numeric in E2482 / R2482C5: got '#N/A'Expecting numeric in G2482 / R2482C7: got '#N/A'Expecting numeric in K2482 / R2482C11: got '#N/A'Expecting numeric in C2483 / R2483C3: got '#N/A'Expecting numeric in D2483 / R2483C4: got '#N/A'Expecting numeric in E2483 / R2483C5: got '#N/A'Expecting numeric in G2483 / R2483C7: got '#N/A'Expecting numeric in K2483 / R2483C11: got '#N/A'Expecting numeric in C2484 / R2484C3: got '#N/A'Expecting numeric in D2484 / R2484C4: got '#N/A'Expecting numeric in E2484 / R2484C5: got '#N/A'Expecting numeric in G2484 / R2484C7: got '#N/A'Expecting numeric in K2484 / R2484C11: got '#N/A'Expecting numeric in C2485 / R2485C3: got '#N/A'Expecting numeric in D2485 / R2485C4: got '#N/A'Expecting numeric in E2485 / R2485C5: got '#N/A'Expecting numeric in G2485 / R2485C7: got '#N/A'Expecting numeric in K2485 / R2485C11: got '#N/A'Expecting numeric in C2486 / R2486C3: got '#N/A'Expecting numeric in D2486 / R2486C4: got '#N/A'Expecting numeric in E2486 / R2486C5: got '#N/A'Expecting numeric in G2486 / R2486C7: got '#N/A'Expecting numeric in K2486 / R2486C11: got '#N/A'Expecting numeric in C2487 / R2487C3: got '#N/A'Expecting numeric in D2487 / R2487C4: got '#N/A'Expecting numeric in E2487 / R2487C5: got '#N/A'Expecting numeric in G2487 / R2487C7: got '#N/A'Expecting numeric in K2487 / R2487C11: got '#N/A'Expecting numeric in C2488 / R2488C3: got '#N/A'Expecting numeric in D2488 / R2488C4: got '#N/A'Expecting numeric in E2488 / R2488C5: got '#N/A'Expecting numeric in G2488 / R2488C7: got '#N/A'Expecting numeric in K2488 / R2488C11: got '#N/A'Expecting numeric in C2489 / R2489C3: got '#N/A'Expecting numeric in D2489 / R2489C4: got '#N/A'Expecting numeric in E2489 / R2489C5: got '#N/A'Expecting numeric in G2489 / R2489C7: got '#N/A'Expecting numeric in K2489 / R2489C11: got '#N/A'Expecting numeric in C2490 / R2490C3: got '#N/A'Expecting numeric in D2490 / R2490C4: got '#N/A'Expecting numeric in E2490 / R2490C5: got '#N/A'Expecting numeric in G2490 / R2490C7: got '#N/A'Expecting numeric in K2490 / R2490C11: got '#N/A'Expecting numeric in C2491 / R2491C3: got '#N/A'Expecting numeric in D2491 / R2491C4: got '#N/A'Expecting numeric in E2491 / R2491C5: got '#N/A'Expecting numeric in G2491 / R2491C7: got '#N/A'Expecting numeric in K2491 / R2491C11: got '#N/A'Expecting numeric in C2492 / R2492C3: got '#N/A'Expecting numeric in D2492 / R2492C4: got '#N/A'Expecting numeric in E2492 / R2492C5: got '#N/A'Expecting numeric in G2492 / R2492C7: got '#N/A'Expecting numeric in K2492 / R2492C11: got '#N/A'Expecting numeric in C2493 / R2493C3: got '#N/A'Expecting numeric in D2493 / R2493C4: got '#N/A'Expecting numeric in E2493 / R2493C5: got '#N/A'Expecting numeric in G2493 / R2493C7: got '#N/A'Expecting numeric in K2493 / R2493C11: got '#N/A'Expecting numeric in C2494 / R2494C3: got '#N/A'Expecting numeric in D2494 / R2494C4: got '#N/A'Expecting numeric in E2494 / R2494C5: got '#N/A'Expecting numeric in G2494 / R2494C7: got '#N/A'Expecting numeric in K2494 / R2494C11: got '#N/A'Expecting numeric in C2495 / R2495C3: got '#N/A'Expecting numeric in D2495 / R2495C4: got '#N/A'Expecting numeric in E2495 / R2495C5: got '#N/A'Expecting numeric in G2495 / R2495C7: got '#N/A'Expecting numeric in K2495 / R2495C11: got '#N/A'Expecting numeric in C2496 / R2496C3: got '#N/A'Expecting numeric in D2496 / R2496C4: got '#N/A'Expecting numeric in E2496 / R2496C5: got '#N/A'Expecting numeric in G2496 / R2496C7: got '#N/A'Expecting numeric in K2496 / R2496C11: got '#N/A'Expecting numeric in C2497 / R2497C3: got '#N/A'Expecting numeric in D2497 / R2497C4: got '#N/A'Expecting numeric in E2497 / R2497C5: got '#N/A'Expecting numeric in G2497 / R2497C7: got '#N/A'Expecting numeric in K2497 / R2497C11: got '#N/A'Expecting numeric in C2498 / R2498C3: got '#N/A'Expecting numeric in D2498 / R2498C4: got '#N/A'Expecting numeric in E2498 / R2498C5: got '#N/A'Expecting numeric in G2498 / R2498C7: got '#N/A'Expecting numeric in K2498 / R2498C11: got '#N/A'Expecting numeric in C2499 / R2499C3: got '#N/A'Expecting numeric in D2499 / R2499C4: got '#N/A'Expecting numeric in E2499 / R2499C5: got '#N/A'Expecting numeric in G2499 / R2499C7: got '#N/A'Expecting numeric in K2499 / R2499C11: got '#N/A'Expecting numeric in C2500 / R2500C3: got '#N/A'Expecting numeric in D2500 / R2500C4: got '#N/A'Expecting numeric in E2500 / R2500C5: got '#N/A'Expecting numeric in G2500 / R2500C7: got '#N/A'Expecting numeric in K2500 / R2500C11: got '#N/A'Expecting numeric in C2501 / R2501C3: got '#N/A'Expecting numeric in D2501 / R2501C4: got '#N/A'Expecting numeric in E2501 / R2501C5: got '#N/A'Expecting numeric in G2501 / R2501C7: got '#N/A'Expecting numeric in K2501 / R2501C11: got '#N/A'Expecting numeric in C2502 / R2502C3: got '#N/A'Expecting numeric in D2502 / R2502C4: got '#N/A'Expecting numeric in E2502 / R2502C5: got '#N/A'Expecting numeric in G2502 / R2502C7: got '#N/A'Expecting numeric in K2502 / R2502C11: got '#N/A'Expecting numeric in C2503 / R2503C3: got '#N/A'Expecting numeric in D2503 / R2503C4: got '#N/A'Expecting numeric in E2503 / R2503C5: got '#N/A'Expecting numeric in G2503 / R2503C7: got '#N/A'Expecting numeric in K2503 / R2503C11: got '#N/A'Expecting numeric in C2504 / R2504C3: got '#N/A'Expecting numeric in D2504 / R2504C4: got '#N/A'Expecting numeric in E2504 / R2504C5: got '#N/A'Expecting numeric in G2504 / R2504C7: got '#N/A'Expecting numeric in K2504 / R2504C11: got '#N/A'Expecting numeric in C2505 / R2505C3: got '#N/A'Expecting numeric in D2505 / R2505C4: got '#N/A'Expecting numeric in E2505 / R2505C5: got '#N/A'Expecting numeric in G2505 / R2505C7: got '#N/A'Expecting numeric in K2505 / R2505C11: got '#N/A'Expecting numeric in C2506 / R2506C3: got '#N/A'Expecting numeric in D2506 / R2506C4: got '#N/A'Expecting numeric in E2506 / R2506C5: got '#N/A'Expecting numeric in G2506 / R2506C7: got '#N/A'Expecting numeric in K2506 / R2506C11: got '#N/A'Expecting numeric in C2507 / R2507C3: got '#N/A'Expecting numeric in D2507 / R2507C4: got '#N/A'Expecting numeric in E2507 / R2507C5: got '#N/A'Expecting numeric in G2507 / R2507C7: got '#N/A'Expecting numeric in K2507 / R2507C11: got '#N/A'Expecting numeric in C2508 / R2508C3: got '#N/A'Expecting numeric in D2508 / R2508C4: got '#N/A'Expecting numeric in E2508 / R2508C5: got '#N/A'Expecting numeric in G2508 / R2508C7: got '#N/A'Expecting numeric in K2508 / R2508C11: got '#N/A'Expecting numeric in C2509 / R2509C3: got '#N/A'Expecting numeric in D2509 / R2509C4: got '#N/A'Expecting numeric in E2509 / R2509C5: got '#N/A'Expecting numeric in G2509 / R2509C7: got '#N/A'Expecting numeric in K2509 / R2509C11: got '#N/A'Expecting numeric in C2510 / R2510C3: got '#N/A'Expecting numeric in D2510 / R2510C4: got '#N/A'Expecting numeric in E2510 / R2510C5: got '#N/A'Expecting numeric in G2510 / R2510C7: got '#N/A'Expecting numeric in K2510 / R2510C11: got '#N/A'Expecting numeric in C2511 / R2511C3: got '#N/A'Expecting numeric in D2511 / R2511C4: got '#N/A'Expecting numeric in E2511 / R2511C5: got '#N/A'Expecting numeric in G2511 / R2511C7: got '#N/A'Expecting numeric in K2511 / R2511C11: got '#N/A'Expecting numeric in C2512 / R2512C3: got '#N/A'Expecting numeric in D2512 / R2512C4: got '#N/A'Expecting numeric in E2512 / R2512C5: got '#N/A'Expecting numeric in G2512 / R2512C7: got '#N/A'Expecting numeric in K2512 / R2512C11: got '#N/A'Expecting numeric in C2513 / R2513C3: got '#N/A'Expecting numeric in D2513 / R2513C4: got '#N/A'Expecting numeric in E2513 / R2513C5: got '#N/A'Expecting numeric in K2513 / R2513C11: got '#N/A'Expecting numeric in C2514 / R2514C3: got '#N/A'Expecting numeric in D2514 / R2514C4: got '#N/A'Expecting numeric in E2514 / R2514C5: got '#N/A'Expecting numeric in K2514 / R2514C11: got '#N/A'Expecting numeric in C2515 / R2515C3: got '#N/A'Expecting numeric in D2515 / R2515C4: got '#N/A'Expecting numeric in E2515 / R2515C5: got '#N/A'Expecting numeric in K2515 / R2515C11: got '#N/A'Expecting numeric in C2516 / R2516C3: got '#N/A'Expecting numeric in D2516 / R2516C4: got '#N/A'Expecting numeric in E2516 / R2516C5: got '#N/A'Expecting numeric in K2516 / R2516C11: got '#N/A'Expecting numeric in C2517 / R2517C3: got '#N/A'Expecting numeric in D2517 / R2517C4: got '#N/A'Expecting numeric in E2517 / R2517C5: got '#N/A'Expecting numeric in K2517 / R2517C11: got '#N/A'Expecting numeric in C2518 / R2518C3: got '#N/A'Expecting numeric in D2518 / R2518C4: got '#N/A'Expecting numeric in E2518 / R2518C5: got '#N/A'Expecting numeric in K2518 / R2518C11: got '#N/A'Expecting numeric in C2519 / R2519C3: got '#N/A'Expecting numeric in D2519 / R2519C4: got '#N/A'Expecting numeric in E2519 / R2519C5: got '#N/A'Expecting numeric in K2519 / R2519C11: got '#N/A'Expecting numeric in C2520 / R2520C3: got '#N/A'Expecting numeric in D2520 / R2520C4: got '#N/A'Expecting numeric in E2520 / R2520C5: got '#N/A'Expecting numeric in K2520 / R2520C11: got '#N/A'Expecting numeric in C2521 / R2521C3: got '#N/A'Expecting numeric in D2521 / R2521C4: got '#N/A'Expecting numeric in E2521 / R2521C5: got '#N/A'Expecting numeric in K2521 / R2521C11: got '#N/A'Expecting numeric in C2522 / R2522C3: got '#N/A'Expecting numeric in D2522 / R2522C4: got '#N/A'Expecting numeric in E2522 / R2522C5: got '#N/A'Expecting numeric in K2522 / R2522C11: got '#N/A'Expecting numeric in C2523 / R2523C3: got '#N/A'Expecting numeric in D2523 / R2523C4: got '#N/A'Expecting numeric in E2523 / R2523C5: got '#N/A'Expecting numeric in K2523 / R2523C11: got '#N/A'Expecting numeric in C2524 / R2524C3: got '#N/A'Expecting numeric in D2524 / R2524C4: got '#N/A'Expecting numeric in E2524 / R2524C5: got '#N/A'Expecting numeric in K2524 / R2524C11: got '#N/A'Expecting numeric in C2525 / R2525C3: got '#N/A'Expecting numeric in D2525 / R2525C4: got '#N/A'Expecting numeric in E2525 / R2525C5: got '#N/A'Expecting numeric in K2525 / R2525C11: got '#N/A'Expecting numeric in C2526 / R2526C3: got '#N/A'Expecting numeric in D2526 / R2526C4: got '#N/A'Expecting numeric in E2526 / R2526C5: got '#N/A'Expecting numeric in K2526 / R2526C11: got '#N/A'Expecting numeric in D2527 / R2527C4: got '#N/A'Expecting numeric in E2527 / R2527C5: got '#N/A'Expecting numeric in K2527 / R2527C11: got '#N/A'Expecting numeric in D2528 / R2528C4: got '#N/A'Expecting numeric in E2528 / R2528C5: got '#N/A'Expecting numeric in K2528 / R2528C11: got '#N/A'Expecting numeric in D2529 / R2529C4: got '#N/A'Expecting numeric in E2529 / R2529C5: got '#N/A'Expecting numeric in K2529 / R2529C11: got '#N/A'Expecting numeric in D2530 / R2530C4: got '#N/A'Expecting numeric in E2530 / R2530C5: got '#N/A'Expecting numeric in K2530 / R2530C11: got '#N/A'Expecting numeric in D2531 / R2531C4: got '#N/A'Expecting numeric in E2531 / R2531C5: got '#N/A'Expecting numeric in K2531 / R2531C11: got '#N/A'Expecting numeric in D2532 / R2532C4: got '#N/A'Expecting numeric in E2532 / R2532C5: got '#N/A'Expecting numeric in K2532 / R2532C11: got '#N/A'Expecting numeric in D2533 / R2533C4: got '#N/A'Expecting numeric in E2533 / R2533C5: got '#N/A'Expecting numeric in K2533 / R2533C11: got '#N/A'Expecting numeric in D2534 / R2534C4: got '#N/A'Expecting numeric in E2534 / R2534C5: got '#N/A'Expecting numeric in K2534 / R2534C11: got '#N/A'Expecting numeric in D2535 / R2535C4: got '#N/A'Expecting numeric in K2535 / R2535C11: got '#N/A'Expecting numeric in D2536 / R2536C4: got '#N/A'Expecting numeric in K2536 / R2536C11: got '#N/A'Expecting numeric in D2537 / R2537C4: got '#N/A'Expecting numeric in K2537 / R2537C11: got '#N/A'Expecting numeric in D2538 / R2538C4: got '#N/A'Expecting numeric in K2538 / R2538C11: got '#N/A'Expecting numeric in D2539 / R2539C4: got '#N/A'Expecting numeric in K2539 / R2539C11: got '#N/A'Expecting numeric in D2540 / R2540C4: got '#N/A'Expecting numeric in K2540 / R2540C11: got '#N/A'Expecting numeric in D2541 / R2541C4: got '#N/A'Expecting numeric in K2541 / R2541C11: got '#N/A'Expecting numeric in D2542 / R2542C4: got '#N/A'Expecting numeric in K2542 / R2542C11: got '#N/A'Expecting numeric in D2543 / R2543C4: got '#N/A'Expecting numeric in K2543 / R2543C11: got '#N/A'Expecting numeric in D2544 / R2544C4: got '#N/A'Expecting numeric in K2544 / R2544C11: got '#N/A'Expecting numeric in D2545 / R2545C4: got '#N/A'Expecting numeric in K2545 / R2545C11: got '#N/A'Expecting numeric in D2546 / R2546C4: got '#N/A'Expecting numeric in K2546 / R2546C11: got '#N/A'Expecting numeric in D2547 / R2547C4: got '#N/A'Expecting numeric in K2547 / R2547C11: got '#N/A'Expecting numeric in D2548 / R2548C4: got '#N/A'Expecting numeric in K2548 / R2548C11: got '#N/A'Expecting numeric in D2549 / R2549C4: got '#N/A'Expecting numeric in K2549 / R2549C11: got '#N/A'Expecting numeric in D2550 / R2550C4: got '#N/A'Expecting numeric in K2550 / R2550C11: got '#N/A'Expecting numeric in D2551 / R2551C4: got '#N/A'Expecting numeric in K2551 / R2551C11: got '#N/A'Expecting numeric in D2552 / R2552C4: got '#N/A'Expecting numeric in K2552 / R2552C11: got '#N/A'Expecting numeric in D2553 / R2553C4: got '#N/A'Expecting numeric in K2553 / R2553C11: got '#N/A'Expecting numeric in D2554 / R2554C4: got '#N/A'Expecting numeric in K2554 / R2554C11: got '#N/A'Expecting numeric in D2555 / R2555C4: got '#N/A'Expecting numeric in K2555 / R2555C11: got '#N/A'Expecting numeric in D2556 / R2556C4: got '#N/A'Expecting numeric in K2556 / R2556C11: got '#N/A'Expecting numeric in D2557 / R2557C4: got '#N/A'Expecting numeric in K2557 / R2557C11: got '#N/A'Expecting numeric in D2558 / R2558C4: got '#N/A'Expecting numeric in K2558 / R2558C11: got '#N/A'Expecting numeric in D2559 / R2559C4: got '#N/A'Expecting numeric in B2 / R2C2: got '#N/A'Expecting numeric in E2 / R2C5: got '#N/A'Expecting numeric in G2 / R2C7: got '#N/A'Expecting numeric in L2 / R2C12: got '#N/A'Expecting numeric in B3 / R3C2: got '#N/A'Expecting numeric in E3 / R3C5: got '#N/A'Expecting numeric in G3 / R3C7: got '#N/A'Expecting numeric in L3 / R3C12: got '#N/A'Expecting numeric in B4 / R4C2: got '#N/A'Expecting numeric in E4 / R4C5: got '#N/A'Expecting numeric in G4 / R4C7: got '#N/A'Expecting numeric in L4 / R4C12: got '#N/A'Expecting numeric in B5 / R5C2: got '#N/A'Expecting numeric in E5 / R5C5: got '#N/A'Expecting numeric in G5 / R5C7: got '#N/A'Expecting numeric in L5 / R5C12: got '#N/A'Expecting numeric in B6 / R6C2: got '#N/A'Expecting numeric in E6 / R6C5: got '#N/A'Expecting numeric in G6 / R6C7: got '#N/A'Expecting numeric in L6 / R6C12: got '#N/A'Expecting numeric in B7 / R7C2: got '#N/A'Expecting numeric in E7 / R7C5: got '#N/A'Expecting numeric in G7 / R7C7: got '#N/A'Expecting numeric in L7 / R7C12: got '#N/A'Expecting numeric in B8 / R8C2: got '#N/A'Expecting numeric in E8 / R8C5: got '#N/A'Expecting numeric in G8 / R8C7: got '#N/A'Expecting numeric in L8 / R8C12: got '#N/A'Expecting numeric in B9 / R9C2: got '#N/A'Expecting numeric in E9 / R9C5: got '#N/A'Expecting numeric in G9 / R9C7: got '#N/A'Expecting numeric in L9 / R9C12: got '#N/A'Expecting numeric in B10 / R10C2: got '#N/A'Expecting numeric in E10 / R10C5: got '#N/A'Expecting numeric in G10 / R10C7: got '#N/A'Expecting numeric in L10 / R10C12: got '#N/A'Expecting numeric in B11 / R11C2: got '#N/A'Expecting numeric in E11 / R11C5: got '#N/A'Expecting numeric in G11 / R11C7: got '#N/A'Expecting numeric in L11 / R11C12: got '#N/A'Expecting numeric in B12 / R12C2: got '#N/A'Expecting numeric in E12 / R12C5: got '#N/A'Expecting numeric in G12 / R12C7: got '#N/A'Expecting numeric in L12 / R12C12: got '#N/A'Expecting numeric in B13 / R13C2: got '#N/A'Expecting numeric in E13 / R13C5: got '#N/A'Expecting numeric in G13 / R13C7: got '#N/A'Expecting numeric in L13 / R13C12: got '#N/A'Expecting numeric in B14 / R14C2: got '#N/A'Expecting numeric in E14 / R14C5: got '#N/A'Expecting numeric in G14 / R14C7: got '#N/A'Expecting numeric in L14 / R14C12: got '#N/A'Expecting numeric in B15 / R15C2: got '#N/A'Expecting numeric in E15 / R15C5: got '#N/A'Expecting numeric in G15 / R15C7: got '#N/A'Expecting numeric in L15 / R15C12: got '#N/A'Expecting numeric in B16 / R16C2: got '#N/A'Expecting numeric in E16 / R16C5: got '#N/A'Expecting numeric in G16 / R16C7: got '#N/A'Expecting numeric in L16 / R16C12: got '#N/A'Expecting numeric in B17 / R17C2: got '#N/A'Expecting numeric in E17 / R17C5: got '#N/A'Expecting numeric in G17 / R17C7: got '#N/A'Expecting numeric in L17 / R17C12: got '#N/A'Expecting numeric in B18 / R18C2: got '#N/A'Expecting numeric in E18 / R18C5: got '#N/A'Expecting numeric in G18 / R18C7: got '#N/A'Expecting numeric in L18 / R18C12: got '#N/A'Expecting numeric in B19 / R19C2: got '#N/A'Expecting numeric in E19 / R19C5: got '#N/A'Expecting numeric in G19 / R19C7: got '#N/A'Expecting numeric in L19 / R19C12: got '#N/A'Expecting numeric in B20 / R20C2: got '#N/A'Expecting numeric in E20 / R20C5: got '#N/A'Expecting numeric in G20 / R20C7: got '#N/A'Expecting numeric in L20 / R20C12: got '#N/A'Expecting numeric in B21 / R21C2: got '#N/A'Expecting numeric in E21 / R21C5: got '#N/A'Expecting numeric in G21 / R21C7: got '#N/A'Expecting numeric in L21 / R21C12: got '#N/A'Expecting numeric in B22 / R22C2: got '#N/A'Expecting numeric in E22 / R22C5: got '#N/A'Expecting numeric in G22 / R22C7: got '#N/A'Expecting numeric in L22 / R22C12: got '#N/A'Expecting numeric in B23 / R23C2: got '#N/A'Expecting numeric in E23 / R23C5: got '#N/A'Expecting numeric in G23 / R23C7: got '#N/A'Expecting numeric in L23 / R23C12: got '#N/A'Expecting numeric in B24 / R24C2: got '#N/A'Expecting numeric in E24 / R24C5: got '#N/A'Expecting numeric in G24 / R24C7: got '#N/A'Expecting numeric in L24 / R24C12: got '#N/A'Expecting numeric in B25 / R25C2: got '#N/A'Expecting numeric in E25 / R25C5: got '#N/A'Expecting numeric in G25 / R25C7: got '#N/A'Expecting numeric in L25 / R25C12: got '#N/A'Expecting numeric in B26 / R26C2: got '#N/A'Expecting numeric in E26 / R26C5: got '#N/A'Expecting numeric in G26 / R26C7: got '#N/A'Expecting numeric in L26 / R26C12: got '#N/A'Expecting numeric in B27 / R27C2: got '#N/A'Expecting numeric in E27 / R27C5: got '#N/A'Expecting numeric in G27 / R27C7: got '#N/A'Expecting numeric in L27 / R27C12: got '#N/A'Expecting numeric in B28 / R28C2: got '#N/A'Expecting numeric in E28 / R28C5: got '#N/A'Expecting numeric in G28 / R28C7: got '#N/A'Expecting numeric in L28 / R28C12: got '#N/A'Expecting numeric in B29 / R29C2: got '#N/A'Expecting numeric in E29 / R29C5: got '#N/A'Expecting numeric in G29 / R29C7: got '#N/A'Expecting numeric in L29 / R29C12: got '#N/A'Expecting numeric in B30 / R30C2: got '#N/A'Expecting numeric in E30 / R30C5: got '#N/A'Expecting numeric in G30 / R30C7: got '#N/A'Expecting numeric in L30 / R30C12: got '#N/A'Expecting numeric in B31 / R31C2: got '#N/A'Expecting numeric in E31 / R31C5: got '#N/A'Expecting numeric in G31 / R31C7: got '#N/A'Expecting numeric in L31 / R31C12: got '#N/A'Expecting numeric in B32 / R32C2: got '#N/A'Expecting numeric in E32 / R32C5: got '#N/A'Expecting numeric in G32 / R32C7: got '#N/A'Expecting numeric in L32 / R32C12: got '#N/A'Expecting numeric in B33 / R33C2: got '#N/A'Expecting numeric in E33 / R33C5: got '#N/A'Expecting numeric in G33 / R33C7: got '#N/A'Expecting numeric in L33 / R33C12: got '#N/A'Expecting numeric in B34 / R34C2: got '#N/A'Expecting numeric in E34 / R34C5: got '#N/A'Expecting numeric in G34 / R34C7: got '#N/A'Expecting numeric in L34 / R34C12: got '#N/A'Expecting numeric in B35 / R35C2: got '#N/A'Expecting numeric in E35 / R35C5: got '#N/A'Expecting numeric in G35 / R35C7: got '#N/A'Expecting numeric in L35 / R35C12: got '#N/A'Expecting numeric in B36 / R36C2: got '#N/A'Expecting numeric in E36 / R36C5: got '#N/A'Expecting numeric in G36 / R36C7: got '#N/A'Expecting numeric in L36 / R36C12: got '#N/A'Expecting numeric in B37 / R37C2: got '#N/A'Expecting numeric in E37 / R37C5: got '#N/A'Expecting numeric in G37 / R37C7: got '#N/A'Expecting numeric in L37 / R37C12: got '#N/A'Expecting numeric in B38 / R38C2: got '#N/A'Expecting numeric in E38 / R38C5: got '#N/A'Expecting numeric in G38 / R38C7: got '#N/A'Expecting numeric in L38 / R38C12: got '#N/A'Expecting numeric in B39 / R39C2: got '#N/A'Expecting numeric in E39 / R39C5: got '#N/A'Expecting numeric in G39 / R39C7: got '#N/A'Expecting numeric in L39 / R39C12: got '#N/A'Expecting numeric in B40 / R40C2: got '#N/A'Expecting numeric in E40 / R40C5: got '#N/A'Expecting numeric in G40 / R40C7: got '#N/A'Expecting numeric in L40 / R40C12: got '#N/A'Expecting numeric in B41 / R41C2: got '#N/A'Expecting numeric in E41 / R41C5: got '#N/A'Expecting numeric in G41 / R41C7: got '#N/A'Expecting numeric in L41 / R41C12: got '#N/A'Expecting numeric in B42 / R42C2: got '#N/A'Expecting numeric in E42 / R42C5: got '#N/A'Expecting numeric in G42 / R42C7: got '#N/A'Expecting numeric in L42 / R42C12: got '#N/A'Expecting numeric in B43 / R43C2: got '#N/A'Expecting numeric in E43 / R43C5: got '#N/A'Expecting numeric in G43 / R43C7: got '#N/A'Expecting numeric in L43 / R43C12: got '#N/A'Expecting numeric in B44 / R44C2: got '#N/A'Expecting numeric in E44 / R44C5: got '#N/A'Expecting numeric in G44 / R44C7: got '#N/A'Expecting numeric in L44 / R44C12: got '#N/A'Expecting numeric in B45 / R45C2: got '#N/A'Expecting numeric in E45 / R45C5: got '#N/A'Expecting numeric in G45 / R45C7: got '#N/A'Expecting numeric in L45 / R45C12: got '#N/A'Expecting numeric in B46 / R46C2: got '#N/A'Expecting numeric in E46 / R46C5: got '#N/A'Expecting numeric in G46 / R46C7: got '#N/A'Expecting numeric in L46 / R46C12: got '#N/A'Expecting numeric in B47 / R47C2: got '#N/A'Expecting numeric in E47 / R47C5: got '#N/A'Expecting numeric in G47 / R47C7: got '#N/A'Expecting numeric in L47 / R47C12: got '#N/A'Expecting numeric in B48 / R48C2: got '#N/A'Expecting numeric in E48 / R48C5: got '#N/A'Expecting numeric in G48 / R48C7: got '#N/A'Expecting numeric in L48 / R48C12: got '#N/A'Expecting numeric in B49 / R49C2: got '#N/A'Expecting numeric in E49 / R49C5: got '#N/A'Expecting numeric in G49 / R49C7: got '#N/A'Expecting numeric in L49 / R49C12: got '#N/A'Expecting numeric in B50 / R50C2: got '#N/A'Expecting numeric in E50 / R50C5: got '#N/A'Expecting numeric in G50 / R50C7: got '#N/A'Expecting numeric in L50 / R50C12: got '#N/A'Expecting numeric in B51 / R51C2: got '#N/A'Expecting numeric in E51 / R51C5: got '#N/A'Expecting numeric in G51 / R51C7: got '#N/A'Expecting numeric in L51 / R51C12: got '#N/A'Expecting numeric in B52 / R52C2: got '#N/A'Expecting numeric in E52 / R52C5: got '#N/A'Expecting numeric in G52 / R52C7: got '#N/A'Expecting numeric in L52 / R52C12: got '#N/A'Expecting numeric in B53 / R53C2: got '#N/A'Expecting numeric in E53 / R53C5: got '#N/A'Expecting numeric in G53 / R53C7: got '#N/A'Expecting numeric in L53 / R53C12: got '#N/A'Expecting numeric in B54 / R54C2: got '#N/A'Expecting numeric in E54 / R54C5: got '#N/A'Expecting numeric in G54 / R54C7: got '#N/A'Expecting numeric in L54 / R54C12: got '#N/A'Expecting numeric in B55 / R55C2: got '#N/A'Expecting numeric in E55 / R55C5: got '#N/A'Expecting numeric in G55 / R55C7: got '#N/A'Expecting numeric in L55 / R55C12: got '#N/A'Expecting numeric in B56 / R56C2: got '#N/A'Expecting numeric in E56 / R56C5: got '#N/A'Expecting numeric in G56 / R56C7: got '#N/A'Expecting numeric in L56 / R56C12: got '#N/A'Expecting numeric in B57 / R57C2: got '#N/A'Expecting numeric in E57 / R57C5: got '#N/A'Expecting numeric in G57 / R57C7: got '#N/A'Expecting numeric in L57 / R57C12: got '#N/A'Expecting numeric in B58 / R58C2: got '#N/A'Expecting numeric in E58 / R58C5: got '#N/A'Expecting numeric in G58 / R58C7: got '#N/A'Expecting numeric in L58 / R58C12: got '#N/A'Expecting numeric in B59 / R59C2: got '#N/A'Expecting numeric in E59 / R59C5: got '#N/A'Expecting numeric in G59 / R59C7: got '#N/A'Expecting numeric in L59 / R59C12: got '#N/A'Expecting numeric in B60 / R60C2: got '#N/A'Expecting numeric in E60 / R60C5: got '#N/A'Expecting numeric in G60 / R60C7: got '#N/A'Expecting numeric in L60 / R60C12: got '#N/A'Expecting numeric in B61 / R61C2: got '#N/A'Expecting numeric in E61 / R61C5: got '#N/A'Expecting numeric in G61 / R61C7: got '#N/A'Expecting numeric in L61 / R61C12: got '#N/A'Expecting numeric in B62 / R62C2: got '#N/A'Expecting numeric in E62 / R62C5: got '#N/A'Expecting numeric in G62 / R62C7: got '#N/A'Expecting numeric in L62 / R62C12: got '#N/A'Expecting numeric in B63 / R63C2: got '#N/A'Expecting numeric in E63 / R63C5: got '#N/A'Expecting numeric in G63 / R63C7: got '#N/A'Expecting numeric in L63 / R63C12: got '#N/A'Expecting numeric in B64 / R64C2: got '#N/A'Expecting numeric in E64 / R64C5: got '#N/A'Expecting numeric in G64 / R64C7: got '#N/A'Expecting numeric in L64 / R64C12: got '#N/A'Expecting numeric in B65 / R65C2: got '#N/A'Expecting numeric in E65 / R65C5: got '#N/A'Expecting numeric in G65 / R65C7: got '#N/A'Expecting numeric in L65 / R65C12: got '#N/A'Expecting numeric in B66 / R66C2: got '#N/A'Expecting numeric in E66 / R66C5: got '#N/A'Expecting numeric in G66 / R66C7: got '#N/A'Expecting numeric in L66 / R66C12: got '#N/A'Expecting numeric in B67 / R67C2: got '#N/A'Expecting numeric in E67 / R67C5: got '#N/A'Expecting numeric in G67 / R67C7: got '#N/A'Expecting numeric in L67 / R67C12: got '#N/A'Expecting numeric in B68 / R68C2: got '#N/A'Expecting numeric in E68 / R68C5: got '#N/A'Expecting numeric in G68 / R68C7: got '#N/A'Expecting numeric in L68 / R68C12: got '#N/A'Expecting numeric in B69 / R69C2: got '#N/A'Expecting numeric in E69 / R69C5: got '#N/A'Expecting numeric in G69 / R69C7: got '#N/A'Expecting numeric in L69 / R69C12: got '#N/A'Expecting numeric in B70 / R70C2: got '#N/A'Expecting numeric in E70 / R70C5: got '#N/A'Expecting numeric in G70 / R70C7: got '#N/A'Expecting numeric in L70 / R70C12: got '#N/A'Expecting numeric in B71 / R71C2: got '#N/A'Expecting numeric in E71 / R71C5: got '#N/A'Expecting numeric in G71 / R71C7: got '#N/A'Expecting numeric in L71 / R71C12: got '#N/A'Expecting numeric in B72 / R72C2: got '#N/A'Expecting numeric in E72 / R72C5: got '#N/A'Expecting numeric in G72 / R72C7: got '#N/A'Expecting numeric in L72 / R72C12: got '#N/A'Expecting numeric in B73 / R73C2: got '#N/A'Expecting numeric in E73 / R73C5: got '#N/A'Expecting numeric in G73 / R73C7: got '#N/A'Expecting numeric in L73 / R73C12: got '#N/A'Expecting numeric in B74 / R74C2: got '#N/A'Expecting numeric in E74 / R74C5: got '#N/A'Expecting numeric in G74 / R74C7: got '#N/A'Expecting numeric in L74 / R74C12: got '#N/A'Expecting numeric in B75 / R75C2: got '#N/A'Expecting numeric in E75 / R75C5: got '#N/A'Expecting numeric in G75 / R75C7: got '#N/A'Expecting numeric in L75 / R75C12: got '#N/A'Expecting numeric in B76 / R76C2: got '#N/A'Expecting numeric in E76 / R76C5: got '#N/A'Expecting numeric in G76 / R76C7: got '#N/A'Expecting numeric in L76 / R76C12: got '#N/A'Expecting numeric in B77 / R77C2: got '#N/A'Expecting numeric in E77 / R77C5: got '#N/A'Expecting numeric in G77 / R77C7: got '#N/A'Expecting numeric in L77 / R77C12: got '#N/A'Expecting numeric in B78 / R78C2: got '#N/A'Expecting numeric in E78 / R78C5: got '#N/A'Expecting numeric in G78 / R78C7: got '#N/A'Expecting numeric in L78 / R78C12: got '#N/A'Expecting numeric in B79 / R79C2: got '#N/A'Expecting numeric in E79 / R79C5: got '#N/A'Expecting numeric in G79 / R79C7: got '#N/A'Expecting numeric in L79 / R79C12: got '#N/A'Expecting numeric in B80 / R80C2: got '#N/A'Expecting numeric in E80 / R80C5: got '#N/A'Expecting numeric in G80 / R80C7: got '#N/A'Expecting numeric in L80 / R80C12: got '#N/A'Expecting numeric in B81 / R81C2: got '#N/A'Expecting numeric in E81 / R81C5: got '#N/A'Expecting numeric in G81 / R81C7: got '#N/A'Expecting numeric in L81 / R81C12: got '#N/A'Expecting numeric in B82 / R82C2: got '#N/A'Expecting numeric in E82 / R82C5: got '#N/A'Expecting numeric in G82 / R82C7: got '#N/A'Expecting numeric in L82 / R82C12: got '#N/A'Expecting numeric in B83 / R83C2: got '#N/A'Expecting numeric in E83 / R83C5: got '#N/A'Expecting numeric in G83 / R83C7: got '#N/A'Expecting numeric in L83 / R83C12: got '#N/A'Expecting numeric in B84 / R84C2: got '#N/A'Expecting numeric in E84 / R84C5: got '#N/A'Expecting numeric in G84 / R84C7: got '#N/A'Expecting numeric in L84 / R84C12: got '#N/A'Expecting numeric in B85 / R85C2: got '#N/A'Expecting numeric in E85 / R85C5: got '#N/A'Expecting numeric in G85 / R85C7: got '#N/A'Expecting numeric in L85 / R85C12: got '#N/A'Expecting numeric in B86 / R86C2: got '#N/A'Expecting numeric in E86 / R86C5: got '#N/A'Expecting numeric in G86 / R86C7: got '#N/A'Expecting numeric in L86 / R86C12: got '#N/A'Expecting numeric in B87 / R87C2: got '#N/A'Expecting numeric in E87 / R87C5: got '#N/A'Expecting numeric in G87 / R87C7: got '#N/A'Expecting numeric in L87 / R87C12: got '#N/A'Expecting numeric in B88 / R88C2: got '#N/A'Expecting numeric in E88 / R88C5: got '#N/A'Expecting numeric in G88 / R88C7: got '#N/A'Expecting numeric in L88 / R88C12: got '#N/A'Expecting numeric in B89 / R89C2: got '#N/A'Expecting numeric in E89 / R89C5: got '#N/A'Expecting numeric in G89 / R89C7: got '#N/A'Expecting numeric in L89 / R89C12: got '#N/A'Expecting numeric in B90 / R90C2: got '#N/A'Expecting numeric in E90 / R90C5: got '#N/A'Expecting numeric in G90 / R90C7: got '#N/A'Expecting numeric in L90 / R90C12: got '#N/A'Expecting numeric in B91 / R91C2: got '#N/A'Expecting numeric in E91 / R91C5: got '#N/A'Expecting numeric in G91 / R91C7: got '#N/A'Expecting numeric in L91 / R91C12: got '#N/A'Expecting numeric in B92 / R92C2: got '#N/A'Expecting numeric in E92 / R92C5: got '#N/A'Expecting numeric in G92 / R92C7: got '#N/A'Expecting numeric in L92 / R92C12: got '#N/A'Expecting numeric in B93 / R93C2: got '#N/A'Expecting numeric in E93 / R93C5: got '#N/A'Expecting numeric in G93 / R93C7: got '#N/A'Expecting numeric in L93 / R93C12: got '#N/A'Expecting numeric in B94 / R94C2: got '#N/A'Expecting numeric in E94 / R94C5: got '#N/A'Expecting numeric in G94 / R94C7: got '#N/A'Expecting numeric in L94 / R94C12: got '#N/A'Expecting numeric in B95 / R95C2: got '#N/A'Expecting numeric in E95 / R95C5: got '#N/A'Expecting numeric in G95 / R95C7: got '#N/A'Expecting numeric in L95 / R95C12: got '#N/A'Expecting numeric in B96 / R96C2: got '#N/A'Expecting numeric in E96 / R96C5: got '#N/A'Expecting numeric in G96 / R96C7: got '#N/A'Expecting numeric in L96 / R96C12: got '#N/A'Expecting numeric in B97 / R97C2: got '#N/A'Expecting numeric in E97 / R97C5: got '#N/A'Expecting numeric in G97 / R97C7: got '#N/A'Expecting numeric in L97 / R97C12: got '#N/A'Expecting numeric in B98 / R98C2: got '#N/A'Expecting numeric in E98 / R98C5: got '#N/A'Expecting numeric in G98 / R98C7: got '#N/A'Expecting numeric in L98 / R98C12: got '#N/A'Expecting numeric in B99 / R99C2: got '#N/A'Expecting numeric in E99 / R99C5: got '#N/A'Expecting numeric in G99 / R99C7: got '#N/A'Expecting numeric in L99 / R99C12: got '#N/A'Expecting numeric in B100 / R100C2: got '#N/A'Expecting numeric in E100 / R100C5: got '#N/A'Expecting numeric in G100 / R100C7: got '#N/A'Expecting numeric in L100 / R100C12: got '#N/A'Expecting numeric in B101 / R101C2: got '#N/A'Expecting numeric in E101 / R101C5: got '#N/A'Expecting numeric in G101 / R101C7: got '#N/A'Expecting numeric in L101 / R101C12: got '#N/A'Expecting numeric in B102 / R102C2: got '#N/A'Expecting numeric in E102 / R102C5: got '#N/A'Expecting numeric in G102 / R102C7: got '#N/A'Expecting numeric in L102 / R102C12: got '#N/A'Expecting numeric in B103 / R103C2: got '#N/A'Expecting numeric in E103 / R103C5: got '#N/A'Expecting numeric in G103 / R103C7: got '#N/A'Expecting numeric in L103 / R103C12: got '#N/A'Expecting numeric in B104 / R104C2: got '#N/A'Expecting numeric in E104 / R104C5: got '#N/A'Expecting numeric in G104 / R104C7: got '#N/A'Expecting numeric in L104 / R104C12: got '#N/A'Expecting numeric in B105 / R105C2: got '#N/A'Expecting numeric in E105 / R105C5: got '#N/A'Expecting numeric in G105 / R105C7: got '#N/A'Expecting numeric in L105 / R105C12: got '#N/A'Expecting numeric in B106 / R106C2: got '#N/A'Expecting numeric in E106 / R106C5: got '#N/A'Expecting numeric in G106 / R106C7: got '#N/A'Expecting numeric in L106 / R106C12: got '#N/A'Expecting numeric in B107 / R107C2: got '#N/A'Expecting numeric in E107 / R107C5: got '#N/A'Expecting numeric in G107 / R107C7: got '#N/A'Expecting numeric in L107 / R107C12: got '#N/A'Expecting numeric in B108 / R108C2: got '#N/A'Expecting numeric in E108 / R108C5: got '#N/A'Expecting numeric in G108 / R108C7: got '#N/A'Expecting numeric in L108 / R108C12: got '#N/A'Expecting numeric in B109 / R109C2: got '#N/A'Expecting numeric in E109 / R109C5: got '#N/A'Expecting numeric in G109 / R109C7: got '#N/A'Expecting numeric in L109 / R109C12: got '#N/A'Expecting numeric in B110 / R110C2: got '#N/A'Expecting numeric in E110 / R110C5: got '#N/A'Expecting numeric in G110 / R110C7: got '#N/A'Expecting numeric in L110 / R110C12: got '#N/A'Expecting numeric in B111 / R111C2: got '#N/A'Expecting numeric in E111 / R111C5: got '#N/A'Expecting numeric in G111 / R111C7: got '#N/A'Expecting numeric in L111 / R111C12: got '#N/A'Expecting numeric in B112 / R112C2: got '#N/A'Expecting numeric in E112 / R112C5: got '#N/A'Expecting numeric in G112 / R112C7: got '#N/A'Expecting numeric in L112 / R112C12: got '#N/A'Expecting numeric in B113 / R113C2: got '#N/A'Expecting numeric in E113 / R113C5: got '#N/A'Expecting numeric in G113 / R113C7: got '#N/A'Expecting numeric in L113 / R113C12: got '#N/A'Expecting numeric in B114 / R114C2: got '#N/A'Expecting numeric in E114 / R114C5: got '#N/A'Expecting numeric in G114 / R114C7: got '#N/A'Expecting numeric in L114 / R114C12: got '#N/A'Expecting numeric in B115 / R115C2: got '#N/A'Expecting numeric in E115 / R115C5: got '#N/A'Expecting numeric in G115 / R115C7: got '#N/A'Expecting numeric in L115 / R115C12: got '#N/A'Expecting numeric in B116 / R116C2: got '#N/A'Expecting numeric in E116 / R116C5: got '#N/A'Expecting numeric in G116 / R116C7: got '#N/A'Expecting numeric in L116 / R116C12: got '#N/A'Expecting numeric in B117 / R117C2: got '#N/A'Expecting numeric in E117 / R117C5: got '#N/A'Expecting numeric in G117 / R117C7: got '#N/A'Expecting numeric in L117 / R117C12: got '#N/A'Expecting numeric in B118 / R118C2: got '#N/A'Expecting numeric in E118 / R118C5: got '#N/A'Expecting numeric in G118 / R118C7: got '#N/A'Expecting numeric in L118 / R118C12: got '#N/A'Expecting numeric in B119 / R119C2: got '#N/A'Expecting numeric in E119 / R119C5: got '#N/A'Expecting numeric in G119 / R119C7: got '#N/A'Expecting numeric in L119 / R119C12: got '#N/A'Expecting numeric in B120 / R120C2: got '#N/A'Expecting numeric in E120 / R120C5: got '#N/A'Expecting numeric in G120 / R120C7: got '#N/A'Expecting numeric in L120 / R120C12: got '#N/A'Expecting numeric in B121 / R121C2: got '#N/A'Expecting numeric in E121 / R121C5: got '#N/A'Expecting numeric in G121 / R121C7: got '#N/A'Expecting numeric in L121 / R121C12: got '#N/A'Expecting numeric in B122 / R122C2: got '#N/A'Expecting numeric in E122 / R122C5: got '#N/A'Expecting numeric in G122 / R122C7: got '#N/A'Expecting numeric in L122 / R122C12: got '#N/A'Expecting numeric in B123 / R123C2: got '#N/A'Expecting numeric in E123 / R123C5: got '#N/A'Expecting numeric in G123 / R123C7: got '#N/A'Expecting numeric in L123 / R123C12: got '#N/A'Expecting numeric in B124 / R124C2: got '#N/A'Expecting numeric in E124 / R124C5: got '#N/A'Expecting numeric in G124 / R124C7: got '#N/A'Expecting numeric in L124 / R124C12: got '#N/A'Expecting numeric in B125 / R125C2: got '#N/A'Expecting numeric in E125 / R125C5: got '#N/A'Expecting numeric in G125 / R125C7: got '#N/A'Expecting numeric in L125 / R125C12: got '#N/A'Expecting numeric in B126 / R126C2: got '#N/A'Expecting numeric in E126 / R126C5: got '#N/A'Expecting numeric in G126 / R126C7: got '#N/A'Expecting numeric in L126 / R126C12: got '#N/A'Expecting numeric in B127 / R127C2: got '#N/A'Expecting numeric in E127 / R127C5: got '#N/A'Expecting numeric in G127 / R127C7: got '#N/A'Expecting numeric in L127 / R127C12: got '#N/A'Expecting numeric in B128 / R128C2: got '#N/A'Expecting numeric in E128 / R128C5: got '#N/A'Expecting numeric in G128 / R128C7: got '#N/A'Expecting numeric in L128 / R128C12: got '#N/A'Expecting numeric in B129 / R129C2: got '#N/A'Expecting numeric in E129 / R129C5: got '#N/A'Expecting numeric in G129 / R129C7: got '#N/A'Expecting numeric in L129 / R129C12: got '#N/A'Expecting numeric in B130 / R130C2: got '#N/A'Expecting numeric in E130 / R130C5: got '#N/A'Expecting numeric in G130 / R130C7: got '#N/A'Expecting numeric in L130 / R130C12: got '#N/A'Expecting numeric in B131 / R131C2: got '#N/A'Expecting numeric in E131 / R131C5: got '#N/A'Expecting numeric in G131 / R131C7: got '#N/A'Expecting numeric in L131 / R131C12: got '#N/A'Expecting numeric in B132 / R132C2: got '#N/A'Expecting numeric in E132 / R132C5: got '#N/A'Expecting numeric in G132 / R132C7: got '#N/A'Expecting numeric in L132 / R132C12: got '#N/A'Expecting numeric in B133 / R133C2: got '#N/A'Expecting numeric in E133 / R133C5: got '#N/A'Expecting numeric in G133 / R133C7: got '#N/A'Expecting numeric in L133 / R133C12: got '#N/A'Expecting numeric in B134 / R134C2: got '#N/A'Expecting numeric in E134 / R134C5: got '#N/A'Expecting numeric in G134 / R134C7: got '#N/A'Expecting numeric in L134 / R134C12: got '#N/A'Expecting numeric in B135 / R135C2: got '#N/A'Expecting numeric in E135 / R135C5: got '#N/A'Expecting numeric in G135 / R135C7: got '#N/A'Expecting numeric in L135 / R135C12: got '#N/A'Expecting numeric in B136 / R136C2: got '#N/A'Expecting numeric in E136 / R136C5: got '#N/A'Expecting numeric in G136 / R136C7: got '#N/A'Expecting numeric in L136 / R136C12: got '#N/A'Expecting numeric in B137 / R137C2: got '#N/A'Expecting numeric in E137 / R137C5: got '#N/A'Expecting numeric in G137 / R137C7: got '#N/A'Expecting numeric in L137 / R137C12: got '#N/A'Expecting numeric in B138 / R138C2: got '#N/A'Expecting numeric in E138 / R138C5: got '#N/A'Expecting numeric in G138 / R138C7: got '#N/A'Expecting numeric in L138 / R138C12: got '#N/A'Expecting numeric in B139 / R139C2: got '#N/A'Expecting numeric in E139 / R139C5: got '#N/A'Expecting numeric in G139 / R139C7: got '#N/A'Expecting numeric in L139 / R139C12: got '#N/A'Expecting numeric in B140 / R140C2: got '#N/A'Expecting numeric in E140 / R140C5: got '#N/A'Expecting numeric in G140 / R140C7: got '#N/A'Expecting numeric in L140 / R140C12: got '#N/A'Expecting numeric in B141 / R141C2: got '#N/A'Expecting numeric in E141 / R141C5: got '#N/A'Expecting numeric in G141 / R141C7: got '#N/A'Expecting numeric in L141 / R141C12: got '#N/A'Expecting numeric in B142 / R142C2: got '#N/A'Expecting numeric in E142 / R142C5: got '#N/A'Expecting numeric in G142 / R142C7: got '#N/A'Expecting numeric in L142 / R142C12: got '#N/A'Expecting numeric in B143 / R143C2: got '#N/A'Expecting numeric in E143 / R143C5: got '#N/A'Expecting numeric in G143 / R143C7: got '#N/A'Expecting numeric in L143 / R143C12: got '#N/A'Expecting numeric in B144 / R144C2: got '#N/A'Expecting numeric in E144 / R144C5: got '#N/A'Expecting numeric in G144 / R144C7: got '#N/A'Expecting numeric in L144 / R144C12: got '#N/A'Expecting numeric in B145 / R145C2: got '#N/A'Expecting numeric in E145 / R145C5: got '#N/A'Expecting numeric in G145 / R145C7: got '#N/A'Expecting numeric in L145 / R145C12: got '#N/A'Expecting numeric in B146 / R146C2: got '#N/A'Expecting numeric in E146 / R146C5: got '#N/A'Expecting numeric in G146 / R146C7: got '#N/A'Expecting numeric in L146 / R146C12: got '#N/A'Expecting numeric in B147 / R147C2: got '#N/A'Expecting numeric in E147 / R147C5: got '#N/A'Expecting numeric in G147 / R147C7: got '#N/A'Expecting numeric in L147 / R147C12: got '#N/A'Expecting numeric in B148 / R148C2: got '#N/A'Expecting numeric in E148 / R148C5: got '#N/A'Expecting numeric in G148 / R148C7: got '#N/A'Expecting numeric in L148 / R148C12: got '#N/A'Expecting numeric in B149 / R149C2: got '#N/A'Expecting numeric in E149 / R149C5: got '#N/A'Expecting numeric in G149 / R149C7: got '#N/A'Expecting numeric in L149 / R149C12: got '#N/A'Expecting numeric in B150 / R150C2: got '#N/A'Expecting numeric in E150 / R150C5: got '#N/A'Expecting numeric in G150 / R150C7: got '#N/A'Expecting numeric in L150 / R150C12: got '#N/A'Expecting numeric in B151 / R151C2: got '#N/A'Expecting numeric in E151 / R151C5: got '#N/A'Expecting numeric in G151 / R151C7: got '#N/A'Expecting numeric in L151 / R151C12: got '#N/A'Expecting numeric in B152 / R152C2: got '#N/A'Expecting numeric in E152 / R152C5: got '#N/A'Expecting numeric in G152 / R152C7: got '#N/A'Expecting numeric in L152 / R152C12: got '#N/A'Expecting numeric in B153 / R153C2: got '#N/A'Expecting numeric in E153 / R153C5: got '#N/A'Expecting numeric in G153 / R153C7: got '#N/A'Expecting numeric in L153 / R153C12: got '#N/A'Expecting numeric in B154 / R154C2: got '#N/A'Expecting numeric in E154 / R154C5: got '#N/A'Expecting numeric in G154 / R154C7: got '#N/A'Expecting numeric in L154 / R154C12: got '#N/A'Expecting numeric in B155 / R155C2: got '#N/A'Expecting numeric in E155 / R155C5: got '#N/A'Expecting numeric in G155 / R155C7: got '#N/A'Expecting numeric in L155 / R155C12: got '#N/A'Expecting numeric in B156 / R156C2: got '#N/A'Expecting numeric in E156 / R156C5: got '#N/A'Expecting numeric in G156 / R156C7: got '#N/A'Expecting numeric in L156 / R156C12: got '#N/A'Expecting numeric in B157 / R157C2: got '#N/A'Expecting numeric in E157 / R157C5: got '#N/A'Expecting numeric in G157 / R157C7: got '#N/A'Expecting numeric in L157 / R157C12: got '#N/A'Expecting numeric in B158 / R158C2: got '#N/A'Expecting numeric in E158 / R158C5: got '#N/A'Expecting numeric in G158 / R158C7: got '#N/A'Expecting numeric in L158 / R158C12: got '#N/A'Expecting numeric in B159 / R159C2: got '#N/A'Expecting numeric in E159 / R159C5: got '#N/A'Expecting numeric in G159 / R159C7: got '#N/A'Expecting numeric in L159 / R159C12: got '#N/A'Expecting numeric in B160 / R160C2: got '#N/A'Expecting numeric in E160 / R160C5: got '#N/A'Expecting numeric in G160 / R160C7: got '#N/A'Expecting numeric in L160 / R160C12: got '#N/A'Expecting numeric in B161 / R161C2: got '#N/A'Expecting numeric in E161 / R161C5: got '#N/A'Expecting numeric in G161 / R161C7: got '#N/A'Expecting numeric in L161 / R161C12: got '#N/A'Expecting numeric in B162 / R162C2: got '#N/A'Expecting numeric in E162 / R162C5: got '#N/A'Expecting numeric in G162 / R162C7: got '#N/A'Expecting numeric in L162 / R162C12: got '#N/A'Expecting numeric in B163 / R163C2: got '#N/A'Expecting numeric in E163 / R163C5: got '#N/A'Expecting numeric in G163 / R163C7: got '#N/A'Expecting numeric in L163 / R163C12: got '#N/A'Expecting numeric in B164 / R164C2: got '#N/A'Expecting numeric in E164 / R164C5: got '#N/A'Expecting numeric in G164 / R164C7: got '#N/A'Expecting numeric in L164 / R164C12: got '#N/A'Expecting numeric in B165 / R165C2: got '#N/A'Expecting numeric in E165 / R165C5: got '#N/A'Expecting numeric in G165 / R165C7: got '#N/A'Expecting numeric in L165 / R165C12: got '#N/A'Expecting numeric in B166 / R166C2: got '#N/A'Expecting numeric in E166 / R166C5: got '#N/A'Expecting numeric in G166 / R166C7: got '#N/A'Expecting numeric in L166 / R166C12: got '#N/A'Expecting numeric in B167 / R167C2: got '#N/A'Expecting numeric in E167 / R167C5: got '#N/A'Expecting numeric in G167 / R167C7: got '#N/A'Expecting numeric in L167 / R167C12: got '#N/A'Expecting numeric in B168 / R168C2: got '#N/A'Expecting numeric in E168 / R168C5: got '#N/A'Expecting numeric in G168 / R168C7: got '#N/A'Expecting numeric in L168 / R168C12: got '#N/A'Expecting numeric in B169 / R169C2: got '#N/A'Expecting numeric in E169 / R169C5: got '#N/A'Expecting numeric in G169 / R169C7: got '#N/A'Expecting numeric in L169 / R169C12: got '#N/A'Expecting numeric in B170 / R170C2: got '#N/A'Expecting numeric in E170 / R170C5: got '#N/A'Expecting numeric in G170 / R170C7: got '#N/A'Expecting numeric in L170 / R170C12: got '#N/A'Expecting numeric in B171 / R171C2: got '#N/A'Expecting numeric in E171 / R171C5: got '#N/A'Expecting numeric in G171 / R171C7: got '#N/A'Expecting numeric in L171 / R171C12: got '#N/A'Expecting numeric in B172 / R172C2: got '#N/A'Expecting numeric in E172 / R172C5: got '#N/A'Expecting numeric in G172 / R172C7: got '#N/A'Expecting numeric in L172 / R172C12: got '#N/A'Expecting numeric in B173 / R173C2: got '#N/A'Expecting numeric in E173 / R173C5: got '#N/A'Expecting numeric in G173 / R173C7: got '#N/A'Expecting numeric in L173 / R173C12: got '#N/A'Expecting numeric in B174 / R174C2: got '#N/A'Expecting numeric in E174 / R174C5: got '#N/A'Expecting numeric in G174 / R174C7: got '#N/A'Expecting numeric in L174 / R174C12: got '#N/A'Expecting numeric in B175 / R175C2: got '#N/A'Expecting numeric in E175 / R175C5: got '#N/A'Expecting numeric in G175 / R175C7: got '#N/A'Expecting numeric in L175 / R175C12: got '#N/A'Expecting numeric in B176 / R176C2: got '#N/A'Expecting numeric in E176 / R176C5: got '#N/A'Expecting numeric in G176 / R176C7: got '#N/A'Expecting numeric in L176 / R176C12: got '#N/A'Expecting numeric in B177 / R177C2: got '#N/A'Expecting numeric in E177 / R177C5: got '#N/A'Expecting numeric in G177 / R177C7: got '#N/A'Expecting numeric in L177 / R177C12: got '#N/A'Expecting numeric in B178 / R178C2: got '#N/A'Expecting numeric in E178 / R178C5: got '#N/A'Expecting numeric in G178 / R178C7: got '#N/A'Expecting numeric in L178 / R178C12: got '#N/A'Expecting numeric in B179 / R179C2: got '#N/A'Expecting numeric in E179 / R179C5: got '#N/A'Expecting numeric in G179 / R179C7: got '#N/A'Expecting numeric in L179 / R179C12: got '#N/A'Expecting numeric in B180 / R180C2: got '#N/A'Expecting numeric in E180 / R180C5: got '#N/A'Expecting numeric in G180 / R180C7: got '#N/A'Expecting numeric in L180 / R180C12: got '#N/A'Expecting numeric in B181 / R181C2: got '#N/A'Expecting numeric in E181 / R181C5: got '#N/A'Expecting numeric in G181 / R181C7: got '#N/A'Expecting numeric in L181 / R181C12: got '#N/A'Expecting numeric in B182 / R182C2: got '#N/A'Expecting numeric in E182 / R182C5: got '#N/A'Expecting numeric in G182 / R182C7: got '#N/A'Expecting numeric in L182 / R182C12: got '#N/A'Expecting numeric in B183 / R183C2: got '#N/A'Expecting numeric in E183 / R183C5: got '#N/A'Expecting numeric in G183 / R183C7: got '#N/A'Expecting numeric in L183 / R183C12: got '#N/A'Expecting numeric in B184 / R184C2: got '#N/A'Expecting numeric in E184 / R184C5: got '#N/A'Expecting numeric in G184 / R184C7: got '#N/A'Expecting numeric in L184 / R184C12: got '#N/A'Expecting numeric in B185 / R185C2: got '#N/A'Expecting numeric in E185 / R185C5: got '#N/A'Expecting numeric in G185 / R185C7: got '#N/A'Expecting numeric in L185 / R185C12: got '#N/A'Expecting numeric in B186 / R186C2: got '#N/A'Expecting numeric in E186 / R186C5: got '#N/A'Expecting numeric in G186 / R186C7: got '#N/A'Expecting numeric in L186 / R186C12: got '#N/A'Expecting numeric in B187 / R187C2: got '#N/A'Expecting numeric in E187 / R187C5: got '#N/A'Expecting numeric in G187 / R187C7: got '#N/A'Expecting numeric in L187 / R187C12: got '#N/A'Expecting numeric in B188 / R188C2: got '#N/A'Expecting numeric in E188 / R188C5: got '#N/A'Expecting numeric in G188 / R188C7: got '#N/A'Expecting numeric in L188 / R188C12: got '#N/A'Expecting numeric in B189 / R189C2: got '#N/A'Expecting numeric in E189 / R189C5: got '#N/A'Expecting numeric in G189 / R189C7: got '#N/A'Expecting numeric in L189 / R189C12: got '#N/A'Expecting numeric in B190 / R190C2: got '#N/A'Expecting numeric in E190 / R190C5: got '#N/A'Expecting numeric in G190 / R190C7: got '#N/A'Expecting numeric in L190 / R190C12: got '#N/A'Expecting numeric in B191 / R191C2: got '#N/A'Expecting numeric in E191 / R191C5: got '#N/A'Expecting numeric in G191 / R191C7: got '#N/A'Expecting numeric in L191 / R191C12: got '#N/A'Expecting numeric in B192 / R192C2: got '#N/A'Expecting numeric in E192 / R192C5: got '#N/A'Expecting numeric in G192 / R192C7: got '#N/A'Expecting numeric in L192 / R192C12: got '#N/A'Expecting numeric in B193 / R193C2: got '#N/A'Expecting numeric in E193 / R193C5: got '#N/A'Expecting numeric in G193 / R193C7: got '#N/A'Expecting numeric in L193 / R193C12: got '#N/A'Expecting numeric in B194 / R194C2: got '#N/A'Expecting numeric in E194 / R194C5: got '#N/A'Expecting numeric in G194 / R194C7: got '#N/A'Expecting numeric in L194 / R194C12: got '#N/A'Expecting numeric in B195 / R195C2: got '#N/A'Expecting numeric in E195 / R195C5: got '#N/A'Expecting numeric in G195 / R195C7: got '#N/A'Expecting numeric in L195 / R195C12: got '#N/A'Expecting numeric in B196 / R196C2: got '#N/A'Expecting numeric in E196 / R196C5: got '#N/A'Expecting numeric in G196 / R196C7: got '#N/A'Expecting numeric in L196 / R196C12: got '#N/A'Expecting numeric in B197 / R197C2: got '#N/A'Expecting numeric in E197 / R197C5: got '#N/A'Expecting numeric in G197 / R197C7: got '#N/A'Expecting numeric in L197 / R197C12: got '#N/A'Expecting numeric in B198 / R198C2: got '#N/A'Expecting numeric in E198 / R198C5: got '#N/A'Expecting numeric in G198 / R198C7: got '#N/A'Expecting numeric in L198 / R198C12: got '#N/A'Expecting numeric in B199 / R199C2: got '#N/A'Expecting numeric in E199 / R199C5: got '#N/A'Expecting numeric in G199 / R199C7: got '#N/A'Expecting numeric in L199 / R199C12: got '#N/A'Expecting numeric in B200 / R200C2: got '#N/A'Expecting numeric in E200 / R200C5: got '#N/A'Expecting numeric in G200 / R200C7: got '#N/A'Expecting numeric in L200 / R200C12: got '#N/A'Expecting numeric in B201 / R201C2: got '#N/A'Expecting numeric in E201 / R201C5: got '#N/A'Expecting numeric in G201 / R201C7: got '#N/A'Expecting numeric in L201 / R201C12: got '#N/A'Expecting numeric in B202 / R202C2: got '#N/A'Expecting numeric in E202 / R202C5: got '#N/A'Expecting numeric in G202 / R202C7: got '#N/A'Expecting numeric in L202 / R202C12: got '#N/A'Expecting numeric in B203 / R203C2: got '#N/A'Expecting numeric in E203 / R203C5: got '#N/A'Expecting numeric in G203 / R203C7: got '#N/A'Expecting numeric in L203 / R203C12: got '#N/A'Expecting numeric in B204 / R204C2: got '#N/A'Expecting numeric in E204 / R204C5: got '#N/A'Expecting numeric in G204 / R204C7: got '#N/A'Expecting numeric in L204 / R204C12: got '#N/A'Expecting numeric in B205 / R205C2: got '#N/A'Expecting numeric in E205 / R205C5: got '#N/A'Expecting numeric in G205 / R205C7: got '#N/A'Expecting numeric in L205 / R205C12: got '#N/A'Expecting numeric in B206 / R206C2: got '#N/A'Expecting numeric in E206 / R206C5: got '#N/A'Expecting numeric in G206 / R206C7: got '#N/A'Expecting numeric in L206 / R206C12: got '#N/A'Expecting numeric in B207 / R207C2: got '#N/A'Expecting numeric in E207 / R207C5: got '#N/A'Expecting numeric in G207 / R207C7: got '#N/A'Expecting numeric in L207 / R207C12: got '#N/A'Expecting numeric in B208 / R208C2: got '#N/A'Expecting numeric in E208 / R208C5: got '#N/A'Expecting numeric in G208 / R208C7: got '#N/A'Expecting numeric in L208 / R208C12: got '#N/A'Expecting numeric in B209 / R209C2: got '#N/A'Expecting numeric in E209 / R209C5: got '#N/A'Expecting numeric in G209 / R209C7: got '#N/A'Expecting numeric in L209 / R209C12: got '#N/A'Expecting numeric in B210 / R210C2: got '#N/A'Expecting numeric in E210 / R210C5: got '#N/A'Expecting numeric in G210 / R210C7: got '#N/A'Expecting numeric in L210 / R210C12: got '#N/A'Expecting numeric in B211 / R211C2: got '#N/A'Expecting numeric in E211 / R211C5: got '#N/A'Expecting numeric in G211 / R211C7: got '#N/A'Expecting numeric in L211 / R211C12: got '#N/A'Expecting numeric in B212 / R212C2: got '#N/A'Expecting numeric in E212 / R212C5: got '#N/A'Expecting numeric in G212 / R212C7: got '#N/A'Expecting numeric in L212 / R212C12: got '#N/A'Expecting numeric in B213 / R213C2: got '#N/A'Expecting numeric in E213 / R213C5: got '#N/A'Expecting numeric in G213 / R213C7: got '#N/A'Expecting numeric in L213 / R213C12: got '#N/A'Expecting numeric in B214 / R214C2: got '#N/A'Expecting numeric in E214 / R214C5: got '#N/A'Expecting numeric in G214 / R214C7: got '#N/A'Expecting numeric in L214 / R214C12: got '#N/A'Expecting numeric in B215 / R215C2: got '#N/A'Expecting numeric in E215 / R215C5: got '#N/A'Expecting numeric in G215 / R215C7: got '#N/A'Expecting numeric in L215 / R215C12: got '#N/A'Expecting numeric in B216 / R216C2: got '#N/A'Expecting numeric in E216 / R216C5: got '#N/A'Expecting numeric in G216 / R216C7: got '#N/A'Expecting numeric in L216 / R216C12: got '#N/A'Expecting numeric in B217 / R217C2: got '#N/A'Expecting numeric in E217 / R217C5: got '#N/A'Expecting numeric in G217 / R217C7: got '#N/A'Expecting numeric in L217 / R217C12: got '#N/A'Expecting numeric in B218 / R218C2: got '#N/A'Expecting numeric in E218 / R218C5: got '#N/A'Expecting numeric in G218 / R218C7: got '#N/A'Expecting numeric in L218 / R218C12: got '#N/A'Expecting numeric in B219 / R219C2: got '#N/A'Expecting numeric in E219 / R219C5: got '#N/A'Expecting numeric in G219 / R219C7: got '#N/A'Expecting numeric in L219 / R219C12: got '#N/A'Expecting numeric in B220 / R220C2: got '#N/A'Expecting numeric in E220 / R220C5: got '#N/A'Expecting numeric in G220 / R220C7: got '#N/A'Expecting numeric in L220 / R220C12: got '#N/A'Expecting numeric in B221 / R221C2: got '#N/A'Expecting numeric in E221 / R221C5: got '#N/A'Expecting numeric in G221 / R221C7: got '#N/A'Expecting numeric in L221 / R221C12: got '#N/A'Expecting numeric in B222 / R222C2: got '#N/A'Expecting numeric in E222 / R222C5: got '#N/A'Expecting numeric in G222 / R222C7: got '#N/A'Expecting numeric in L222 / R222C12: got '#N/A'Expecting numeric in B223 / R223C2: got '#N/A'Expecting numeric in E223 / R223C5: got '#N/A'Expecting numeric in G223 / R223C7: got '#N/A'Expecting numeric in L223 / R223C12: got '#N/A'Expecting numeric in B224 / R224C2: got '#N/A'Expecting numeric in E224 / R224C5: got '#N/A'Expecting numeric in G224 / R224C7: got '#N/A'Expecting numeric in L224 / R224C12: got '#N/A'Expecting numeric in B225 / R225C2: got '#N/A'Expecting numeric in E225 / R225C5: got '#N/A'Expecting numeric in G225 / R225C7: got '#N/A'Expecting numeric in L225 / R225C12: got '#N/A'Expecting numeric in B226 / R226C2: got '#N/A'Expecting numeric in E226 / R226C5: got '#N/A'Expecting numeric in G226 / R226C7: got '#N/A'Expecting numeric in L226 / R226C12: got '#N/A'Expecting numeric in B227 / R227C2: got '#N/A'Expecting numeric in E227 / R227C5: got '#N/A'Expecting numeric in G227 / R227C7: got '#N/A'Expecting numeric in L227 / R227C12: got '#N/A'Expecting numeric in B228 / R228C2: got '#N/A'Expecting numeric in E228 / R228C5: got '#N/A'Expecting numeric in G228 / R228C7: got '#N/A'Expecting numeric in L228 / R228C12: got '#N/A'Expecting numeric in B229 / R229C2: got '#N/A'Expecting numeric in E229 / R229C5: got '#N/A'Expecting numeric in G229 / R229C7: got '#N/A'Expecting numeric in L229 / R229C12: got '#N/A'Expecting numeric in B230 / R230C2: got '#N/A'Expecting numeric in E230 / R230C5: got '#N/A'Expecting numeric in G230 / R230C7: got '#N/A'Expecting numeric in L230 / R230C12: got '#N/A'Expecting numeric in B231 / R231C2: got '#N/A'Expecting numeric in E231 / R231C5: got '#N/A'Expecting numeric in G231 / R231C7: got '#N/A'Expecting numeric in L231 / R231C12: got '#N/A'Expecting numeric in B232 / R232C2: got '#N/A'Expecting numeric in E232 / R232C5: got '#N/A'Expecting numeric in G232 / R232C7: got '#N/A'Expecting numeric in L232 / R232C12: got '#N/A'Expecting numeric in B233 / R233C2: got '#N/A'Expecting numeric in E233 / R233C5: got '#N/A'Expecting numeric in G233 / R233C7: got '#N/A'Expecting numeric in L233 / R233C12: got '#N/A'Expecting numeric in B234 / R234C2: got '#N/A'Expecting numeric in E234 / R234C5: got '#N/A'Expecting numeric in G234 / R234C7: got '#N/A'Expecting numeric in L234 / R234C12: got '#N/A'Expecting numeric in B235 / R235C2: got '#N/A'Expecting numeric in E235 / R235C5: got '#N/A'Expecting numeric in G235 / R235C7: got '#N/A'Expecting numeric in L235 / R235C12: got '#N/A'Expecting numeric in B236 / R236C2: got '#N/A'Expecting numeric in E236 / R236C5: got '#N/A'Expecting numeric in G236 / R236C7: got '#N/A'Expecting numeric in L236 / R236C12: got '#N/A'Expecting numeric in B237 / R237C2: got '#N/A'Expecting numeric in E237 / R237C5: got '#N/A'Expecting numeric in G237 / R237C7: got '#N/A'Expecting numeric in L237 / R237C12: got '#N/A'Expecting numeric in B238 / R238C2: got '#N/A'Expecting numeric in E238 / R238C5: got '#N/A'Expecting numeric in G238 / R238C7: got '#N/A'Expecting numeric in L238 / R238C12: got '#N/A'Expecting numeric in B239 / R239C2: got '#N/A'Expecting numeric in E239 / R239C5: got '#N/A'Expecting numeric in G239 / R239C7: got '#N/A'Expecting numeric in L239 / R239C12: got '#N/A'Expecting numeric in B240 / R240C2: got '#N/A'Expecting numeric in E240 / R240C5: got '#N/A'Expecting numeric in G240 / R240C7: got '#N/A'Expecting numeric in L240 / R240C12: got '#N/A'Expecting numeric in B241 / R241C2: got '#N/A'Expecting numeric in E241 / R241C5: got '#N/A'Expecting numeric in G241 / R241C7: got '#N/A'Expecting numeric in L241 / R241C12: got '#N/A'Expecting numeric in B242 / R242C2: got '#N/A'Expecting numeric in E242 / R242C5: got '#N/A'Expecting numeric in G242 / R242C7: got '#N/A'Expecting numeric in L242 / R242C12: got '#N/A'Expecting numeric in B243 / R243C2: got '#N/A'Expecting numeric in E243 / R243C5: got '#N/A'Expecting numeric in G243 / R243C7: got '#N/A'Expecting numeric in L243 / R243C12: got '#N/A'Expecting numeric in B244 / R244C2: got '#N/A'Expecting numeric in E244 / R244C5: got '#N/A'Expecting numeric in G244 / R244C7: got '#N/A'Expecting numeric in L244 / R244C12: got '#N/A'Expecting numeric in B245 / R245C2: got '#N/A'Expecting numeric in E245 / R245C5: got '#N/A'Expecting numeric in G245 / R245C7: got '#N/A'Expecting numeric in L245 / R245C12: got '#N/A'Expecting numeric in B246 / R246C2: got '#N/A'Expecting numeric in E246 / R246C5: got '#N/A'Expecting numeric in G246 / R246C7: got '#N/A'Expecting numeric in L246 / R246C12: got '#N/A'Expecting numeric in B247 / R247C2: got '#N/A'Expecting numeric in E247 / R247C5: got '#N/A'Expecting numeric in G247 / R247C7: got '#N/A'Expecting numeric in L247 / R247C12: got '#N/A'Expecting numeric in B248 / R248C2: got '#N/A'Expecting numeric in E248 / R248C5: got '#N/A'Expecting numeric in G248 / R248C7: got '#N/A'Expecting numeric in L248 / R248C12: got '#N/A'Expecting numeric in B249 / R249C2: got '#N/A'Expecting numeric in E249 / R249C5: got '#N/A'Expecting numeric in G249 / R249C7: got '#N/A'Expecting numeric in L249 / R249C12: got '#N/A'Expecting numeric in B250 / R250C2: got '#N/A'Expecting numeric in E250 / R250C5: got '#N/A'Expecting numeric in G250 / R250C7: got '#N/A'Expecting numeric in L250 / R250C12: got '#N/A'Expecting numeric in B251 / R251C2: got '#N/A'Expecting numeric in E251 / R251C5: got '#N/A'Expecting numeric in G251 / R251C7: got '#N/A'Expecting numeric in L251 / R251C12: got '#N/A'Expecting numeric in B252 / R252C2: got '#N/A'Expecting numeric in E252 / R252C5: got '#N/A'Expecting numeric in G252 / R252C7: got '#N/A'Expecting numeric in L252 / R252C12: got '#N/A'Expecting numeric in B253 / R253C2: got '#N/A'Expecting numeric in E253 / R253C5: got '#N/A'Expecting numeric in G253 / R253C7: got '#N/A'Expecting numeric in L253 / R253C12: got '#N/A'Expecting numeric in B254 / R254C2: got '#N/A'Expecting numeric in E254 / R254C5: got '#N/A'Expecting numeric in G254 / R254C7: got '#N/A'Expecting numeric in L254 / R254C12: got '#N/A'Expecting numeric in B255 / R255C2: got '#N/A'Expecting numeric in E255 / R255C5: got '#N/A'Expecting numeric in G255 / R255C7: got '#N/A'Expecting numeric in L255 / R255C12: got '#N/A'Expecting numeric in B256 / R256C2: got '#N/A'Expecting numeric in E256 / R256C5: got '#N/A'Expecting numeric in G256 / R256C7: got '#N/A'Expecting numeric in L256 / R256C12: got '#N/A'Expecting numeric in B257 / R257C2: got '#N/A'Expecting numeric in E257 / R257C5: got '#N/A'Expecting numeric in G257 / R257C7: got '#N/A'Expecting numeric in L257 / R257C12: got '#N/A'Expecting numeric in B258 / R258C2: got '#N/A'Expecting numeric in E258 / R258C5: got '#N/A'Expecting numeric in G258 / R258C7: got '#N/A'Expecting numeric in L258 / R258C12: got '#N/A'Expecting numeric in B259 / R259C2: got '#N/A'Expecting numeric in E259 / R259C5: got '#N/A'Expecting numeric in G259 / R259C7: got '#N/A'Expecting numeric in L259 / R259C12: got '#N/A'Expecting numeric in B260 / R260C2: got '#N/A'Expecting numeric in E260 / R260C5: got '#N/A'Expecting numeric in G260 / R260C7: got '#N/A'Expecting numeric in L260 / R260C12: got '#N/A'Expecting numeric in B261 / R261C2: got '#N/A'Expecting numeric in E261 / R261C5: got '#N/A'Expecting numeric in G261 / R261C7: got '#N/A'Expecting numeric in L261 / R261C12: got '#N/A'Expecting numeric in B262 / R262C2: got '#N/A'Expecting numeric in E262 / R262C5: got '#N/A'Expecting numeric in G262 / R262C7: got '#N/A'Expecting numeric in L262 / R262C12: got '#N/A'Expecting numeric in B263 / R263C2: got '#N/A'Expecting numeric in E263 / R263C5: got '#N/A'Expecting numeric in G263 / R263C7: got '#N/A'Expecting numeric in L263 / R263C12: got '#N/A'Expecting numeric in B264 / R264C2: got '#N/A'Expecting numeric in E264 / R264C5: got '#N/A'Expecting numeric in G264 / R264C7: got '#N/A'Expecting numeric in L264 / R264C12: got '#N/A'Expecting numeric in B265 / R265C2: got '#N/A'Expecting numeric in E265 / R265C5: got '#N/A'Expecting numeric in G265 / R265C7: got '#N/A'Expecting numeric in L265 / R265C12: got '#N/A'Expecting numeric in B266 / R266C2: got '#N/A'Expecting numeric in E266 / R266C5: got '#N/A'Expecting numeric in G266 / R266C7: got '#N/A'Expecting numeric in L266 / R266C12: got '#N/A'Expecting numeric in B267 / R267C2: got '#N/A'Expecting numeric in E267 / R267C5: got '#N/A'Expecting numeric in G267 / R267C7: got '#N/A'Expecting numeric in L267 / R267C12: got '#N/A'Expecting numeric in B268 / R268C2: got '#N/A'Expecting numeric in E268 / R268C5: got '#N/A'Expecting numeric in G268 / R268C7: got '#N/A'Expecting numeric in L268 / R268C12: got '#N/A'Expecting numeric in B269 / R269C2: got '#N/A'Expecting numeric in E269 / R269C5: got '#N/A'Expecting numeric in G269 / R269C7: got '#N/A'Expecting numeric in L269 / R269C12: got '#N/A'Expecting numeric in B270 / R270C2: got '#N/A'Expecting numeric in E270 / R270C5: got '#N/A'Expecting numeric in G270 / R270C7: got '#N/A'Expecting numeric in L270 / R270C12: got '#N/A'Expecting numeric in B271 / R271C2: got '#N/A'Expecting numeric in E271 / R271C5: got '#N/A'Expecting numeric in G271 / R271C7: got '#N/A'Expecting numeric in L271 / R271C12: got '#N/A'Expecting numeric in B272 / R272C2: got '#N/A'Expecting numeric in E272 / R272C5: got '#N/A'Expecting numeric in G272 / R272C7: got '#N/A'Expecting numeric in L272 / R272C12: got '#N/A'Expecting numeric in B273 / R273C2: got '#N/A'Expecting numeric in E273 / R273C5: got '#N/A'Expecting numeric in G273 / R273C7: got '#N/A'Expecting numeric in L273 / R273C12: got '#N/A'Expecting numeric in B274 / R274C2: got '#N/A'Expecting numeric in E274 / R274C5: got '#N/A'Expecting numeric in G274 / R274C7: got '#N/A'Expecting numeric in L274 / R274C12: got '#N/A'Expecting numeric in B275 / R275C2: got '#N/A'Expecting numeric in E275 / R275C5: got '#N/A'Expecting numeric in G275 / R275C7: got '#N/A'Expecting numeric in L275 / R275C12: got '#N/A'Expecting numeric in B276 / R276C2: got '#N/A'Expecting numeric in E276 / R276C5: got '#N/A'Expecting numeric in G276 / R276C7: got '#N/A'Expecting numeric in L276 / R276C12: got '#N/A'Expecting numeric in B277 / R277C2: got '#N/A'Expecting numeric in E277 / R277C5: got '#N/A'Expecting numeric in G277 / R277C7: got '#N/A'Expecting numeric in L277 / R277C12: got '#N/A'Expecting numeric in B278 / R278C2: got '#N/A'Expecting numeric in E278 / R278C5: got '#N/A'Expecting numeric in G278 / R278C7: got '#N/A'Expecting numeric in L278 / R278C12: got '#N/A'Expecting numeric in B279 / R279C2: got '#N/A'Expecting numeric in E279 / R279C5: got '#N/A'Expecting numeric in G279 / R279C7: got '#N/A'Expecting numeric in L279 / R279C12: got '#N/A'Expecting numeric in B280 / R280C2: got '#N/A'Expecting numeric in E280 / R280C5: got '#N/A'Expecting numeric in G280 / R280C7: got '#N/A'Expecting numeric in L280 / R280C12: got '#N/A'Expecting numeric in B281 / R281C2: got '#N/A'Expecting numeric in E281 / R281C5: got '#N/A'Expecting numeric in G281 / R281C7: got '#N/A'Expecting numeric in L281 / R281C12: got '#N/A'Expecting numeric in B282 / R282C2: got '#N/A'Expecting numeric in E282 / R282C5: got '#N/A'Expecting numeric in G282 / R282C7: got '#N/A'Expecting numeric in L282 / R282C12: got '#N/A'Expecting numeric in B283 / R283C2: got '#N/A'Expecting numeric in E283 / R283C5: got '#N/A'Expecting numeric in G283 / R283C7: got '#N/A'Expecting numeric in L283 / R283C12: got '#N/A'Expecting numeric in B284 / R284C2: got '#N/A'Expecting numeric in E284 / R284C5: got '#N/A'Expecting numeric in G284 / R284C7: got '#N/A'Expecting numeric in L284 / R284C12: got '#N/A'Expecting numeric in B285 / R285C2: got '#N/A'Expecting numeric in E285 / R285C5: got '#N/A'Expecting numeric in G285 / R285C7: got '#N/A'Expecting numeric in L285 / R285C12: got '#N/A'Expecting numeric in B286 / R286C2: got '#N/A'Expecting numeric in E286 / R286C5: got '#N/A'Expecting numeric in G286 / R286C7: got '#N/A'Expecting numeric in L286 / R286C12: got '#N/A'Expecting numeric in B287 / R287C2: got '#N/A'Expecting numeric in E287 / R287C5: got '#N/A'Expecting numeric in G287 / R287C7: got '#N/A'Expecting numeric in L287 / R287C12: got '#N/A'Expecting numeric in B288 / R288C2: got '#N/A'Expecting numeric in E288 / R288C5: got '#N/A'Expecting numeric in G288 / R288C7: got '#N/A'Expecting numeric in L288 / R288C12: got '#N/A'Expecting numeric in B289 / R289C2: got '#N/A'Expecting numeric in E289 / R289C5: got '#N/A'Expecting numeric in G289 / R289C7: got '#N/A'Expecting numeric in L289 / R289C12: got '#N/A'Expecting numeric in B290 / R290C2: got '#N/A'Expecting numeric in E290 / R290C5: got '#N/A'Expecting numeric in G290 / R290C7: got '#N/A'Expecting numeric in L290 / R290C12: got '#N/A'Expecting numeric in B291 / R291C2: got '#N/A'Expecting numeric in E291 / R291C5: got '#N/A'Expecting numeric in G291 / R291C7: got '#N/A'Expecting numeric in L291 / R291C12: got '#N/A'Expecting numeric in B292 / R292C2: got '#N/A'Expecting numeric in E292 / R292C5: got '#N/A'Expecting numeric in G292 / R292C7: got '#N/A'Expecting numeric in L292 / R292C12: got '#N/A'Expecting numeric in B293 / R293C2: got '#N/A'Expecting numeric in E293 / R293C5: got '#N/A'Expecting numeric in G293 / R293C7: got '#N/A'Expecting numeric in L293 / R293C12: got '#N/A'Expecting numeric in B294 / R294C2: got '#N/A'Expecting numeric in E294 / R294C5: got '#N/A'Expecting numeric in G294 / R294C7: got '#N/A'Expecting numeric in L294 / R294C12: got '#N/A'Expecting numeric in B295 / R295C2: got '#N/A'Expecting numeric in E295 / R295C5: got '#N/A'Expecting numeric in G295 / R295C7: got '#N/A'Expecting numeric in L295 / R295C12: got '#N/A'Expecting numeric in B296 / R296C2: got '#N/A'Expecting numeric in E296 / R296C5: got '#N/A'Expecting numeric in G296 / R296C7: got '#N/A'Expecting numeric in L296 / R296C12: got '#N/A'Expecting numeric in B297 / R297C2: got '#N/A'Expecting numeric in E297 / R297C5: got '#N/A'Expecting numeric in G297 / R297C7: got '#N/A'Expecting numeric in L297 / R297C12: got '#N/A'Expecting numeric in B298 / R298C2: got '#N/A'Expecting numeric in E298 / R298C5: got '#N/A'Expecting numeric in G298 / R298C7: got '#N/A'Expecting numeric in L298 / R298C12: got '#N/A'Expecting numeric in B299 / R299C2: got '#N/A'Expecting numeric in E299 / R299C5: got '#N/A'Expecting numeric in G299 / R299C7: got '#N/A'Expecting numeric in L299 / R299C12: got '#N/A'Expecting numeric in B300 / R300C2: got '#N/A'Expecting numeric in E300 / R300C5: got '#N/A'Expecting numeric in G300 / R300C7: got '#N/A'Expecting numeric in L300 / R300C12: got '#N/A'Expecting numeric in B301 / R301C2: got '#N/A'Expecting numeric in E301 / R301C5: got '#N/A'Expecting numeric in G301 / R301C7: got '#N/A'Expecting numeric in L301 / R301C12: got '#N/A'Expecting numeric in B302 / R302C2: got '#N/A'Expecting numeric in E302 / R302C5: got '#N/A'Expecting numeric in G302 / R302C7: got '#N/A'Expecting numeric in L302 / R302C12: got '#N/A'Expecting numeric in B303 / R303C2: got '#N/A'Expecting numeric in E303 / R303C5: got '#N/A'Expecting numeric in G303 / R303C7: got '#N/A'Expecting numeric in L303 / R303C12: got '#N/A'Expecting numeric in B304 / R304C2: got '#N/A'Expecting numeric in E304 / R304C5: got '#N/A'Expecting numeric in G304 / R304C7: got '#N/A'Expecting numeric in L304 / R304C12: got '#N/A'Expecting numeric in B305 / R305C2: got '#N/A'Expecting numeric in E305 / R305C5: got '#N/A'Expecting numeric in G305 / R305C7: got '#N/A'Expecting numeric in L305 / R305C12: got '#N/A'Expecting numeric in B306 / R306C2: got '#N/A'Expecting numeric in E306 / R306C5: got '#N/A'Expecting numeric in G306 / R306C7: got '#N/A'Expecting numeric in L306 / R306C12: got '#N/A'Expecting numeric in B307 / R307C2: got '#N/A'Expecting numeric in E307 / R307C5: got '#N/A'Expecting numeric in G307 / R307C7: got '#N/A'Expecting numeric in L307 / R307C12: got '#N/A'Expecting numeric in B308 / R308C2: got '#N/A'Expecting numeric in E308 / R308C5: got '#N/A'Expecting numeric in G308 / R308C7: got '#N/A'Expecting numeric in L308 / R308C12: got '#N/A'Expecting numeric in B309 / R309C2: got '#N/A'Expecting numeric in E309 / R309C5: got '#N/A'Expecting numeric in G309 / R309C7: got '#N/A'Expecting numeric in L309 / R309C12: got '#N/A'Expecting numeric in B310 / R310C2: got '#N/A'Expecting numeric in E310 / R310C5: got '#N/A'Expecting numeric in G310 / R310C7: got '#N/A'Expecting numeric in L310 / R310C12: got '#N/A'Expecting numeric in B311 / R311C2: got '#N/A'Expecting numeric in E311 / R311C5: got '#N/A'Expecting numeric in G311 / R311C7: got '#N/A'Expecting numeric in L311 / R311C12: got '#N/A'Expecting numeric in B312 / R312C2: got '#N/A'Expecting numeric in E312 / R312C5: got '#N/A'Expecting numeric in G312 / R312C7: got '#N/A'Expecting numeric in L312 / R312C12: got '#N/A'Expecting numeric in B313 / R313C2: got '#N/A'Expecting numeric in E313 / R313C5: got '#N/A'Expecting numeric in G313 / R313C7: got '#N/A'Expecting numeric in L313 / R313C12: got '#N/A'Expecting numeric in B314 / R314C2: got '#N/A'Expecting numeric in E314 / R314C5: got '#N/A'Expecting numeric in G314 / R314C7: got '#N/A'Expecting numeric in L314 / R314C12: got '#N/A'Expecting numeric in B315 / R315C2: got '#N/A'Expecting numeric in E315 / R315C5: got '#N/A'Expecting numeric in G315 / R315C7: got '#N/A'Expecting numeric in L315 / R315C12: got '#N/A'Expecting numeric in B316 / R316C2: got '#N/A'Expecting numeric in E316 / R316C5: got '#N/A'Expecting numeric in G316 / R316C7: got '#N/A'Expecting numeric in L316 / R316C12: got '#N/A'Expecting numeric in B317 / R317C2: got '#N/A'Expecting numeric in E317 / R317C5: got '#N/A'Expecting numeric in G317 / R317C7: got '#N/A'Expecting numeric in L317 / R317C12: got '#N/A'Expecting numeric in B318 / R318C2: got '#N/A'Expecting numeric in E318 / R318C5: got '#N/A'Expecting numeric in G318 / R318C7: got '#N/A'Expecting numeric in L318 / R318C12: got '#N/A'Expecting numeric in B319 / R319C2: got '#N/A'Expecting numeric in E319 / R319C5: got '#N/A'Expecting numeric in G319 / R319C7: got '#N/A'Expecting numeric in L319 / R319C12: got '#N/A'Expecting numeric in B320 / R320C2: got '#N/A'Expecting numeric in E320 / R320C5: got '#N/A'Expecting numeric in G320 / R320C7: got '#N/A'Expecting numeric in L320 / R320C12: got '#N/A'Expecting numeric in B321 / R321C2: got '#N/A'Expecting numeric in E321 / R321C5: got '#N/A'Expecting numeric in G321 / R321C7: got '#N/A'Expecting numeric in L321 / R321C12: got '#N/A'Expecting numeric in B322 / R322C2: got '#N/A'Expecting numeric in E322 / R322C5: got '#N/A'Expecting numeric in G322 / R322C7: got '#N/A'Expecting numeric in L322 / R322C12: got '#N/A'Expecting numeric in B323 / R323C2: got '#N/A'Expecting numeric in E323 / R323C5: got '#N/A'Expecting numeric in G323 / R323C7: got '#N/A'Expecting numeric in L323 / R323C12: got '#N/A'Expecting numeric in B324 / R324C2: got '#N/A'Expecting numeric in E324 / R324C5: got '#N/A'Expecting numeric in G324 / R324C7: got '#N/A'Expecting numeric in L324 / R324C12: got '#N/A'Expecting numeric in B325 / R325C2: got '#N/A'Expecting numeric in E325 / R325C5: got '#N/A'Expecting numeric in G325 / R325C7: got '#N/A'Expecting numeric in L325 / R325C12: got '#N/A'Expecting numeric in B326 / R326C2: got '#N/A'Expecting numeric in E326 / R326C5: got '#N/A'Expecting numeric in G326 / R326C7: got '#N/A'Expecting numeric in L326 / R326C12: got '#N/A'Expecting numeric in B327 / R327C2: got '#N/A'Expecting numeric in E327 / R327C5: got '#N/A'Expecting numeric in G327 / R327C7: got '#N/A'Expecting numeric in L327 / R327C12: got '#N/A'Expecting numeric in B328 / R328C2: got '#N/A'Expecting numeric in E328 / R328C5: got '#N/A'Expecting numeric in G328 / R328C7: got '#N/A'Expecting numeric in L328 / R328C12: got '#N/A'Expecting numeric in B329 / R329C2: got '#N/A'Expecting numeric in E329 / R329C5: got '#N/A'Expecting numeric in G329 / R329C7: got '#N/A'Expecting numeric in L329 / R329C12: got '#N/A'Expecting numeric in B330 / R330C2: got '#N/A'Expecting numeric in E330 / R330C5: got '#N/A'Expecting numeric in G330 / R330C7: got '#N/A'Expecting numeric in L330 / R330C12: got '#N/A'Expecting numeric in B331 / R331C2: got '#N/A'Expecting numeric in E331 / R331C5: got '#N/A'Expecting numeric in G331 / R331C7: got '#N/A'Expecting numeric in L331 / R331C12: got '#N/A'Expecting numeric in B332 / R332C2: got '#N/A'Expecting numeric in E332 / R332C5: got '#N/A'Expecting numeric in G332 / R332C7: got '#N/A'Expecting numeric in L332 / R332C12: got '#N/A'Expecting numeric in B333 / R333C2: got '#N/A'Expecting numeric in E333 / R333C5: got '#N/A'Expecting numeric in G333 / R333C7: got '#N/A'Expecting numeric in L333 / R333C12: got '#N/A'Expecting numeric in B334 / R334C2: got '#N/A'Expecting numeric in E334 / R334C5: got '#N/A'Expecting numeric in G334 / R334C7: got '#N/A'Expecting numeric in L334 / R334C12: got '#N/A'Expecting numeric in B335 / R335C2: got '#N/A'Expecting numeric in E335 / R335C5: got '#N/A'Expecting numeric in G335 / R335C7: got '#N/A'Expecting numeric in L335 / R335C12: got '#N/A'Expecting numeric in B336 / R336C2: got '#N/A'Expecting numeric in E336 / R336C5: got '#N/A'Expecting numeric in G336 / R336C7: got '#N/A'Expecting numeric in L336 / R336C12: got '#N/A'Expecting numeric in B337 / R337C2: got '#N/A'Expecting numeric in E337 / R337C5: got '#N/A'Expecting numeric in G337 / R337C7: got '#N/A'Expecting numeric in L337 / R337C12: got '#N/A'Expecting numeric in B338 / R338C2: got '#N/A'Expecting numeric in E338 / R338C5: got '#N/A'Expecting numeric in G338 / R338C7: got '#N/A'Expecting numeric in L338 / R338C12: got '#N/A'Expecting numeric in B339 / R339C2: got '#N/A'Expecting numeric in E339 / R339C5: got '#N/A'Expecting numeric in G339 / R339C7: got '#N/A'Expecting numeric in L339 / R339C12: got '#N/A'Expecting numeric in B340 / R340C2: got '#N/A'Expecting numeric in E340 / R340C5: got '#N/A'Expecting numeric in G340 / R340C7: got '#N/A'Expecting numeric in L340 / R340C12: got '#N/A'Expecting numeric in B341 / R341C2: got '#N/A'Expecting numeric in E341 / R341C5: got '#N/A'Expecting numeric in G341 / R341C7: got '#N/A'Expecting numeric in L341 / R341C12: got '#N/A'Expecting numeric in B342 / R342C2: got '#N/A'Expecting numeric in E342 / R342C5: got '#N/A'Expecting numeric in G342 / R342C7: got '#N/A'Expecting numeric in L342 / R342C12: got '#N/A'Expecting numeric in B343 / R343C2: got '#N/A'Expecting numeric in E343 / R343C5: got '#N/A'Expecting numeric in G343 / R343C7: got '#N/A'Expecting numeric in L343 / R343C12: got '#N/A'Expecting numeric in B344 / R344C2: got '#N/A'Expecting numeric in E344 / R344C5: got '#N/A'Expecting numeric in G344 / R344C7: got '#N/A'Expecting numeric in L344 / R344C12: got '#N/A'Expecting numeric in B345 / R345C2: got '#N/A'Expecting numeric in E345 / R345C5: got '#N/A'Expecting numeric in G345 / R345C7: got '#N/A'Expecting numeric in L345 / R345C12: got '#N/A'Expecting numeric in B346 / R346C2: got '#N/A'Expecting numeric in E346 / R346C5: got '#N/A'Expecting numeric in G346 / R346C7: got '#N/A'Expecting numeric in L346 / R346C12: got '#N/A'Expecting numeric in B347 / R347C2: got '#N/A'Expecting numeric in E347 / R347C5: got '#N/A'Expecting numeric in G347 / R347C7: got '#N/A'Expecting numeric in L347 / R347C12: got '#N/A'Expecting numeric in B348 / R348C2: got '#N/A'Expecting numeric in E348 / R348C5: got '#N/A'Expecting numeric in G348 / R348C7: got '#N/A'Expecting numeric in L348 / R348C12: got '#N/A'Expecting numeric in B349 / R349C2: got '#N/A'Expecting numeric in E349 / R349C5: got '#N/A'Expecting numeric in G349 / R349C7: got '#N/A'Expecting numeric in L349 / R349C12: got '#N/A'Expecting numeric in B350 / R350C2: got '#N/A'Expecting numeric in E350 / R350C5: got '#N/A'Expecting numeric in G350 / R350C7: got '#N/A'Expecting numeric in L350 / R350C12: got '#N/A'Expecting numeric in B351 / R351C2: got '#N/A'Expecting numeric in E351 / R351C5: got '#N/A'Expecting numeric in G351 / R351C7: got '#N/A'Expecting numeric in L351 / R351C12: got '#N/A'Expecting numeric in B352 / R352C2: got '#N/A'Expecting numeric in E352 / R352C5: got '#N/A'Expecting numeric in G352 / R352C7: got '#N/A'Expecting numeric in L352 / R352C12: got '#N/A'Expecting numeric in B353 / R353C2: got '#N/A'Expecting numeric in E353 / R353C5: got '#N/A'Expecting numeric in G353 / R353C7: got '#N/A'Expecting numeric in L353 / R353C12: got '#N/A'Expecting numeric in B354 / R354C2: got '#N/A'Expecting numeric in E354 / R354C5: got '#N/A'Expecting numeric in G354 / R354C7: got '#N/A'Expecting numeric in L354 / R354C12: got '#N/A'Expecting numeric in B355 / R355C2: got '#N/A'Expecting numeric in E355 / R355C5: got '#N/A'Expecting numeric in G355 / R355C7: got '#N/A'Expecting numeric in L355 / R355C12: got '#N/A'Expecting numeric in B356 / R356C2: got '#N/A'Expecting numeric in E356 / R356C5: got '#N/A'Expecting numeric in G356 / R356C7: got '#N/A'Expecting numeric in L356 / R356C12: got '#N/A'Expecting numeric in B357 / R357C2: got '#N/A'Expecting numeric in E357 / R357C5: got '#N/A'Expecting numeric in G357 / R357C7: got '#N/A'Expecting numeric in L357 / R357C12: got '#N/A'Expecting numeric in B358 / R358C2: got '#N/A'Expecting numeric in E358 / R358C5: got '#N/A'Expecting numeric in G358 / R358C7: got '#N/A'Expecting numeric in L358 / R358C12: got '#N/A'Expecting numeric in B359 / R359C2: got '#N/A'Expecting numeric in E359 / R359C5: got '#N/A'Expecting numeric in G359 / R359C7: got '#N/A'Expecting numeric in L359 / R359C12: got '#N/A'Expecting numeric in B360 / R360C2: got '#N/A'Expecting numeric in E360 / R360C5: got '#N/A'Expecting numeric in G360 / R360C7: got '#N/A'Expecting numeric in L360 / R360C12: got '#N/A'Expecting numeric in B361 / R361C2: got '#N/A'Expecting numeric in E361 / R361C5: got '#N/A'Expecting numeric in G361 / R361C7: got '#N/A'Expecting numeric in L361 / R361C12: got '#N/A'Expecting numeric in B362 / R362C2: got '#N/A'Expecting numeric in E362 / R362C5: got '#N/A'Expecting numeric in G362 / R362C7: got '#N/A'Expecting numeric in L362 / R362C12: got '#N/A'Expecting numeric in B363 / R363C2: got '#N/A'Expecting numeric in E363 / R363C5: got '#N/A'Expecting numeric in G363 / R363C7: got '#N/A'Expecting numeric in L363 / R363C12: got '#N/A'Expecting numeric in B364 / R364C2: got '#N/A'Expecting numeric in E364 / R364C5: got '#N/A'Expecting numeric in G364 / R364C7: got '#N/A'Expecting numeric in L364 / R364C12: got '#N/A'Expecting numeric in B365 / R365C2: got '#N/A'Expecting numeric in E365 / R365C5: got '#N/A'Expecting numeric in G365 / R365C7: got '#N/A'Expecting numeric in L365 / R365C12: got '#N/A'Expecting numeric in B366 / R366C2: got '#N/A'Expecting numeric in E366 / R366C5: got '#N/A'Expecting numeric in G366 / R366C7: got '#N/A'Expecting numeric in L366 / R366C12: got '#N/A'Expecting numeric in B367 / R367C2: got '#N/A'Expecting numeric in E367 / R367C5: got '#N/A'Expecting numeric in G367 / R367C7: got '#N/A'Expecting numeric in L367 / R367C12: got '#N/A'Expecting numeric in B368 / R368C2: got '#N/A'Expecting numeric in E368 / R368C5: got '#N/A'Expecting numeric in G368 / R368C7: got '#N/A'Expecting numeric in L368 / R368C12: got '#N/A'Expecting numeric in B369 / R369C2: got '#N/A'Expecting numeric in E369 / R369C5: got '#N/A'Expecting numeric in G369 / R369C7: got '#N/A'Expecting numeric in L369 / R369C12: got '#N/A'Expecting numeric in B370 / R370C2: got '#N/A'Expecting numeric in E370 / R370C5: got '#N/A'Expecting numeric in G370 / R370C7: got '#N/A'Expecting numeric in L370 / R370C12: got '#N/A'Expecting numeric in B371 / R371C2: got '#N/A'Expecting numeric in E371 / R371C5: got '#N/A'Expecting numeric in G371 / R371C7: got '#N/A'Expecting numeric in L371 / R371C12: got '#N/A'Expecting numeric in B372 / R372C2: got '#N/A'Expecting numeric in E372 / R372C5: got '#N/A'Expecting numeric in G372 / R372C7: got '#N/A'Expecting numeric in L372 / R372C12: got '#N/A'Expecting numeric in B373 / R373C2: got '#N/A'Expecting numeric in E373 / R373C5: got '#N/A'Expecting numeric in G373 / R373C7: got '#N/A'Expecting numeric in L373 / R373C12: got '#N/A'Expecting numeric in B374 / R374C2: got '#N/A'Expecting numeric in E374 / R374C5: got '#N/A'Expecting numeric in G374 / R374C7: got '#N/A'Expecting numeric in L374 / R374C12: got '#N/A'Expecting numeric in B375 / R375C2: got '#N/A'Expecting numeric in E375 / R375C5: got '#N/A'Expecting numeric in G375 / R375C7: got '#N/A'Expecting numeric in L375 / R375C12: got '#N/A'Expecting numeric in B376 / R376C2: got '#N/A'Expecting numeric in E376 / R376C5: got '#N/A'Expecting numeric in G376 / R376C7: got '#N/A'Expecting numeric in L376 / R376C12: got '#N/A'Expecting numeric in B377 / R377C2: got '#N/A'Expecting numeric in E377 / R377C5: got '#N/A'Expecting numeric in G377 / R377C7: got '#N/A'Expecting numeric in L377 / R377C12: got '#N/A'Expecting numeric in B378 / R378C2: got '#N/A'Expecting numeric in E378 / R378C5: got '#N/A'Expecting numeric in G378 / R378C7: got '#N/A'Expecting numeric in L378 / R378C12: got '#N/A'Expecting numeric in B379 / R379C2: got '#N/A'Expecting numeric in E379 / R379C5: got '#N/A'Expecting numeric in G379 / R379C7: got '#N/A'Expecting numeric in L379 / R379C12: got '#N/A'Expecting numeric in B380 / R380C2: got '#N/A'Expecting numeric in E380 / R380C5: got '#N/A'Expecting numeric in G380 / R380C7: got '#N/A'Expecting numeric in L380 / R380C12: got '#N/A'Expecting numeric in B381 / R381C2: got '#N/A'Expecting numeric in E381 / R381C5: got '#N/A'Expecting numeric in G381 / R381C7: got '#N/A'Expecting numeric in L381 / R381C12: got '#N/A'Expecting numeric in B382 / R382C2: got '#N/A'Expecting numeric in E382 / R382C5: got '#N/A'Expecting numeric in G382 / R382C7: got '#N/A'Expecting numeric in L382 / R382C12: got '#N/A'Expecting numeric in B383 / R383C2: got '#N/A'Expecting numeric in E383 / R383C5: got '#N/A'Expecting numeric in G383 / R383C7: got '#N/A'Expecting numeric in L383 / R383C12: got '#N/A'Expecting numeric in B384 / R384C2: got '#N/A'Expecting numeric in E384 / R384C5: got '#N/A'Expecting numeric in G384 / R384C7: got '#N/A'Expecting numeric in L384 / R384C12: got '#N/A'Expecting numeric in B385 / R385C2: got '#N/A'Expecting numeric in E385 / R385C5: got '#N/A'Expecting numeric in G385 / R385C7: got '#N/A'Expecting numeric in L385 / R385C12: got '#N/A'Expecting numeric in B386 / R386C2: got '#N/A'Expecting numeric in E386 / R386C5: got '#N/A'Expecting numeric in G386 / R386C7: got '#N/A'Expecting numeric in L386 / R386C12: got '#N/A'Expecting numeric in B387 / R387C2: got '#N/A'Expecting numeric in E387 / R387C5: got '#N/A'Expecting numeric in G387 / R387C7: got '#N/A'Expecting numeric in L387 / R387C12: got '#N/A'Expecting numeric in B388 / R388C2: got '#N/A'Expecting numeric in E388 / R388C5: got '#N/A'Expecting numeric in G388 / R388C7: got '#N/A'Expecting numeric in L388 / R388C12: got '#N/A'Expecting numeric in B389 / R389C2: got '#N/A'Expecting numeric in E389 / R389C5: got '#N/A'Expecting numeric in G389 / R389C7: got '#N/A'Expecting numeric in L389 / R389C12: got '#N/A'Expecting numeric in B390 / R390C2: got '#N/A'Expecting numeric in E390 / R390C5: got '#N/A'Expecting numeric in G390 / R390C7: got '#N/A'Expecting numeric in L390 / R390C12: got '#N/A'Expecting numeric in B391 / R391C2: got '#N/A'Expecting numeric in E391 / R391C5: got '#N/A'Expecting numeric in G391 / R391C7: got '#N/A'Expecting numeric in L391 / R391C12: got '#N/A'Expecting numeric in B392 / R392C2: got '#N/A'Expecting numeric in E392 / R392C5: got '#N/A'Expecting numeric in G392 / R392C7: got '#N/A'Expecting numeric in L392 / R392C12: got '#N/A'Expecting numeric in B393 / R393C2: got '#N/A'Expecting numeric in E393 / R393C5: got '#N/A'Expecting numeric in G393 / R393C7: got '#N/A'Expecting numeric in L393 / R393C12: got '#N/A'Expecting numeric in B394 / R394C2: got '#N/A'Expecting numeric in E394 / R394C5: got '#N/A'Expecting numeric in G394 / R394C7: got '#N/A'Expecting numeric in L394 / R394C12: got '#N/A'Expecting numeric in B395 / R395C2: got '#N/A'Expecting numeric in E395 / R395C5: got '#N/A'Expecting numeric in G395 / R395C7: got '#N/A'Expecting numeric in L395 / R395C12: got '#N/A'Expecting numeric in B396 / R396C2: got '#N/A'Expecting numeric in E396 / R396C5: got '#N/A'Expecting numeric in G396 / R396C7: got '#N/A'Expecting numeric in L396 / R396C12: got '#N/A'Expecting numeric in B397 / R397C2: got '#N/A'Expecting numeric in E397 / R397C5: got '#N/A'Expecting numeric in G397 / R397C7: got '#N/A'Expecting numeric in L397 / R397C12: got '#N/A'Expecting numeric in B398 / R398C2: got '#N/A'Expecting numeric in E398 / R398C5: got '#N/A'Expecting numeric in G398 / R398C7: got '#N/A'Expecting numeric in L398 / R398C12: got '#N/A'Expecting numeric in B399 / R399C2: got '#N/A'Expecting numeric in E399 / R399C5: got '#N/A'Expecting numeric in G399 / R399C7: got '#N/A'Expecting numeric in L399 / R399C12: got '#N/A'Expecting numeric in B400 / R400C2: got '#N/A'Expecting numeric in E400 / R400C5: got '#N/A'Expecting numeric in G400 / R400C7: got '#N/A'Expecting numeric in L400 / R400C12: got '#N/A'Expecting numeric in B401 / R401C2: got '#N/A'Expecting numeric in E401 / R401C5: got '#N/A'Expecting numeric in G401 / R401C7: got '#N/A'Expecting numeric in L401 / R401C12: got '#N/A'Expecting numeric in B402 / R402C2: got '#N/A'Expecting numeric in E402 / R402C5: got '#N/A'Expecting numeric in G402 / R402C7: got '#N/A'Expecting numeric in L402 / R402C12: got '#N/A'Expecting numeric in B403 / R403C2: got '#N/A'Expecting numeric in E403 / R403C5: got '#N/A'Expecting numeric in G403 / R403C7: got '#N/A'Expecting numeric in L403 / R403C12: got '#N/A'Expecting numeric in B404 / R404C2: got '#N/A'Expecting numeric in E404 / R404C5: got '#N/A'Expecting numeric in G404 / R404C7: got '#N/A'Expecting numeric in L404 / R404C12: got '#N/A'Expecting numeric in B405 / R405C2: got '#N/A'Expecting numeric in E405 / R405C5: got '#N/A'Expecting numeric in G405 / R405C7: got '#N/A'Expecting numeric in L405 / R405C12: got '#N/A'Expecting numeric in B406 / R406C2: got '#N/A'Expecting numeric in E406 / R406C5: got '#N/A'Expecting numeric in G406 / R406C7: got '#N/A'Expecting numeric in L406 / R406C12: got '#N/A'Expecting numeric in B407 / R407C2: got '#N/A'Expecting numeric in E407 / R407C5: got '#N/A'Expecting numeric in G407 / R407C7: got '#N/A'Expecting numeric in L407 / R407C12: got '#N/A'Expecting numeric in B408 / R408C2: got '#N/A'Expecting numeric in E408 / R408C5: got '#N/A'Expecting numeric in G408 / R408C7: got '#N/A'Expecting numeric in L408 / R408C12: got '#N/A'Expecting numeric in B409 / R409C2: got '#N/A'Expecting numeric in E409 / R409C5: got '#N/A'Expecting numeric in G409 / R409C7: got '#N/A'Expecting numeric in L409 / R409C12: got '#N/A'Expecting numeric in B410 / R410C2: got '#N/A'Expecting numeric in E410 / R410C5: got '#N/A'Expecting numeric in G410 / R410C7: got '#N/A'Expecting numeric in L410 / R410C12: got '#N/A'Expecting numeric in B411 / R411C2: got '#N/A'Expecting numeric in E411 / R411C5: got '#N/A'Expecting numeric in G411 / R411C7: got '#N/A'Expecting numeric in L411 / R411C12: got '#N/A'Expecting numeric in B412 / R412C2: got '#N/A'Expecting numeric in E412 / R412C5: got '#N/A'Expecting numeric in G412 / R412C7: got '#N/A'Expecting numeric in L412 / R412C12: got '#N/A'Expecting numeric in B413 / R413C2: got '#N/A'Expecting numeric in E413 / R413C5: got '#N/A'Expecting numeric in G413 / R413C7: got '#N/A'Expecting numeric in L413 / R413C12: got '#N/A'Expecting numeric in B414 / R414C2: got '#N/A'Expecting numeric in E414 / R414C5: got '#N/A'Expecting numeric in G414 / R414C7: got '#N/A'Expecting numeric in L414 / R414C12: got '#N/A'Expecting numeric in B415 / R415C2: got '#N/A'Expecting numeric in E415 / R415C5: got '#N/A'Expecting numeric in G415 / R415C7: got '#N/A'Expecting numeric in L415 / R415C12: got '#N/A'Expecting numeric in B416 / R416C2: got '#N/A'Expecting numeric in E416 / R416C5: got '#N/A'Expecting numeric in G416 / R416C7: got '#N/A'Expecting numeric in L416 / R416C12: got '#N/A'Expecting numeric in B417 / R417C2: got '#N/A'Expecting numeric in E417 / R417C5: got '#N/A'Expecting numeric in G417 / R417C7: got '#N/A'Expecting numeric in L417 / R417C12: got '#N/A'Expecting numeric in B418 / R418C2: got '#N/A'Expecting numeric in E418 / R418C5: got '#N/A'Expecting numeric in G418 / R418C7: got '#N/A'Expecting numeric in L418 / R418C12: got '#N/A'Expecting numeric in B419 / R419C2: got '#N/A'Expecting numeric in E419 / R419C5: got '#N/A'Expecting numeric in G419 / R419C7: got '#N/A'Expecting numeric in L419 / R419C12: got '#N/A'Expecting numeric in B420 / R420C2: got '#N/A'Expecting numeric in E420 / R420C5: got '#N/A'Expecting numeric in G420 / R420C7: got '#N/A'Expecting numeric in L420 / R420C12: got '#N/A'Expecting numeric in B421 / R421C2: got '#N/A'Expecting numeric in E421 / R421C5: got '#N/A'Expecting numeric in G421 / R421C7: got '#N/A'Expecting numeric in L421 / R421C12: got '#N/A'Expecting numeric in B422 / R422C2: got '#N/A'Expecting numeric in E422 / R422C5: got '#N/A'Expecting numeric in G422 / R422C7: got '#N/A'Expecting numeric in L422 / R422C12: got '#N/A'Expecting numeric in B423 / R423C2: got '#N/A'Expecting numeric in E423 / R423C5: got '#N/A'Expecting numeric in G423 / R423C7: got '#N/A'Expecting numeric in L423 / R423C12: got '#N/A'Expecting numeric in B424 / R424C2: got '#N/A'Expecting numeric in E424 / R424C5: got '#N/A'Expecting numeric in G424 / R424C7: got '#N/A'Expecting numeric in L424 / R424C12: got '#N/A'Expecting numeric in B425 / R425C2: got '#N/A'Expecting numeric in E425 / R425C5: got '#N/A'Expecting numeric in G425 / R425C7: got '#N/A'Expecting numeric in L425 / R425C12: got '#N/A'Expecting numeric in B426 / R426C2: got '#N/A'Expecting numeric in E426 / R426C5: got '#N/A'Expecting numeric in G426 / R426C7: got '#N/A'Expecting numeric in L426 / R426C12: got '#N/A'Expecting numeric in B427 / R427C2: got '#N/A'Expecting numeric in E427 / R427C5: got '#N/A'Expecting numeric in G427 / R427C7: got '#N/A'Expecting numeric in L427 / R427C12: got '#N/A'Expecting numeric in B428 / R428C2: got '#N/A'Expecting numeric in E428 / R428C5: got '#N/A'Expecting numeric in G428 / R428C7: got '#N/A'Expecting numeric in L428 / R428C12: got '#N/A'Expecting numeric in B429 / R429C2: got '#N/A'Expecting numeric in E429 / R429C5: got '#N/A'Expecting numeric in G429 / R429C7: got '#N/A'Expecting numeric in L429 / R429C12: got '#N/A'Expecting numeric in B430 / R430C2: got '#N/A'Expecting numeric in E430 / R430C5: got '#N/A'Expecting numeric in G430 / R430C7: got '#N/A'Expecting numeric in L430 / R430C12: got '#N/A'Expecting numeric in B431 / R431C2: got '#N/A'Expecting numeric in E431 / R431C5: got '#N/A'Expecting numeric in G431 / R431C7: got '#N/A'Expecting numeric in L431 / R431C12: got '#N/A'Expecting numeric in B432 / R432C2: got '#N/A'Expecting numeric in E432 / R432C5: got '#N/A'Expecting numeric in G432 / R432C7: got '#N/A'Expecting numeric in L432 / R432C12: got '#N/A'Expecting numeric in B433 / R433C2: got '#N/A'Expecting numeric in E433 / R433C5: got '#N/A'Expecting numeric in G433 / R433C7: got '#N/A'Expecting numeric in L433 / R433C12: got '#N/A'Expecting numeric in B434 / R434C2: got '#N/A'Expecting numeric in E434 / R434C5: got '#N/A'Expecting numeric in G434 / R434C7: got '#N/A'Expecting numeric in L434 / R434C12: got '#N/A'Expecting numeric in B435 / R435C2: got '#N/A'Expecting numeric in E435 / R435C5: got '#N/A'Expecting numeric in G435 / R435C7: got '#N/A'Expecting numeric in L435 / R435C12: got '#N/A'Expecting numeric in B436 / R436C2: got '#N/A'Expecting numeric in E436 / R436C5: got '#N/A'Expecting numeric in G436 / R436C7: got '#N/A'Expecting numeric in L436 / R436C12: got '#N/A'Expecting numeric in B437 / R437C2: got '#N/A'Expecting numeric in E437 / R437C5: got '#N/A'Expecting numeric in G437 / R437C7: got '#N/A'Expecting numeric in L437 / R437C12: got '#N/A'Expecting numeric in B438 / R438C2: got '#N/A'Expecting numeric in E438 / R438C5: got '#N/A'Expecting numeric in G438 / R438C7: got '#N/A'Expecting numeric in L438 / R438C12: got '#N/A'Expecting numeric in B439 / R439C2: got '#N/A'Expecting numeric in E439 / R439C5: got '#N/A'Expecting numeric in G439 / R439C7: got '#N/A'Expecting numeric in L439 / R439C12: got '#N/A'Expecting numeric in B440 / R440C2: got '#N/A'Expecting numeric in E440 / R440C5: got '#N/A'Expecting numeric in G440 / R440C7: got '#N/A'Expecting numeric in L440 / R440C12: got '#N/A'Expecting numeric in B441 / R441C2: got '#N/A'Expecting numeric in E441 / R441C5: got '#N/A'Expecting numeric in G441 / R441C7: got '#N/A'Expecting numeric in L441 / R441C12: got '#N/A'Expecting numeric in B442 / R442C2: got '#N/A'Expecting numeric in E442 / R442C5: got '#N/A'Expecting numeric in G442 / R442C7: got '#N/A'Expecting numeric in L442 / R442C12: got '#N/A'Expecting numeric in B443 / R443C2: got '#N/A'Expecting numeric in E443 / R443C5: got '#N/A'Expecting numeric in G443 / R443C7: got '#N/A'Expecting numeric in L443 / R443C12: got '#N/A'Expecting numeric in B444 / R444C2: got '#N/A'Expecting numeric in E444 / R444C5: got '#N/A'Expecting numeric in G444 / R444C7: got '#N/A'Expecting numeric in L444 / R444C12: got '#N/A'Expecting numeric in B445 / R445C2: got '#N/A'Expecting numeric in E445 / R445C5: got '#N/A'Expecting numeric in G445 / R445C7: got '#N/A'Expecting numeric in L445 / R445C12: got '#N/A'Expecting numeric in B446 / R446C2: got '#N/A'Expecting numeric in E446 / R446C5: got '#N/A'Expecting numeric in G446 / R446C7: got '#N/A'Expecting numeric in L446 / R446C12: got '#N/A'Expecting numeric in B447 / R447C2: got '#N/A'Expecting numeric in E447 / R447C5: got '#N/A'Expecting numeric in G447 / R447C7: got '#N/A'Expecting numeric in L447 / R447C12: got '#N/A'Expecting numeric in B448 / R448C2: got '#N/A'Expecting numeric in E448 / R448C5: got '#N/A'Expecting numeric in G448 / R448C7: got '#N/A'Expecting numeric in L448 / R448C12: got '#N/A'Expecting numeric in B449 / R449C2: got '#N/A'Expecting numeric in E449 / R449C5: got '#N/A'Expecting numeric in G449 / R449C7: got '#N/A'Expecting numeric in L449 / R449C12: got '#N/A'Expecting numeric in B450 / R450C2: got '#N/A'Expecting numeric in E450 / R450C5: got '#N/A'Expecting numeric in G450 / R450C7: got '#N/A'Expecting numeric in L450 / R450C12: got '#N/A'Expecting numeric in B451 / R451C2: got '#N/A'Expecting numeric in E451 / R451C5: got '#N/A'Expecting numeric in G451 / R451C7: got '#N/A'Expecting numeric in L451 / R451C12: got '#N/A'Expecting numeric in B452 / R452C2: got '#N/A'Expecting numeric in E452 / R452C5: got '#N/A'Expecting numeric in G452 / R452C7: got '#N/A'Expecting numeric in L452 / R452C12: got '#N/A'Expecting numeric in B453 / R453C2: got '#N/A'Expecting numeric in E453 / R453C5: got '#N/A'Expecting numeric in G453 / R453C7: got '#N/A'Expecting numeric in L453 / R453C12: got '#N/A'Expecting numeric in B454 / R454C2: got '#N/A'Expecting numeric in E454 / R454C5: got '#N/A'Expecting numeric in G454 / R454C7: got '#N/A'Expecting numeric in L454 / R454C12: got '#N/A'Expecting numeric in B455 / R455C2: got '#N/A'Expecting numeric in E455 / R455C5: got '#N/A'Expecting numeric in G455 / R455C7: got '#N/A'Expecting numeric in L455 / R455C12: got '#N/A'Expecting numeric in B456 / R456C2: got '#N/A'Expecting numeric in E456 / R456C5: got '#N/A'Expecting numeric in G456 / R456C7: got '#N/A'Expecting numeric in L456 / R456C12: got '#N/A'Expecting numeric in B457 / R457C2: got '#N/A'Expecting numeric in E457 / R457C5: got '#N/A'Expecting numeric in G457 / R457C7: got '#N/A'Expecting numeric in L457 / R457C12: got '#N/A'Expecting numeric in B458 / R458C2: got '#N/A'Expecting numeric in E458 / R458C5: got '#N/A'Expecting numeric in G458 / R458C7: got '#N/A'Expecting numeric in L458 / R458C12: got '#N/A'Expecting numeric in B459 / R459C2: got '#N/A'Expecting numeric in E459 / R459C5: got '#N/A'Expecting numeric in G459 / R459C7: got '#N/A'Expecting numeric in L459 / R459C12: got '#N/A'Expecting numeric in B460 / R460C2: got '#N/A'Expecting numeric in E460 / R460C5: got '#N/A'Expecting numeric in G460 / R460C7: got '#N/A'Expecting numeric in L460 / R460C12: got '#N/A'Expecting numeric in B461 / R461C2: got '#N/A'Expecting numeric in E461 / R461C5: got '#N/A'Expecting numeric in G461 / R461C7: got '#N/A'Expecting numeric in L461 / R461C12: got '#N/A'Expecting numeric in B462 / R462C2: got '#N/A'Expecting numeric in E462 / R462C5: got '#N/A'Expecting numeric in G462 / R462C7: got '#N/A'Expecting numeric in L462 / R462C12: got '#N/A'Expecting numeric in B463 / R463C2: got '#N/A'Expecting numeric in E463 / R463C5: got '#N/A'Expecting numeric in G463 / R463C7: got '#N/A'Expecting numeric in L463 / R463C12: got '#N/A'Expecting numeric in B464 / R464C2: got '#N/A'Expecting numeric in E464 / R464C5: got '#N/A'Expecting numeric in G464 / R464C7: got '#N/A'Expecting numeric in L464 / R464C12: got '#N/A'Expecting numeric in B465 / R465C2: got '#N/A'Expecting numeric in E465 / R465C5: got '#N/A'Expecting numeric in G465 / R465C7: got '#N/A'Expecting numeric in L465 / R465C12: got '#N/A'Expecting numeric in B466 / R466C2: got '#N/A'Expecting numeric in E466 / R466C5: got '#N/A'Expecting numeric in G466 / R466C7: got '#N/A'Expecting numeric in L466 / R466C12: got '#N/A'Expecting numeric in B467 / R467C2: got '#N/A'Expecting numeric in E467 / R467C5: got '#N/A'Expecting numeric in G467 / R467C7: got '#N/A'Expecting numeric in L467 / R467C12: got '#N/A'Expecting numeric in B468 / R468C2: got '#N/A'Expecting numeric in E468 / R468C5: got '#N/A'Expecting numeric in G468 / R468C7: got '#N/A'Expecting numeric in L468 / R468C12: got '#N/A'Expecting numeric in B469 / R469C2: got '#N/A'Expecting numeric in E469 / R469C5: got '#N/A'Expecting numeric in G469 / R469C7: got '#N/A'Expecting numeric in L469 / R469C12: got '#N/A'Expecting numeric in B470 / R470C2: got '#N/A'Expecting numeric in E470 / R470C5: got '#N/A'Expecting numeric in G470 / R470C7: got '#N/A'Expecting numeric in L470 / R470C12: got '#N/A'Expecting numeric in B471 / R471C2: got '#N/A'Expecting numeric in E471 / R471C5: got '#N/A'Expecting numeric in G471 / R471C7: got '#N/A'Expecting numeric in L471 / R471C12: got '#N/A'Expecting numeric in B472 / R472C2: got '#N/A'Expecting numeric in E472 / R472C5: got '#N/A'Expecting numeric in G472 / R472C7: got '#N/A'Expecting numeric in L472 / R472C12: got '#N/A'Expecting numeric in B473 / R473C2: got '#N/A'Expecting numeric in E473 / R473C5: got '#N/A'Expecting numeric in G473 / R473C7: got '#N/A'Expecting numeric in L473 / R473C12: got '#N/A'Expecting numeric in B474 / R474C2: got '#N/A'Expecting numeric in E474 / R474C5: got '#N/A'Expecting numeric in G474 / R474C7: got '#N/A'Expecting numeric in L474 / R474C12: got '#N/A'Expecting numeric in B475 / R475C2: got '#N/A'Expecting numeric in E475 / R475C5: got '#N/A'Expecting numeric in G475 / R475C7: got '#N/A'Expecting numeric in L475 / R475C12: got '#N/A'Expecting numeric in B476 / R476C2: got '#N/A'Expecting numeric in E476 / R476C5: got '#N/A'Expecting numeric in G476 / R476C7: got '#N/A'Expecting numeric in L476 / R476C12: got '#N/A'Expecting numeric in B477 / R477C2: got '#N/A'Expecting numeric in E477 / R477C5: got '#N/A'Expecting numeric in G477 / R477C7: got '#N/A'Expecting numeric in L477 / R477C12: got '#N/A'Expecting numeric in B478 / R478C2: got '#N/A'Expecting numeric in E478 / R478C5: got '#N/A'Expecting numeric in G478 / R478C7: got '#N/A'Expecting numeric in L478 / R478C12: got '#N/A'Expecting numeric in B479 / R479C2: got '#N/A'Expecting numeric in E479 / R479C5: got '#N/A'Expecting numeric in G479 / R479C7: got '#N/A'Expecting numeric in L479 / R479C12: got '#N/A'Expecting numeric in B480 / R480C2: got '#N/A'Expecting numeric in E480 / R480C5: got '#N/A'Expecting numeric in G480 / R480C7: got '#N/A'Expecting numeric in L480 / R480C12: got '#N/A'Expecting numeric in B481 / R481C2: got '#N/A'Expecting numeric in E481 / R481C5: got '#N/A'Expecting numeric in G481 / R481C7: got '#N/A'Expecting numeric in B482 / R482C2: got '#N/A'Expecting numeric in E482 / R482C5: got '#N/A'Expecting numeric in G482 / R482C7: got '#N/A'Expecting numeric in B483 / R483C2: got '#N/A'Expecting numeric in E483 / R483C5: got '#N/A'Expecting numeric in G483 / R483C7: got '#N/A'Expecting numeric in B484 / R484C2: got '#N/A'Expecting numeric in E484 / R484C5: got '#N/A'Expecting numeric in G484 / R484C7: got '#N/A'Expecting numeric in B485 / R485C2: got '#N/A'Expecting numeric in E485 / R485C5: got '#N/A'Expecting numeric in G485 / R485C7: got '#N/A'Expecting numeric in B486 / R486C2: got '#N/A'Expecting numeric in E486 / R486C5: got '#N/A'Expecting numeric in G486 / R486C7: got '#N/A'Expecting numeric in B487 / R487C2: got '#N/A'Expecting numeric in E487 / R487C5: got '#N/A'Expecting numeric in G487 / R487C7: got '#N/A'Expecting numeric in B488 / R488C2: got '#N/A'Expecting numeric in E488 / R488C5: got '#N/A'Expecting numeric in G488 / R488C7: got '#N/A'Expecting numeric in B489 / R489C2: got '#N/A'Expecting numeric in E489 / R489C5: got '#N/A'Expecting numeric in G489 / R489C7: got '#N/A'Expecting numeric in B490 / R490C2: got '#N/A'Expecting numeric in E490 / R490C5: got '#N/A'Expecting numeric in G490 / R490C7: got '#N/A'Expecting numeric in B491 / R491C2: got '#N/A'Expecting numeric in E491 / R491C5: got '#N/A'Expecting numeric in G491 / R491C7: got '#N/A'Expecting numeric in B492 / R492C2: got '#N/A'Expecting numeric in E492 / R492C5: got '#N/A'Expecting numeric in G492 / R492C7: got '#N/A'Expecting numeric in B493 / R493C2: got '#N/A'Expecting numeric in E493 / R493C5: got '#N/A'Expecting numeric in G493 / R493C7: got '#N/A'Expecting numeric in B494 / R494C2: got '#N/A'Expecting numeric in E494 / R494C5: got '#N/A'Expecting numeric in G494 / R494C7: got '#N/A'Expecting numeric in B495 / R495C2: got '#N/A'Expecting numeric in E495 / R495C5: got '#N/A'Expecting numeric in G495 / R495C7: got '#N/A'Expecting numeric in B496 / R496C2: got '#N/A'Expecting numeric in E496 / R496C5: got '#N/A'Expecting numeric in G496 / R496C7: got '#N/A'Expecting numeric in B497 / R497C2: got '#N/A'Expecting numeric in E497 / R497C5: got '#N/A'Expecting numeric in G497 / R497C7: got '#N/A'Expecting numeric in B498 / R498C2: got '#N/A'Expecting numeric in E498 / R498C5: got '#N/A'Expecting numeric in G498 / R498C7: got '#N/A'Expecting numeric in B499 / R499C2: got '#N/A'Expecting numeric in E499 / R499C5: got '#N/A'Expecting numeric in G499 / R499C7: got '#N/A'Expecting numeric in B500 / R500C2: got '#N/A'Expecting numeric in E500 / R500C5: got '#N/A'Expecting numeric in G500 / R500C7: got '#N/A'Expecting numeric in B501 / R501C2: got '#N/A'Expecting numeric in E501 / R501C5: got '#N/A'Expecting numeric in G501 / R501C7: got '#N/A'Expecting numeric in B502 / R502C2: got '#N/A'Expecting numeric in E502 / R502C5: got '#N/A'Expecting numeric in G502 / R502C7: got '#N/A'Expecting numeric in B503 / R503C2: got '#N/A'Expecting numeric in E503 / R503C5: got '#N/A'Expecting numeric in G503 / R503C7: got '#N/A'Expecting numeric in B504 / R504C2: got '#N/A'Expecting numeric in E504 / R504C5: got '#N/A'Expecting numeric in G504 / R504C7: got '#N/A'Expecting numeric in B505 / R505C2: got '#N/A'Expecting numeric in E505 / R505C5: got '#N/A'Expecting numeric in G505 / R505C7: got '#N/A'Expecting numeric in B506 / R506C2: got '#N/A'Expecting numeric in E506 / R506C5: got '#N/A'Expecting numeric in G506 / R506C7: got '#N/A'Expecting numeric in B507 / R507C2: got '#N/A'Expecting numeric in E507 / R507C5: got '#N/A'Expecting numeric in G507 / R507C7: got '#N/A'Expecting numeric in B508 / R508C2: got '#N/A'Expecting numeric in E508 / R508C5: got '#N/A'Expecting numeric in G508 / R508C7: got '#N/A'Expecting numeric in B509 / R509C2: got '#N/A'Expecting numeric in E509 / R509C5: got '#N/A'Expecting numeric in G509 / R509C7: got '#N/A'Expecting numeric in B510 / R510C2: got '#N/A'Expecting numeric in E510 / R510C5: got '#N/A'Expecting numeric in G510 / R510C7: got '#N/A'Expecting numeric in B511 / R511C2: got '#N/A'Expecting numeric in E511 / R511C5: got '#N/A'Expecting numeric in G511 / R511C7: got '#N/A'Expecting numeric in B512 / R512C2: got '#N/A'Expecting numeric in E512 / R512C5: got '#N/A'Expecting numeric in G512 / R512C7: got '#N/A'Expecting numeric in B513 / R513C2: got '#N/A'Expecting numeric in E513 / R513C5: got '#N/A'Expecting numeric in G513 / R513C7: got '#N/A'Expecting numeric in B514 / R514C2: got '#N/A'Expecting numeric in E514 / R514C5: got '#N/A'Expecting numeric in G514 / R514C7: got '#N/A'Expecting numeric in B515 / R515C2: got '#N/A'Expecting numeric in E515 / R515C5: got '#N/A'Expecting numeric in G515 / R515C7: got '#N/A'Expecting numeric in B516 / R516C2: got '#N/A'Expecting numeric in E516 / R516C5: got '#N/A'Expecting numeric in G516 / R516C7: got '#N/A'Expecting numeric in B517 / R517C2: got '#N/A'Expecting numeric in E517 / R517C5: got '#N/A'Expecting numeric in G517 / R517C7: got '#N/A'Expecting numeric in B518 / R518C2: got '#N/A'Expecting numeric in E518 / R518C5: got '#N/A'Expecting numeric in G518 / R518C7: got '#N/A'Expecting numeric in B519 / R519C2: got '#N/A'Expecting numeric in E519 / R519C5: got '#N/A'Expecting numeric in G519 / R519C7: got '#N/A'Expecting numeric in B520 / R520C2: got '#N/A'Expecting numeric in E520 / R520C5: got '#N/A'Expecting numeric in G520 / R520C7: got '#N/A'Expecting numeric in B521 / R521C2: got '#N/A'Expecting numeric in E521 / R521C5: got '#N/A'Expecting numeric in G521 / R521C7: got '#N/A'Expecting numeric in B522 / R522C2: got '#N/A'Expecting numeric in E522 / R522C5: got '#N/A'Expecting numeric in G522 / R522C7: got '#N/A'Expecting numeric in B523 / R523C2: got '#N/A'Expecting numeric in E523 / R523C5: got '#N/A'Expecting numeric in G523 / R523C7: got '#N/A'Expecting numeric in B524 / R524C2: got '#N/A'Expecting numeric in E524 / R524C5: got '#N/A'Expecting numeric in G524 / R524C7: got '#N/A'Expecting numeric in B525 / R525C2: got '#N/A'Expecting numeric in E525 / R525C5: got '#N/A'Expecting numeric in G525 / R525C7: got '#N/A'Expecting numeric in B526 / R526C2: got '#N/A'Expecting numeric in E526 / R526C5: got '#N/A'Expecting numeric in G526 / R526C7: got '#N/A'Expecting numeric in B527 / R527C2: got '#N/A'Expecting numeric in E527 / R527C5: got '#N/A'Expecting numeric in G527 / R527C7: got '#N/A'Expecting numeric in B528 / R528C2: got '#N/A'Expecting numeric in E528 / R528C5: got '#N/A'Expecting numeric in G528 / R528C7: got '#N/A'Expecting numeric in B529 / R529C2: got '#N/A'Expecting numeric in E529 / R529C5: got '#N/A'Expecting numeric in G529 / R529C7: got '#N/A'Expecting numeric in B530 / R530C2: got '#N/A'Expecting numeric in E530 / R530C5: got '#N/A'Expecting numeric in G530 / R530C7: got '#N/A'Expecting numeric in B531 / R531C2: got '#N/A'Expecting numeric in E531 / R531C5: got '#N/A'Expecting numeric in G531 / R531C7: got '#N/A'Expecting numeric in B532 / R532C2: got '#N/A'Expecting numeric in E532 / R532C5: got '#N/A'Expecting numeric in G532 / R532C7: got '#N/A'Expecting numeric in B533 / R533C2: got '#N/A'Expecting numeric in E533 / R533C5: got '#N/A'Expecting numeric in G533 / R533C7: got '#N/A'Expecting numeric in B534 / R534C2: got '#N/A'Expecting numeric in E534 / R534C5: got '#N/A'Expecting numeric in G534 / R534C7: got '#N/A'Expecting numeric in B535 / R535C2: got '#N/A'Expecting numeric in E535 / R535C5: got '#N/A'Expecting numeric in G535 / R535C7: got '#N/A'Expecting numeric in B536 / R536C2: got '#N/A'Expecting numeric in E536 / R536C5: got '#N/A'Expecting numeric in G536 / R536C7: got '#N/A'Expecting numeric in B537 / R537C2: got '#N/A'Expecting numeric in E537 / R537C5: got '#N/A'Expecting numeric in G537 / R537C7: got '#N/A'Expecting numeric in B538 / R538C2: got '#N/A'Expecting numeric in E538 / R538C5: got '#N/A'Expecting numeric in G538 / R538C7: got '#N/A'Expecting numeric in B539 / R539C2: got '#N/A'Expecting numeric in E539 / R539C5: got '#N/A'Expecting numeric in G539 / R539C7: got '#N/A'Expecting numeric in B540 / R540C2: got '#N/A'Expecting numeric in E540 / R540C5: got '#N/A'Expecting numeric in G540 / R540C7: got '#N/A'Expecting numeric in B541 / R541C2: got '#N/A'Expecting numeric in E541 / R541C5: got '#N/A'Expecting numeric in G541 / R541C7: got '#N/A'Expecting numeric in B542 / R542C2: got '#N/A'Expecting numeric in E542 / R542C5: got '#N/A'Expecting numeric in G542 / R542C7: got '#N/A'Expecting numeric in B543 / R543C2: got '#N/A'Expecting numeric in E543 / R543C5: got '#N/A'Expecting numeric in G543 / R543C7: got '#N/A'Expecting numeric in B544 / R544C2: got '#N/A'Expecting numeric in E544 / R544C5: got '#N/A'Expecting numeric in G544 / R544C7: got '#N/A'Expecting numeric in B545 / R545C2: got '#N/A'Expecting numeric in E545 / R545C5: got '#N/A'Expecting numeric in G545 / R545C7: got '#N/A'Expecting numeric in B546 / R546C2: got '#N/A'Expecting numeric in E546 / R546C5: got '#N/A'Expecting numeric in G546 / R546C7: got '#N/A'Expecting numeric in B547 / R547C2: got '#N/A'Expecting numeric in E547 / R547C5: got '#N/A'Expecting numeric in G547 / R547C7: got '#N/A'Expecting numeric in B548 / R548C2: got '#N/A'Expecting numeric in E548 / R548C5: got '#N/A'Expecting numeric in G548 / R548C7: got '#N/A'Expecting numeric in B549 / R549C2: got '#N/A'Expecting numeric in E549 / R549C5: got '#N/A'Expecting numeric in G549 / R549C7: got '#N/A'Expecting numeric in B550 / R550C2: got '#N/A'Expecting numeric in E550 / R550C5: got '#N/A'Expecting numeric in G550 / R550C7: got '#N/A'Expecting numeric in B551 / R551C2: got '#N/A'Expecting numeric in E551 / R551C5: got '#N/A'Expecting numeric in G551 / R551C7: got '#N/A'Expecting numeric in B552 / R552C2: got '#N/A'Expecting numeric in E552 / R552C5: got '#N/A'Expecting numeric in G552 / R552C7: got '#N/A'Expecting numeric in B553 / R553C2: got '#N/A'Expecting numeric in E553 / R553C5: got '#N/A'Expecting numeric in G553 / R553C7: got '#N/A'Expecting numeric in B554 / R554C2: got '#N/A'Expecting numeric in E554 / R554C5: got '#N/A'Expecting numeric in G554 / R554C7: got '#N/A'Expecting numeric in B555 / R555C2: got '#N/A'Expecting numeric in E555 / R555C5: got '#N/A'Expecting numeric in G555 / R555C7: got '#N/A'Expecting numeric in B556 / R556C2: got '#N/A'Expecting numeric in E556 / R556C5: got '#N/A'Expecting numeric in G556 / R556C7: got '#N/A'Expecting numeric in B557 / R557C2: got '#N/A'Expecting numeric in E557 / R557C5: got '#N/A'Expecting numeric in G557 / R557C7: got '#N/A'Expecting numeric in B558 / R558C2: got '#N/A'Expecting numeric in E558 / R558C5: got '#N/A'Expecting numeric in G558 / R558C7: got '#N/A'Expecting numeric in B559 / R559C2: got '#N/A'Expecting numeric in E559 / R559C5: got '#N/A'Expecting numeric in G559 / R559C7: got '#N/A'Expecting numeric in B560 / R560C2: got '#N/A'Expecting numeric in E560 / R560C5: got '#N/A'Expecting numeric in G560 / R560C7: got '#N/A'Expecting numeric in B561 / R561C2: got '#N/A'Expecting numeric in E561 / R561C5: got '#N/A'Expecting numeric in G561 / R561C7: got '#N/A'Expecting numeric in B562 / R562C2: got '#N/A'Expecting numeric in E562 / R562C5: got '#N/A'Expecting numeric in G562 / R562C7: got '#N/A'Expecting numeric in B563 / R563C2: got '#N/A'Expecting numeric in E563 / R563C5: got '#N/A'Expecting numeric in G563 / R563C7: got '#N/A'Expecting numeric in B564 / R564C2: got '#N/A'Expecting numeric in E564 / R564C5: got '#N/A'Expecting numeric in G564 / R564C7: got '#N/A'Expecting numeric in B565 / R565C2: got '#N/A'Expecting numeric in E565 / R565C5: got '#N/A'Expecting numeric in G565 / R565C7: got '#N/A'Expecting numeric in B566 / R566C2: got '#N/A'Expecting numeric in E566 / R566C5: got '#N/A'Expecting numeric in G566 / R566C7: got '#N/A'Expecting numeric in B567 / R567C2: got '#N/A'Expecting numeric in E567 / R567C5: got '#N/A'Expecting numeric in G567 / R567C7: got '#N/A'Expecting numeric in B568 / R568C2: got '#N/A'Expecting numeric in E568 / R568C5: got '#N/A'Expecting numeric in G568 / R568C7: got '#N/A'Expecting numeric in B569 / R569C2: got '#N/A'Expecting numeric in E569 / R569C5: got '#N/A'Expecting numeric in G569 / R569C7: got '#N/A'Expecting numeric in B570 / R570C2: got '#N/A'Expecting numeric in E570 / R570C5: got '#N/A'Expecting numeric in G570 / R570C7: got '#N/A'Expecting numeric in B571 / R571C2: got '#N/A'Expecting numeric in E571 / R571C5: got '#N/A'Expecting numeric in G571 / R571C7: got '#N/A'Expecting numeric in B572 / R572C2: got '#N/A'Expecting numeric in E572 / R572C5: got '#N/A'Expecting numeric in G572 / R572C7: got '#N/A'Expecting numeric in B573 / R573C2: got '#N/A'Expecting numeric in E573 / R573C5: got '#N/A'Expecting numeric in G573 / R573C7: got '#N/A'Expecting numeric in B574 / R574C2: got '#N/A'Expecting numeric in E574 / R574C5: got '#N/A'Expecting numeric in G574 / R574C7: got '#N/A'Expecting numeric in B575 / R575C2: got '#N/A'Expecting numeric in E575 / R575C5: got '#N/A'Expecting numeric in G575 / R575C7: got '#N/A'Expecting numeric in B576 / R576C2: got '#N/A'Expecting numeric in E576 / R576C5: got '#N/A'Expecting numeric in G576 / R576C7: got '#N/A'Expecting numeric in B577 / R577C2: got '#N/A'Expecting numeric in E577 / R577C5: got '#N/A'Expecting numeric in G577 / R577C7: got '#N/A'Expecting numeric in B578 / R578C2: got '#N/A'Expecting numeric in E578 / R578C5: got '#N/A'Expecting numeric in G578 / R578C7: got '#N/A'Expecting numeric in B579 / R579C2: got '#N/A'Expecting numeric in E579 / R579C5: got '#N/A'Expecting numeric in G579 / R579C7: got '#N/A'Expecting numeric in B580 / R580C2: got '#N/A'Expecting numeric in E580 / R580C5: got '#N/A'Expecting numeric in G580 / R580C7: got '#N/A'Expecting numeric in B581 / R581C2: got '#N/A'Expecting numeric in E581 / R581C5: got '#N/A'Expecting numeric in G581 / R581C7: got '#N/A'Expecting numeric in B582 / R582C2: got '#N/A'Expecting numeric in E582 / R582C5: got '#N/A'Expecting numeric in G582 / R582C7: got '#N/A'Expecting numeric in B583 / R583C2: got '#N/A'Expecting numeric in E583 / R583C5: got '#N/A'Expecting numeric in G583 / R583C7: got '#N/A'Expecting numeric in B584 / R584C2: got '#N/A'Expecting numeric in E584 / R584C5: got '#N/A'Expecting numeric in G584 / R584C7: got '#N/A'Expecting numeric in B585 / R585C2: got '#N/A'Expecting numeric in E585 / R585C5: got '#N/A'Expecting numeric in G585 / R585C7: got '#N/A'Expecting numeric in B586 / R586C2: got '#N/A'Expecting numeric in E586 / R586C5: got '#N/A'Expecting numeric in G586 / R586C7: got '#N/A'Expecting numeric in B587 / R587C2: got '#N/A'Expecting numeric in E587 / R587C5: got '#N/A'Expecting numeric in G587 / R587C7: got '#N/A'Expecting numeric in B588 / R588C2: got '#N/A'Expecting numeric in E588 / R588C5: got '#N/A'Expecting numeric in G588 / R588C7: got '#N/A'Expecting numeric in B589 / R589C2: got '#N/A'Expecting numeric in E589 / R589C5: got '#N/A'Expecting numeric in G589 / R589C7: got '#N/A'Expecting numeric in B590 / R590C2: got '#N/A'Expecting numeric in E590 / R590C5: got '#N/A'Expecting numeric in G590 / R590C7: got '#N/A'Expecting numeric in B591 / R591C2: got '#N/A'Expecting numeric in E591 / R591C5: got '#N/A'Expecting numeric in G591 / R591C7: got '#N/A'Expecting numeric in B592 / R592C2: got '#N/A'Expecting numeric in E592 / R592C5: got '#N/A'Expecting numeric in G592 / R592C7: got '#N/A'Expecting numeric in B593 / R593C2: got '#N/A'Expecting numeric in E593 / R593C5: got '#N/A'Expecting numeric in G593 / R593C7: got '#N/A'Expecting numeric in B594 / R594C2: got '#N/A'Expecting numeric in E594 / R594C5: got '#N/A'Expecting numeric in G594 / R594C7: got '#N/A'Expecting numeric in B595 / R595C2: got '#N/A'Expecting numeric in E595 / R595C5: got '#N/A'Expecting numeric in G595 / R595C7: got '#N/A'Expecting numeric in B596 / R596C2: got '#N/A'Expecting numeric in E596 / R596C5: got '#N/A'Expecting numeric in G596 / R596C7: got '#N/A'Expecting numeric in B597 / R597C2: got '#N/A'Expecting numeric in E597 / R597C5: got '#N/A'Expecting numeric in G597 / R597C7: got '#N/A'Expecting numeric in B598 / R598C2: got '#N/A'Expecting numeric in E598 / R598C5: got '#N/A'Expecting numeric in G598 / R598C7: got '#N/A'Expecting numeric in B599 / R599C2: got '#N/A'Expecting numeric in E599 / R599C5: got '#N/A'Expecting numeric in G599 / R599C7: got '#N/A'Expecting numeric in B600 / R600C2: got '#N/A'Expecting numeric in E600 / R600C5: got '#N/A'Expecting numeric in G600 / R600C7: got '#N/A'Expecting numeric in B601 / R601C2: got '#N/A'Expecting numeric in E601 / R601C5: got '#N/A'Expecting numeric in G601 / R601C7: got '#N/A'Expecting numeric in B602 / R602C2: got '#N/A'Expecting numeric in E602 / R602C5: got '#N/A'Expecting numeric in G602 / R602C7: got '#N/A'Expecting numeric in B603 / R603C2: got '#N/A'Expecting numeric in E603 / R603C5: got '#N/A'Expecting numeric in G603 / R603C7: got '#N/A'Expecting numeric in B604 / R604C2: got '#N/A'Expecting numeric in E604 / R604C5: got '#N/A'Expecting numeric in G604 / R604C7: got '#N/A'Expecting numeric in B605 / R605C2: got '#N/A'Expecting numeric in E605 / R605C5: got '#N/A'Expecting numeric in G605 / R605C7: got '#N/A'Expecting numeric in B606 / R606C2: got '#N/A'Expecting numeric in E606 / R606C5: got '#N/A'Expecting numeric in G606 / R606C7: got '#N/A'Expecting numeric in B607 / R607C2: got '#N/A'Expecting numeric in E607 / R607C5: got '#N/A'Expecting numeric in G607 / R607C7: got '#N/A'Expecting numeric in B608 / R608C2: got '#N/A'Expecting numeric in E608 / R608C5: got '#N/A'Expecting numeric in G608 / R608C7: got '#N/A'Expecting numeric in B609 / R609C2: got '#N/A'Expecting numeric in E609 / R609C5: got '#N/A'Expecting numeric in G609 / R609C7: got '#N/A'Expecting numeric in B610 / R610C2: got '#N/A'Expecting numeric in E610 / R610C5: got '#N/A'Expecting numeric in G610 / R610C7: got '#N/A'Expecting numeric in B611 / R611C2: got '#N/A'Expecting numeric in E611 / R611C5: got '#N/A'Expecting numeric in G611 / R611C7: got '#N/A'Expecting numeric in B612 / R612C2: got '#N/A'Expecting numeric in E612 / R612C5: got '#N/A'Expecting numeric in G612 / R612C7: got '#N/A'Expecting numeric in B613 / R613C2: got '#N/A'Expecting numeric in E613 / R613C5: got '#N/A'Expecting numeric in G613 / R613C7: got '#N/A'Expecting numeric in B614 / R614C2: got '#N/A'Expecting numeric in E614 / R614C5: got '#N/A'Expecting numeric in G614 / R614C7: got '#N/A'Expecting numeric in B615 / R615C2: got '#N/A'Expecting numeric in E615 / R615C5: got '#N/A'Expecting numeric in G615 / R615C7: got '#N/A'Expecting numeric in B616 / R616C2: got '#N/A'Expecting numeric in E616 / R616C5: got '#N/A'Expecting numeric in G616 / R616C7: got '#N/A'Expecting numeric in B617 / R617C2: got '#N/A'Expecting numeric in E617 / R617C5: got '#N/A'Expecting numeric in G617 / R617C7: got '#N/A'Expecting numeric in B618 / R618C2: got '#N/A'Expecting numeric in E618 / R618C5: got '#N/A'Expecting numeric in G618 / R618C7: got '#N/A'Expecting numeric in B619 / R619C2: got '#N/A'Expecting numeric in E619 / R619C5: got '#N/A'Expecting numeric in G619 / R619C7: got '#N/A'Expecting numeric in B620 / R620C2: got '#N/A'Expecting numeric in E620 / R620C5: got '#N/A'Expecting numeric in G620 / R620C7: got '#N/A'Expecting numeric in B621 / R621C2: got '#N/A'Expecting numeric in E621 / R621C5: got '#N/A'Expecting numeric in G621 / R621C7: got '#N/A'Expecting numeric in B622 / R622C2: got '#N/A'Expecting numeric in E622 / R622C5: got '#N/A'Expecting numeric in G622 / R622C7: got '#N/A'Expecting numeric in B623 / R623C2: got '#N/A'Expecting numeric in E623 / R623C5: got '#N/A'Expecting numeric in G623 / R623C7: got '#N/A'Expecting numeric in B624 / R624C2: got '#N/A'Expecting numeric in E624 / R624C5: got '#N/A'Expecting numeric in G624 / R624C7: got '#N/A'Expecting numeric in B625 / R625C2: got '#N/A'Expecting numeric in E625 / R625C5: got '#N/A'Expecting numeric in G625 / R625C7: got '#N/A'Expecting numeric in B626 / R626C2: got '#N/A'Expecting numeric in E626 / R626C5: got '#N/A'Expecting numeric in G626 / R626C7: got '#N/A'Expecting numeric in B627 / R627C2: got '#N/A'Expecting numeric in E627 / R627C5: got '#N/A'Expecting numeric in G627 / R627C7: got '#N/A'Expecting numeric in B628 / R628C2: got '#N/A'Expecting numeric in E628 / R628C5: got '#N/A'Expecting numeric in G628 / R628C7: got '#N/A'Expecting numeric in B629 / R629C2: got '#N/A'Expecting numeric in E629 / R629C5: got '#N/A'Expecting numeric in G629 / R629C7: got '#N/A'Expecting numeric in B630 / R630C2: got '#N/A'Expecting numeric in E630 / R630C5: got '#N/A'Expecting numeric in G630 / R630C7: got '#N/A'Expecting numeric in B631 / R631C2: got '#N/A'Expecting numeric in E631 / R631C5: got '#N/A'Expecting numeric in G631 / R631C7: got '#N/A'Expecting numeric in B632 / R632C2: got '#N/A'Expecting numeric in E632 / R632C5: got '#N/A'Expecting numeric in G632 / R632C7: got '#N/A'Expecting numeric in B633 / R633C2: got '#N/A'Expecting numeric in E633 / R633C5: got '#N/A'Expecting numeric in G633 / R633C7: got '#N/A'Expecting numeric in B634 / R634C2: got '#N/A'Expecting numeric in E634 / R634C5: got '#N/A'Expecting numeric in G634 / R634C7: got '#N/A'Expecting numeric in B635 / R635C2: got '#N/A'Expecting numeric in E635 / R635C5: got '#N/A'Expecting numeric in G635 / R635C7: got '#N/A'Expecting numeric in B636 / R636C2: got '#N/A'Expecting numeric in E636 / R636C5: got '#N/A'Expecting numeric in G636 / R636C7: got '#N/A'Expecting numeric in B637 / R637C2: got '#N/A'Expecting numeric in E637 / R637C5: got '#N/A'Expecting numeric in G637 / R637C7: got '#N/A'Expecting numeric in B638 / R638C2: got '#N/A'Expecting numeric in E638 / R638C5: got '#N/A'Expecting numeric in G638 / R638C7: got '#N/A'Expecting numeric in B639 / R639C2: got '#N/A'Expecting numeric in E639 / R639C5: got '#N/A'Expecting numeric in G639 / R639C7: got '#N/A'Expecting numeric in B640 / R640C2: got '#N/A'Expecting numeric in E640 / R640C5: got '#N/A'Expecting numeric in G640 / R640C7: got '#N/A'Expecting numeric in B641 / R641C2: got '#N/A'Expecting numeric in E641 / R641C5: got '#N/A'Expecting numeric in G641 / R641C7: got '#N/A'Expecting numeric in B642 / R642C2: got '#N/A'Expecting numeric in E642 / R642C5: got '#N/A'Expecting numeric in G642 / R642C7: got '#N/A'Expecting numeric in B643 / R643C2: got '#N/A'Expecting numeric in E643 / R643C5: got '#N/A'Expecting numeric in G643 / R643C7: got '#N/A'Expecting numeric in B644 / R644C2: got '#N/A'Expecting numeric in E644 / R644C5: got '#N/A'Expecting numeric in G644 / R644C7: got '#N/A'Expecting numeric in B645 / R645C2: got '#N/A'Expecting numeric in E645 / R645C5: got '#N/A'Expecting numeric in G645 / R645C7: got '#N/A'Expecting numeric in B646 / R646C2: got '#N/A'Expecting numeric in E646 / R646C5: got '#N/A'Expecting numeric in G646 / R646C7: got '#N/A'Expecting numeric in B647 / R647C2: got '#N/A'Expecting numeric in E647 / R647C5: got '#N/A'Expecting numeric in G647 / R647C7: got '#N/A'Expecting numeric in B648 / R648C2: got '#N/A'Expecting numeric in E648 / R648C5: got '#N/A'Expecting numeric in G648 / R648C7: got '#N/A'Expecting numeric in B649 / R649C2: got '#N/A'Expecting numeric in E649 / R649C5: got '#N/A'Expecting numeric in G649 / R649C7: got '#N/A'Expecting numeric in B650 / R650C2: got '#N/A'Expecting numeric in E650 / R650C5: got '#N/A'Expecting numeric in G650 / R650C7: got '#N/A'Expecting numeric in B651 / R651C2: got '#N/A'Expecting numeric in E651 / R651C5: got '#N/A'Expecting numeric in G651 / R651C7: got '#N/A'Expecting numeric in B652 / R652C2: got '#N/A'Expecting numeric in E652 / R652C5: got '#N/A'Expecting numeric in G652 / R652C7: got '#N/A'Expecting numeric in B653 / R653C2: got '#N/A'Expecting numeric in E653 / R653C5: got '#N/A'Expecting numeric in G653 / R653C7: got '#N/A'Expecting numeric in B654 / R654C2: got '#N/A'Expecting numeric in E654 / R654C5: got '#N/A'Expecting numeric in G654 / R654C7: got '#N/A'Expecting numeric in B655 / R655C2: got '#N/A'Expecting numeric in E655 / R655C5: got '#N/A'Expecting numeric in G655 / R655C7: got '#N/A'Expecting numeric in B656 / R656C2: got '#N/A'Expecting numeric in E656 / R656C5: got '#N/A'Expecting numeric in G656 / R656C7: got '#N/A'Expecting numeric in B657 / R657C2: got '#N/A'Expecting numeric in E657 / R657C5: got '#N/A'Expecting numeric in G657 / R657C7: got '#N/A'Expecting numeric in B658 / R658C2: got '#N/A'Expecting numeric in E658 / R658C5: got '#N/A'Expecting numeric in G658 / R658C7: got '#N/A'Expecting numeric in B659 / R659C2: got '#N/A'Expecting numeric in E659 / R659C5: got '#N/A'Expecting numeric in G659 / R659C7: got '#N/A'Expecting numeric in B660 / R660C2: got '#N/A'Expecting numeric in E660 / R660C5: got '#N/A'Expecting numeric in G660 / R660C7: got '#N/A'Expecting numeric in B661 / R661C2: got '#N/A'Expecting numeric in E661 / R661C5: got '#N/A'Expecting numeric in G661 / R661C7: got '#N/A'Expecting numeric in B662 / R662C2: got '#N/A'Expecting numeric in E662 / R662C5: got '#N/A'Expecting numeric in G662 / R662C7: got '#N/A'Expecting numeric in B663 / R663C2: got '#N/A'Expecting numeric in E663 / R663C5: got '#N/A'Expecting numeric in G663 / R663C7: got '#N/A'Expecting numeric in B664 / R664C2: got '#N/A'Expecting numeric in E664 / R664C5: got '#N/A'Expecting numeric in G664 / R664C7: got '#N/A'Expecting numeric in B665 / R665C2: got '#N/A'Expecting numeric in E665 / R665C5: got '#N/A'Expecting numeric in G665 / R665C7: got '#N/A'Expecting numeric in B666 / R666C2: got '#N/A'Expecting numeric in E666 / R666C5: got '#N/A'Expecting numeric in G666 / R666C7: got '#N/A'Expecting numeric in B667 / R667C2: got '#N/A'Expecting numeric in E667 / R667C5: got '#N/A'Expecting numeric in G667 / R667C7: got '#N/A'Expecting numeric in B668 / R668C2: got '#N/A'Expecting numeric in E668 / R668C5: got '#N/A'Expecting numeric in G668 / R668C7: got '#N/A'Expecting numeric in B669 / R669C2: got '#N/A'Expecting numeric in E669 / R669C5: got '#N/A'Expecting numeric in G669 / R669C7: got '#N/A'Expecting numeric in B670 / R670C2: got '#N/A'Expecting numeric in E670 / R670C5: got '#N/A'Expecting numeric in G670 / R670C7: got '#N/A'Expecting numeric in B671 / R671C2: got '#N/A'Expecting numeric in E671 / R671C5: got '#N/A'Expecting numeric in G671 / R671C7: got '#N/A'Expecting numeric in B672 / R672C2: got '#N/A'Expecting numeric in E672 / R672C5: got '#N/A'Expecting numeric in G672 / R672C7: got '#N/A'Expecting numeric in B673 / R673C2: got '#N/A'Expecting numeric in E673 / R673C5: got '#N/A'Expecting numeric in G673 / R673C7: got '#N/A'Expecting numeric in B674 / R674C2: got '#N/A'Expecting numeric in E674 / R674C5: got '#N/A'Expecting numeric in G674 / R674C7: got '#N/A'Expecting numeric in B675 / R675C2: got '#N/A'Expecting numeric in E675 / R675C5: got '#N/A'Expecting numeric in G675 / R675C7: got '#N/A'Expecting numeric in B676 / R676C2: got '#N/A'Expecting numeric in E676 / R676C5: got '#N/A'Expecting numeric in G676 / R676C7: got '#N/A'Expecting numeric in B677 / R677C2: got '#N/A'Expecting numeric in E677 / R677C5: got '#N/A'Expecting numeric in G677 / R677C7: got '#N/A'Expecting numeric in B678 / R678C2: got '#N/A'Expecting numeric in E678 / R678C5: got '#N/A'Expecting numeric in G678 / R678C7: got '#N/A'Expecting numeric in B679 / R679C2: got '#N/A'Expecting numeric in E679 / R679C5: got '#N/A'Expecting numeric in G679 / R679C7: got '#N/A'Expecting numeric in B680 / R680C2: got '#N/A'Expecting numeric in E680 / R680C5: got '#N/A'Expecting numeric in G680 / R680C7: got '#N/A'Expecting numeric in B681 / R681C2: got '#N/A'Expecting numeric in E681 / R681C5: got '#N/A'Expecting numeric in G681 / R681C7: got '#N/A'Expecting numeric in B682 / R682C2: got '#N/A'Expecting numeric in E682 / R682C5: got '#N/A'Expecting numeric in G682 / R682C7: got '#N/A'Expecting numeric in B683 / R683C2: got '#N/A'Expecting numeric in E683 / R683C5: got '#N/A'Expecting numeric in G683 / R683C7: got '#N/A'Expecting numeric in B684 / R684C2: got '#N/A'Expecting numeric in E684 / R684C5: got '#N/A'Expecting numeric in G684 / R684C7: got '#N/A'Expecting numeric in B685 / R685C2: got '#N/A'Expecting numeric in E685 / R685C5: got '#N/A'Expecting numeric in G685 / R685C7: got '#N/A'Expecting numeric in B686 / R686C2: got '#N/A'Expecting numeric in E686 / R686C5: got '#N/A'Expecting numeric in G686 / R686C7: got '#N/A'Expecting numeric in B687 / R687C2: got '#N/A'Expecting numeric in E687 / R687C5: got '#N/A'Expecting numeric in G687 / R687C7: got '#N/A'Expecting numeric in B688 / R688C2: got '#N/A'Expecting numeric in E688 / R688C5: got '#N/A'Expecting numeric in G688 / R688C7: got '#N/A'Expecting numeric in B689 / R689C2: got '#N/A'Expecting numeric in E689 / R689C5: got '#N/A'Expecting numeric in G689 / R689C7: got '#N/A'Expecting numeric in B690 / R690C2: got '#N/A'Expecting numeric in E690 / R690C5: got '#N/A'Expecting numeric in G690 / R690C7: got '#N/A'Expecting numeric in B691 / R691C2: got '#N/A'Expecting numeric in E691 / R691C5: got '#N/A'Expecting numeric in G691 / R691C7: got '#N/A'Expecting numeric in B692 / R692C2: got '#N/A'Expecting numeric in E692 / R692C5: got '#N/A'Expecting numeric in G692 / R692C7: got '#N/A'Expecting numeric in B693 / R693C2: got '#N/A'Expecting numeric in E693 / R693C5: got '#N/A'Expecting numeric in G693 / R693C7: got '#N/A'Expecting numeric in B694 / R694C2: got '#N/A'Expecting numeric in E694 / R694C5: got '#N/A'Expecting numeric in G694 / R694C7: got '#N/A'Expecting numeric in B695 / R695C2: got '#N/A'Expecting numeric in E695 / R695C5: got '#N/A'Expecting numeric in G695 / R695C7: got '#N/A'Expecting numeric in B696 / R696C2: got '#N/A'Expecting numeric in E696 / R696C5: got '#N/A'Expecting numeric in G696 / R696C7: got '#N/A'Expecting numeric in B697 / R697C2: got '#N/A'Expecting numeric in E697 / R697C5: got '#N/A'Expecting numeric in G697 / R697C7: got '#N/A'Expecting numeric in B698 / R698C2: got '#N/A'Expecting numeric in E698 / R698C5: got '#N/A'Expecting numeric in G698 / R698C7: got '#N/A'Expecting numeric in B699 / R699C2: got '#N/A'Expecting numeric in E699 / R699C5: got '#N/A'Expecting numeric in G699 / R699C7: got '#N/A'Expecting numeric in B700 / R700C2: got '#N/A'Expecting numeric in E700 / R700C5: got '#N/A'Expecting numeric in G700 / R700C7: got '#N/A'Expecting numeric in B701 / R701C2: got '#N/A'Expecting numeric in E701 / R701C5: got '#N/A'Expecting numeric in G701 / R701C7: got '#N/A'Expecting numeric in B702 / R702C2: got '#N/A'Expecting numeric in E702 / R702C5: got '#N/A'Expecting numeric in G702 / R702C7: got '#N/A'Expecting numeric in B703 / R703C2: got '#N/A'Expecting numeric in E703 / R703C5: got '#N/A'Expecting numeric in G703 / R703C7: got '#N/A'Expecting numeric in B704 / R704C2: got '#N/A'Expecting numeric in E704 / R704C5: got '#N/A'Expecting numeric in G704 / R704C7: got '#N/A'Expecting numeric in B705 / R705C2: got '#N/A'Expecting numeric in E705 / R705C5: got '#N/A'Expecting numeric in G705 / R705C7: got '#N/A'Expecting numeric in B706 / R706C2: got '#N/A'Expecting numeric in E706 / R706C5: got '#N/A'Expecting numeric in G706 / R706C7: got '#N/A'Expecting numeric in B707 / R707C2: got '#N/A'Expecting numeric in E707 / R707C5: got '#N/A'Expecting numeric in G707 / R707C7: got '#N/A'Expecting numeric in B708 / R708C2: got '#N/A'Expecting numeric in E708 / R708C5: got '#N/A'Expecting numeric in G708 / R708C7: got '#N/A'Expecting numeric in B709 / R709C2: got '#N/A'Expecting numeric in E709 / R709C5: got '#N/A'Expecting numeric in G709 / R709C7: got '#N/A'Expecting numeric in B710 / R710C2: got '#N/A'Expecting numeric in E710 / R710C5: got '#N/A'Expecting numeric in G710 / R710C7: got '#N/A'Expecting numeric in B711 / R711C2: got '#N/A'Expecting numeric in E711 / R711C5: got '#N/A'Expecting numeric in G711 / R711C7: got '#N/A'Expecting numeric in B712 / R712C2: got '#N/A'Expecting numeric in E712 / R712C5: got '#N/A'Expecting numeric in G712 / R712C7: got '#N/A'Expecting numeric in B713 / R713C2: got '#N/A'Expecting numeric in E713 / R713C5: got '#N/A'Expecting numeric in G713 / R713C7: got '#N/A'Expecting numeric in B714 / R714C2: got '#N/A'Expecting numeric in E714 / R714C5: got '#N/A'Expecting numeric in G714 / R714C7: got '#N/A'Expecting numeric in B715 / R715C2: got '#N/A'Expecting numeric in E715 / R715C5: got '#N/A'Expecting numeric in G715 / R715C7: got '#N/A'Expecting numeric in B716 / R716C2: got '#N/A'Expecting numeric in E716 / R716C5: got '#N/A'Expecting numeric in G716 / R716C7: got '#N/A'Expecting numeric in B717 / R717C2: got '#N/A'Expecting numeric in E717 / R717C5: got '#N/A'Expecting numeric in G717 / R717C7: got '#N/A'Expecting numeric in B718 / R718C2: got '#N/A'Expecting numeric in E718 / R718C5: got '#N/A'Expecting numeric in G718 / R718C7: got '#N/A'Expecting numeric in B719 / R719C2: got '#N/A'Expecting numeric in E719 / R719C5: got '#N/A'Expecting numeric in G719 / R719C7: got '#N/A'Expecting numeric in B720 / R720C2: got '#N/A'Expecting numeric in E720 / R720C5: got '#N/A'Expecting numeric in G720 / R720C7: got '#N/A'Expecting numeric in B721 / R721C2: got '#N/A'Expecting numeric in E721 / R721C5: got '#N/A'Expecting numeric in G721 / R721C7: got '#N/A'Expecting numeric in B722 / R722C2: got '#N/A'Expecting numeric in E722 / R722C5: got '#N/A'Expecting numeric in G722 / R722C7: got '#N/A'Expecting numeric in B723 / R723C2: got '#N/A'Expecting numeric in E723 / R723C5: got '#N/A'Expecting numeric in G723 / R723C7: got '#N/A'Expecting numeric in B724 / R724C2: got '#N/A'Expecting numeric in E724 / R724C5: got '#N/A'Expecting numeric in G724 / R724C7: got '#N/A'Expecting numeric in B725 / R725C2: got '#N/A'Expecting numeric in E725 / R725C5: got '#N/A'Expecting numeric in G725 / R725C7: got '#N/A'Expecting numeric in B726 / R726C2: got '#N/A'Expecting numeric in E726 / R726C5: got '#N/A'Expecting numeric in G726 / R726C7: got '#N/A'Expecting numeric in B727 / R727C2: got '#N/A'Expecting numeric in E727 / R727C5: got '#N/A'Expecting numeric in G727 / R727C7: got '#N/A'Expecting numeric in B728 / R728C2: got '#N/A'Expecting numeric in E728 / R728C5: got '#N/A'Expecting numeric in G728 / R728C7: got '#N/A'Expecting numeric in B729 / R729C2: got '#N/A'Expecting numeric in E729 / R729C5: got '#N/A'Expecting numeric in G729 / R729C7: got '#N/A'Expecting numeric in B730 / R730C2: got '#N/A'Expecting numeric in E730 / R730C5: got '#N/A'Expecting numeric in G730 / R730C7: got '#N/A'Expecting numeric in B731 / R731C2: got '#N/A'Expecting numeric in E731 / R731C5: got '#N/A'Expecting numeric in G731 / R731C7: got '#N/A'Expecting numeric in B732 / R732C2: got '#N/A'Expecting numeric in E732 / R732C5: got '#N/A'Expecting numeric in G732 / R732C7: got '#N/A'Expecting numeric in B733 / R733C2: got '#N/A'Expecting numeric in E733 / R733C5: got '#N/A'Expecting numeric in G733 / R733C7: got '#N/A'Expecting numeric in B734 / R734C2: got '#N/A'Expecting numeric in E734 / R734C5: got '#N/A'Expecting numeric in G734 / R734C7: got '#N/A'Expecting numeric in B735 / R735C2: got '#N/A'Expecting numeric in E735 / R735C5: got '#N/A'Expecting numeric in G735 / R735C7: got '#N/A'Expecting numeric in B736 / R736C2: got '#N/A'Expecting numeric in E736 / R736C5: got '#N/A'Expecting numeric in G736 / R736C7: got '#N/A'Expecting numeric in B737 / R737C2: got '#N/A'Expecting numeric in E737 / R737C5: got '#N/A'Expecting numeric in G737 / R737C7: got '#N/A'Expecting numeric in B738 / R738C2: got '#N/A'Expecting numeric in E738 / R738C5: got '#N/A'Expecting numeric in G738 / R738C7: got '#N/A'Expecting numeric in B739 / R739C2: got '#N/A'Expecting numeric in E739 / R739C5: got '#N/A'Expecting numeric in G739 / R739C7: got '#N/A'Expecting numeric in B740 / R740C2: got '#N/A'Expecting numeric in E740 / R740C5: got '#N/A'Expecting numeric in G740 / R740C7: got '#N/A'Expecting numeric in B741 / R741C2: got '#N/A'Expecting numeric in E741 / R741C5: got '#N/A'Expecting numeric in G741 / R741C7: got '#N/A'Expecting numeric in B742 / R742C2: got '#N/A'Expecting numeric in E742 / R742C5: got '#N/A'Expecting numeric in G742 / R742C7: got '#N/A'Expecting numeric in B743 / R743C2: got '#N/A'Expecting numeric in E743 / R743C5: got '#N/A'Expecting numeric in G743 / R743C7: got '#N/A'Expecting numeric in B744 / R744C2: got '#N/A'Expecting numeric in E744 / R744C5: got '#N/A'Expecting numeric in G744 / R744C7: got '#N/A'Expecting numeric in B745 / R745C2: got '#N/A'Expecting numeric in E745 / R745C5: got '#N/A'Expecting numeric in G745 / R745C7: got '#N/A'Expecting numeric in B746 / R746C2: got '#N/A'Expecting numeric in E746 / R746C5: got '#N/A'Expecting numeric in G746 / R746C7: got '#N/A'Expecting numeric in B747 / R747C2: got '#N/A'Expecting numeric in E747 / R747C5: got '#N/A'Expecting numeric in G747 / R747C7: got '#N/A'Expecting numeric in B748 / R748C2: got '#N/A'Expecting numeric in E748 / R748C5: got '#N/A'Expecting numeric in G748 / R748C7: got '#N/A'Expecting numeric in B749 / R749C2: got '#N/A'Expecting numeric in E749 / R749C5: got '#N/A'Expecting numeric in G749 / R749C7: got '#N/A'Expecting numeric in B750 / R750C2: got '#N/A'Expecting numeric in E750 / R750C5: got '#N/A'Expecting numeric in G750 / R750C7: got '#N/A'Expecting numeric in B751 / R751C2: got '#N/A'Expecting numeric in E751 / R751C5: got '#N/A'Expecting numeric in G751 / R751C7: got '#N/A'Expecting numeric in B752 / R752C2: got '#N/A'Expecting numeric in E752 / R752C5: got '#N/A'Expecting numeric in G752 / R752C7: got '#N/A'Expecting numeric in B753 / R753C2: got '#N/A'Expecting numeric in E753 / R753C5: got '#N/A'Expecting numeric in G753 / R753C7: got '#N/A'Expecting numeric in B754 / R754C2: got '#N/A'Expecting numeric in E754 / R754C5: got '#N/A'Expecting numeric in G754 / R754C7: got '#N/A'Expecting numeric in B755 / R755C2: got '#N/A'Expecting numeric in E755 / R755C5: got '#N/A'Expecting numeric in G755 / R755C7: got '#N/A'Expecting numeric in B756 / R756C2: got '#N/A'Expecting numeric in E756 / R756C5: got '#N/A'Expecting numeric in G756 / R756C7: got '#N/A'Expecting numeric in B757 / R757C2: got '#N/A'Expecting numeric in E757 / R757C5: got '#N/A'Expecting numeric in G757 / R757C7: got '#N/A'Expecting numeric in B758 / R758C2: got '#N/A'Expecting numeric in E758 / R758C5: got '#N/A'Expecting numeric in G758 / R758C7: got '#N/A'Expecting numeric in B759 / R759C2: got '#N/A'Expecting numeric in E759 / R759C5: got '#N/A'Expecting numeric in G759 / R759C7: got '#N/A'Expecting numeric in B760 / R760C2: got '#N/A'Expecting numeric in E760 / R760C5: got '#N/A'Expecting numeric in G760 / R760C7: got '#N/A'Expecting numeric in B761 / R761C2: got '#N/A'Expecting numeric in E761 / R761C5: got '#N/A'Expecting numeric in G761 / R761C7: got '#N/A'Expecting numeric in B762 / R762C2: got '#N/A'Expecting numeric in E762 / R762C5: got '#N/A'Expecting numeric in G762 / R762C7: got '#N/A'Expecting numeric in B763 / R763C2: got '#N/A'Expecting numeric in E763 / R763C5: got '#N/A'Expecting numeric in G763 / R763C7: got '#N/A'Expecting numeric in B764 / R764C2: got '#N/A'Expecting numeric in E764 / R764C5: got '#N/A'Expecting numeric in G764 / R764C7: got '#N/A'Expecting numeric in B765 / R765C2: got '#N/A'Expecting numeric in E765 / R765C5: got '#N/A'Expecting numeric in G765 / R765C7: got '#N/A'Expecting numeric in B766 / R766C2: got '#N/A'Expecting numeric in E766 / R766C5: got '#N/A'Expecting numeric in G766 / R766C7: got '#N/A'Expecting numeric in B767 / R767C2: got '#N/A'Expecting numeric in E767 / R767C5: got '#N/A'Expecting numeric in G767 / R767C7: got '#N/A'Expecting numeric in B768 / R768C2: got '#N/A'Expecting numeric in E768 / R768C5: got '#N/A'Expecting numeric in G768 / R768C7: got '#N/A'Expecting numeric in B769 / R769C2: got '#N/A'Expecting numeric in E769 / R769C5: got '#N/A'Expecting numeric in G769 / R769C7: got '#N/A'Expecting numeric in B770 / R770C2: got '#N/A'Expecting numeric in E770 / R770C5: got '#N/A'Expecting numeric in G770 / R770C7: got '#N/A'Expecting numeric in B771 / R771C2: got '#N/A'Expecting numeric in E771 / R771C5: got '#N/A'Expecting numeric in G771 / R771C7: got '#N/A'Expecting numeric in B772 / R772C2: got '#N/A'Expecting numeric in E772 / R772C5: got '#N/A'Expecting numeric in G772 / R772C7: got '#N/A'Expecting numeric in B773 / R773C2: got '#N/A'Expecting numeric in E773 / R773C5: got '#N/A'Expecting numeric in G773 / R773C7: got '#N/A'Expecting numeric in B774 / R774C2: got '#N/A'Expecting numeric in E774 / R774C5: got '#N/A'Expecting numeric in G774 / R774C7: got '#N/A'Expecting numeric in B775 / R775C2: got '#N/A'Expecting numeric in E775 / R775C5: got '#N/A'Expecting numeric in G775 / R775C7: got '#N/A'Expecting numeric in B776 / R776C2: got '#N/A'Expecting numeric in E776 / R776C5: got '#N/A'Expecting numeric in G776 / R776C7: got '#N/A'Expecting numeric in B777 / R777C2: got '#N/A'Expecting numeric in E777 / R777C5: got '#N/A'Expecting numeric in G777 / R777C7: got '#N/A'Expecting numeric in B778 / R778C2: got '#N/A'Expecting numeric in E778 / R778C5: got '#N/A'Expecting numeric in G778 / R778C7: got '#N/A'Expecting numeric in B779 / R779C2: got '#N/A'Expecting numeric in E779 / R779C5: got '#N/A'Expecting numeric in G779 / R779C7: got '#N/A'Expecting numeric in B780 / R780C2: got '#N/A'Expecting numeric in E780 / R780C5: got '#N/A'Expecting numeric in G780 / R780C7: got '#N/A'Expecting numeric in B781 / R781C2: got '#N/A'Expecting numeric in E781 / R781C5: got '#N/A'Expecting numeric in G781 / R781C7: got '#N/A'Expecting numeric in B782 / R782C2: got '#N/A'Expecting numeric in E782 / R782C5: got '#N/A'Expecting numeric in G782 / R782C7: got '#N/A'Expecting numeric in B783 / R783C2: got '#N/A'Expecting numeric in E783 / R783C5: got '#N/A'Expecting numeric in G783 / R783C7: got '#N/A'Expecting numeric in B784 / R784C2: got '#N/A'Expecting numeric in E784 / R784C5: got '#N/A'Expecting numeric in G784 / R784C7: got '#N/A'Expecting numeric in B785 / R785C2: got '#N/A'Expecting numeric in E785 / R785C5: got '#N/A'Expecting numeric in G785 / R785C7: got '#N/A'Expecting numeric in B786 / R786C2: got '#N/A'Expecting numeric in E786 / R786C5: got '#N/A'Expecting numeric in G786 / R786C7: got '#N/A'Expecting numeric in B787 / R787C2: got '#N/A'Expecting numeric in E787 / R787C5: got '#N/A'Expecting numeric in G787 / R787C7: got '#N/A'Expecting numeric in B788 / R788C2: got '#N/A'Expecting numeric in E788 / R788C5: got '#N/A'Expecting numeric in G788 / R788C7: got '#N/A'Expecting numeric in B789 / R789C2: got '#N/A'Expecting numeric in E789 / R789C5: got '#N/A'Expecting numeric in G789 / R789C7: got '#N/A'Expecting numeric in B790 / R790C2: got '#N/A'Expecting numeric in E790 / R790C5: got '#N/A'Expecting numeric in G790 / R790C7: got '#N/A'Expecting numeric in B791 / R791C2: got '#N/A'Expecting numeric in E791 / R791C5: got '#N/A'Expecting numeric in G791 / R791C7: got '#N/A'Expecting numeric in B792 / R792C2: got '#N/A'Expecting numeric in E792 / R792C5: got '#N/A'Expecting numeric in G792 / R792C7: got '#N/A'Expecting numeric in B793 / R793C2: got '#N/A'Expecting numeric in E793 / R793C5: got '#N/A'Expecting numeric in G793 / R793C7: got '#N/A'Expecting numeric in B794 / R794C2: got '#N/A'Expecting numeric in E794 / R794C5: got '#N/A'Expecting numeric in G794 / R794C7: got '#N/A'Expecting numeric in B795 / R795C2: got '#N/A'Expecting numeric in E795 / R795C5: got '#N/A'Expecting numeric in G795 / R795C7: got '#N/A'Expecting numeric in B796 / R796C2: got '#N/A'Expecting numeric in E796 / R796C5: got '#N/A'Expecting numeric in G796 / R796C7: got '#N/A'Expecting numeric in B797 / R797C2: got '#N/A'Expecting numeric in E797 / R797C5: got '#N/A'Expecting numeric in G797 / R797C7: got '#N/A'Expecting numeric in B798 / R798C2: got '#N/A'Expecting numeric in E798 / R798C5: got '#N/A'Expecting numeric in G798 / R798C7: got '#N/A'Expecting numeric in B799 / R799C2: got '#N/A'Expecting numeric in E799 / R799C5: got '#N/A'Expecting numeric in G799 / R799C7: got '#N/A'Expecting numeric in B800 / R800C2: got '#N/A'Expecting numeric in E800 / R800C5: got '#N/A'Expecting numeric in G800 / R800C7: got '#N/A'Expecting numeric in B801 / R801C2: got '#N/A'Expecting numeric in E801 / R801C5: got '#N/A'Expecting numeric in G801 / R801C7: got '#N/A'Expecting numeric in B802 / R802C2: got '#N/A'Expecting numeric in E802 / R802C5: got '#N/A'Expecting numeric in G802 / R802C7: got '#N/A'Expecting numeric in B803 / R803C2: got '#N/A'Expecting numeric in E803 / R803C5: got '#N/A'Expecting numeric in G803 / R803C7: got '#N/A'Expecting numeric in B804 / R804C2: got '#N/A'Expecting numeric in E804 / R804C5: got '#N/A'Expecting numeric in G804 / R804C7: got '#N/A'Expecting numeric in B805 / R805C2: got '#N/A'Expecting numeric in E805 / R805C5: got '#N/A'Expecting numeric in G805 / R805C7: got '#N/A'Expecting numeric in B806 / R806C2: got '#N/A'Expecting numeric in E806 / R806C5: got '#N/A'Expecting numeric in G806 / R806C7: got '#N/A'Expecting numeric in B807 / R807C2: got '#N/A'Expecting numeric in E807 / R807C5: got '#N/A'Expecting numeric in G807 / R807C7: got '#N/A'Expecting numeric in B808 / R808C2: got '#N/A'Expecting numeric in E808 / R808C5: got '#N/A'Expecting numeric in G808 / R808C7: got '#N/A'Expecting numeric in B809 / R809C2: got '#N/A'Expecting numeric in E809 / R809C5: got '#N/A'Expecting numeric in G809 / R809C7: got '#N/A'Expecting numeric in B810 / R810C2: got '#N/A'Expecting numeric in E810 / R810C5: got '#N/A'Expecting numeric in G810 / R810C7: got '#N/A'Expecting numeric in B811 / R811C2: got '#N/A'Expecting numeric in E811 / R811C5: got '#N/A'Expecting numeric in G811 / R811C7: got '#N/A'Expecting numeric in B812 / R812C2: got '#N/A'Expecting numeric in E812 / R812C5: got '#N/A'Expecting numeric in G812 / R812C7: got '#N/A'Expecting numeric in B813 / R813C2: got '#N/A'Expecting numeric in E813 / R813C5: got '#N/A'Expecting numeric in G813 / R813C7: got '#N/A'Expecting numeric in B814 / R814C2: got '#N/A'Expecting numeric in E814 / R814C5: got '#N/A'Expecting numeric in G814 / R814C7: got '#N/A'Expecting numeric in B815 / R815C2: got '#N/A'Expecting numeric in E815 / R815C5: got '#N/A'Expecting numeric in G815 / R815C7: got '#N/A'Expecting numeric in B816 / R816C2: got '#N/A'Expecting numeric in E816 / R816C5: got '#N/A'Expecting numeric in G816 / R816C7: got '#N/A'Expecting numeric in B817 / R817C2: got '#N/A'Expecting numeric in E817 / R817C5: got '#N/A'Expecting numeric in G817 / R817C7: got '#N/A'Expecting numeric in B818 / R818C2: got '#N/A'Expecting numeric in E818 / R818C5: got '#N/A'Expecting numeric in G818 / R818C7: got '#N/A'Expecting numeric in B819 / R819C2: got '#N/A'Expecting numeric in E819 / R819C5: got '#N/A'Expecting numeric in G819 / R819C7: got '#N/A'Expecting numeric in B820 / R820C2: got '#N/A'Expecting numeric in E820 / R820C5: got '#N/A'Expecting numeric in G820 / R820C7: got '#N/A'Expecting numeric in B821 / R821C2: got '#N/A'Expecting numeric in E821 / R821C5: got '#N/A'Expecting numeric in G821 / R821C7: got '#N/A'Expecting numeric in B822 / R822C2: got '#N/A'Expecting numeric in E822 / R822C5: got '#N/A'Expecting numeric in G822 / R822C7: got '#N/A'Expecting numeric in B823 / R823C2: got '#N/A'Expecting numeric in E823 / R823C5: got '#N/A'Expecting numeric in G823 / R823C7: got '#N/A'Expecting numeric in B824 / R824C2: got '#N/A'Expecting numeric in E824 / R824C5: got '#N/A'Expecting numeric in G824 / R824C7: got '#N/A'Expecting numeric in B825 / R825C2: got '#N/A'Expecting numeric in E825 / R825C5: got '#N/A'Expecting numeric in G825 / R825C7: got '#N/A'Expecting numeric in B826 / R826C2: got '#N/A'Expecting numeric in E826 / R826C5: got '#N/A'Expecting numeric in G826 / R826C7: got '#N/A'Expecting numeric in B827 / R827C2: got '#N/A'Expecting numeric in E827 / R827C5: got '#N/A'Expecting numeric in G827 / R827C7: got '#N/A'Expecting numeric in B828 / R828C2: got '#N/A'Expecting numeric in E828 / R828C5: got '#N/A'Expecting numeric in G828 / R828C7: got '#N/A'Expecting numeric in B829 / R829C2: got '#N/A'Expecting numeric in E829 / R829C5: got '#N/A'Expecting numeric in G829 / R829C7: got '#N/A'Expecting numeric in B830 / R830C2: got '#N/A'Expecting numeric in E830 / R830C5: got '#N/A'Expecting numeric in G830 / R830C7: got '#N/A'Expecting numeric in B831 / R831C2: got '#N/A'Expecting numeric in E831 / R831C5: got '#N/A'Expecting numeric in G831 / R831C7: got '#N/A'Expecting numeric in B832 / R832C2: got '#N/A'Expecting numeric in E832 / R832C5: got '#N/A'Expecting numeric in G832 / R832C7: got '#N/A'Expecting numeric in B833 / R833C2: got '#N/A'Expecting numeric in E833 / R833C5: got '#N/A'Expecting numeric in G833 / R833C7: got '#N/A'Expecting numeric in B834 / R834C2: got '#N/A'Expecting numeric in E834 / R834C5: got '#N/A'Expecting numeric in G834 / R834C7: got '#N/A'Expecting numeric in B835 / R835C2: got '#N/A'Expecting numeric in E835 / R835C5: got '#N/A'Expecting numeric in G835 / R835C7: got '#N/A'Expecting numeric in B836 / R836C2: got '#N/A'Expecting numeric in E836 / R836C5: got '#N/A'Expecting numeric in G836 / R836C7: got '#N/A'Expecting numeric in B837 / R837C2: got '#N/A'Expecting numeric in E837 / R837C5: got '#N/A'Expecting numeric in G837 / R837C7: got '#N/A'Expecting numeric in B838 / R838C2: got '#N/A'Expecting numeric in E838 / R838C5: got '#N/A'Expecting numeric in G838 / R838C7: got '#N/A'Expecting numeric in B839 / R839C2: got '#N/A'Expecting numeric in E839 / R839C5: got '#N/A'Expecting numeric in G839 / R839C7: got '#N/A'Expecting numeric in B840 / R840C2: got '#N/A'Expecting numeric in E840 / R840C5: got '#N/A'Expecting numeric in G840 / R840C7: got '#N/A'Expecting numeric in B841 / R841C2: got '#N/A'Expecting numeric in E841 / R841C5: got '#N/A'Expecting numeric in G841 / R841C7: got '#N/A'Expecting numeric in B842 / R842C2: got '#N/A'Expecting numeric in E842 / R842C5: got '#N/A'Expecting numeric in G842 / R842C7: got '#N/A'Expecting numeric in B843 / R843C2: got '#N/A'Expecting numeric in E843 / R843C5: got '#N/A'Expecting numeric in G843 / R843C7: got '#N/A'Expecting numeric in B844 / R844C2: got '#N/A'Expecting numeric in E844 / R844C5: got '#N/A'Expecting numeric in G844 / R844C7: got '#N/A'Expecting numeric in B845 / R845C2: got '#N/A'Expecting numeric in E845 / R845C5: got '#N/A'Expecting numeric in G845 / R845C7: got '#N/A'Expecting numeric in B846 / R846C2: got '#N/A'Expecting numeric in E846 / R846C5: got '#N/A'Expecting numeric in G846 / R846C7: got '#N/A'Expecting numeric in B847 / R847C2: got '#N/A'Expecting numeric in E847 / R847C5: got '#N/A'Expecting numeric in G847 / R847C7: got '#N/A'Expecting numeric in B848 / R848C2: got '#N/A'Expecting numeric in E848 / R848C5: got '#N/A'Expecting numeric in G848 / R848C7: got '#N/A'Expecting numeric in B849 / R849C2: got '#N/A'Expecting numeric in E849 / R849C5: got '#N/A'Expecting numeric in G849 / R849C7: got '#N/A'Expecting numeric in B850 / R850C2: got '#N/A'Expecting numeric in E850 / R850C5: got '#N/A'Expecting numeric in G850 / R850C7: got '#N/A'Expecting numeric in B851 / R851C2: got '#N/A'Expecting numeric in E851 / R851C5: got '#N/A'Expecting numeric in G851 / R851C7: got '#N/A'Expecting numeric in B852 / R852C2: got '#N/A'Expecting numeric in E852 / R852C5: got '#N/A'Expecting numeric in G852 / R852C7: got '#N/A'Expecting numeric in B853 / R853C2: got '#N/A'Expecting numeric in E853 / R853C5: got '#N/A'Expecting numeric in G853 / R853C7: got '#N/A'Expecting numeric in B854 / R854C2: got '#N/A'Expecting numeric in E854 / R854C5: got '#N/A'Expecting numeric in G854 / R854C7: got '#N/A'Expecting numeric in B855 / R855C2: got '#N/A'Expecting numeric in E855 / R855C5: got '#N/A'Expecting numeric in G855 / R855C7: got '#N/A'Expecting numeric in B856 / R856C2: got '#N/A'Expecting numeric in E856 / R856C5: got '#N/A'Expecting numeric in G856 / R856C7: got '#N/A'Expecting numeric in B857 / R857C2: got '#N/A'Expecting numeric in E857 / R857C5: got '#N/A'Expecting numeric in G857 / R857C7: got '#N/A'Expecting numeric in B858 / R858C2: got '#N/A'Expecting numeric in E858 / R858C5: got '#N/A'Expecting numeric in G858 / R858C7: got '#N/A'Expecting numeric in B859 / R859C2: got '#N/A'Expecting numeric in E859 / R859C5: got '#N/A'Expecting numeric in G859 / R859C7: got '#N/A'Expecting numeric in B860 / R860C2: got '#N/A'Expecting numeric in E860 / R860C5: got '#N/A'Expecting numeric in G860 / R860C7: got '#N/A'Expecting numeric in B861 / R861C2: got '#N/A'Expecting numeric in E861 / R861C5: got '#N/A'Expecting numeric in G861 / R861C7: got '#N/A'Expecting numeric in B862 / R862C2: got '#N/A'Expecting numeric in E862 / R862C5: got '#N/A'Expecting numeric in G862 / R862C7: got '#N/A'Expecting numeric in B863 / R863C2: got '#N/A'Expecting numeric in E863 / R863C5: got '#N/A'Expecting numeric in G863 / R863C7: got '#N/A'Expecting numeric in B864 / R864C2: got '#N/A'Expecting numeric in E864 / R864C5: got '#N/A'Expecting numeric in G864 / R864C7: got '#N/A'Expecting numeric in B865 / R865C2: got '#N/A'Expecting numeric in E865 / R865C5: got '#N/A'Expecting numeric in G865 / R865C7: got '#N/A'Expecting numeric in B866 / R866C2: got '#N/A'Expecting numeric in E866 / R866C5: got '#N/A'Expecting numeric in G866 / R866C7: got '#N/A'Expecting numeric in B867 / R867C2: got '#N/A'Expecting numeric in E867 / R867C5: got '#N/A'Expecting numeric in G867 / R867C7: got '#N/A'Expecting numeric in B868 / R868C2: got '#N/A'Expecting numeric in E868 / R868C5: got '#N/A'Expecting numeric in G868 / R868C7: got '#N/A'Expecting numeric in B869 / R869C2: got '#N/A'Expecting numeric in E869 / R869C5: got '#N/A'Expecting numeric in G869 / R869C7: got '#N/A'Expecting numeric in B870 / R870C2: got '#N/A'Expecting numeric in E870 / R870C5: got '#N/A'Expecting numeric in G870 / R870C7: got '#N/A'Expecting numeric in B871 / R871C2: got '#N/A'Expecting numeric in E871 / R871C5: got '#N/A'Expecting numeric in G871 / R871C7: got '#N/A'Expecting numeric in B872 / R872C2: got '#N/A'Expecting numeric in E872 / R872C5: got '#N/A'Expecting numeric in G872 / R872C7: got '#N/A'Expecting numeric in B873 / R873C2: got '#N/A'Expecting numeric in E873 / R873C5: got '#N/A'Expecting numeric in G873 / R873C7: got '#N/A'Expecting numeric in B874 / R874C2: got '#N/A'Expecting numeric in E874 / R874C5: got '#N/A'Expecting numeric in G874 / R874C7: got '#N/A'Expecting numeric in B875 / R875C2: got '#N/A'Expecting numeric in E875 / R875C5: got '#N/A'Expecting numeric in G875 / R875C7: got '#N/A'Expecting numeric in B876 / R876C2: got '#N/A'Expecting numeric in E876 / R876C5: got '#N/A'Expecting numeric in G876 / R876C7: got '#N/A'Expecting numeric in B877 / R877C2: got '#N/A'Expecting numeric in E877 / R877C5: got '#N/A'Expecting numeric in G877 / R877C7: got '#N/A'Expecting numeric in B878 / R878C2: got '#N/A'Expecting numeric in E878 / R878C5: got '#N/A'Expecting numeric in G878 / R878C7: got '#N/A'Expecting numeric in B879 / R879C2: got '#N/A'Expecting numeric in E879 / R879C5: got '#N/A'Expecting numeric in G879 / R879C7: got '#N/A'Expecting numeric in B880 / R880C2: got '#N/A'Expecting numeric in E880 / R880C5: got '#N/A'Expecting numeric in G880 / R880C7: got '#N/A'Expecting numeric in B881 / R881C2: got '#N/A'Expecting numeric in E881 / R881C5: got '#N/A'Expecting numeric in G881 / R881C7: got '#N/A'Expecting numeric in B882 / R882C2: got '#N/A'Expecting numeric in E882 / R882C5: got '#N/A'Expecting numeric in G882 / R882C7: got '#N/A'Expecting numeric in B883 / R883C2: got '#N/A'Expecting numeric in E883 / R883C5: got '#N/A'Expecting numeric in G883 / R883C7: got '#N/A'Expecting numeric in B884 / R884C2: got '#N/A'Expecting numeric in E884 / R884C5: got '#N/A'Expecting numeric in G884 / R884C7: got '#N/A'Expecting numeric in B885 / R885C2: got '#N/A'Expecting numeric in E885 / R885C5: got '#N/A'Expecting numeric in G885 / R885C7: got '#N/A'Expecting numeric in B886 / R886C2: got '#N/A'Expecting numeric in E886 / R886C5: got '#N/A'Expecting numeric in G886 / R886C7: got '#N/A'Expecting numeric in B887 / R887C2: got '#N/A'Expecting numeric in E887 / R887C5: got '#N/A'Expecting numeric in G887 / R887C7: got '#N/A'Expecting numeric in B888 / R888C2: got '#N/A'Expecting numeric in E888 / R888C5: got '#N/A'Expecting numeric in G888 / R888C7: got '#N/A'Expecting numeric in B889 / R889C2: got '#N/A'Expecting numeric in E889 / R889C5: got '#N/A'Expecting numeric in G889 / R889C7: got '#N/A'Expecting numeric in B890 / R890C2: got '#N/A'Expecting numeric in E890 / R890C5: got '#N/A'Expecting numeric in G890 / R890C7: got '#N/A'Expecting numeric in B891 / R891C2: got '#N/A'Expecting numeric in E891 / R891C5: got '#N/A'Expecting numeric in G891 / R891C7: got '#N/A'Expecting numeric in B892 / R892C2: got '#N/A'Expecting numeric in E892 / R892C5: got '#N/A'Expecting numeric in G892 / R892C7: got '#N/A'Expecting numeric in B893 / R893C2: got '#N/A'Expecting numeric in E893 / R893C5: got '#N/A'Expecting numeric in G893 / R893C7: got '#N/A'Expecting numeric in B894 / R894C2: got '#N/A'Expecting numeric in E894 / R894C5: got '#N/A'Expecting numeric in G894 / R894C7: got '#N/A'Expecting numeric in B895 / R895C2: got '#N/A'Expecting numeric in E895 / R895C5: got '#N/A'Expecting numeric in G895 / R895C7: got '#N/A'Expecting numeric in B896 / R896C2: got '#N/A'Expecting numeric in E896 / R896C5: got '#N/A'Expecting numeric in G896 / R896C7: got '#N/A'Expecting numeric in B897 / R897C2: got '#N/A'Expecting numeric in E897 / R897C5: got '#N/A'Expecting numeric in G897 / R897C7: got '#N/A'Expecting numeric in B898 / R898C2: got '#N/A'Expecting numeric in E898 / R898C5: got '#N/A'Expecting numeric in G898 / R898C7: got '#N/A'Expecting numeric in B899 / R899C2: got '#N/A'Expecting numeric in E899 / R899C5: got '#N/A'Expecting numeric in G899 / R899C7: got '#N/A'Expecting numeric in B900 / R900C2: got '#N/A'Expecting numeric in E900 / R900C5: got '#N/A'Expecting numeric in G900 / R900C7: got '#N/A'Expecting numeric in B901 / R901C2: got '#N/A'Expecting numeric in E901 / R901C5: got '#N/A'Expecting numeric in G901 / R901C7: got '#N/A'Expecting numeric in B902 / R902C2: got '#N/A'Expecting numeric in E902 / R902C5: got '#N/A'Expecting numeric in G902 / R902C7: got '#N/A'Expecting numeric in B903 / R903C2: got '#N/A'Expecting numeric in E903 / R903C5: got '#N/A'Expecting numeric in G903 / R903C7: got '#N/A'Expecting numeric in B904 / R904C2: got '#N/A'Expecting numeric in E904 / R904C5: got '#N/A'Expecting numeric in G904 / R904C7: got '#N/A'Expecting numeric in B905 / R905C2: got '#N/A'Expecting numeric in E905 / R905C5: got '#N/A'Expecting numeric in G905 / R905C7: got '#N/A'Expecting numeric in B906 / R906C2: got '#N/A'Expecting numeric in E906 / R906C5: got '#N/A'Expecting numeric in G906 / R906C7: got '#N/A'Expecting numeric in B907 / R907C2: got '#N/A'Expecting numeric in E907 / R907C5: got '#N/A'Expecting numeric in G907 / R907C7: got '#N/A'Expecting numeric in B908 / R908C2: got '#N/A'Expecting numeric in E908 / R908C5: got '#N/A'Expecting numeric in G908 / R908C7: got '#N/A'Expecting numeric in B909 / R909C2: got '#N/A'Expecting numeric in E909 / R909C5: got '#N/A'Expecting numeric in G909 / R909C7: got '#N/A'Expecting numeric in B910 / R910C2: got '#N/A'Expecting numeric in E910 / R910C5: got '#N/A'Expecting numeric in G910 / R910C7: got '#N/A'Expecting numeric in B911 / R911C2: got '#N/A'Expecting numeric in E911 / R911C5: got '#N/A'Expecting numeric in G911 / R911C7: got '#N/A'Expecting numeric in B912 / R912C2: got '#N/A'Expecting numeric in E912 / R912C5: got '#N/A'Expecting numeric in G912 / R912C7: got '#N/A'Expecting numeric in B913 / R913C2: got '#N/A'Expecting numeric in E913 / R913C5: got '#N/A'Expecting numeric in G913 / R913C7: got '#N/A'Expecting numeric in B914 / R914C2: got '#N/A'Expecting numeric in E914 / R914C5: got '#N/A'Expecting numeric in G914 / R914C7: got '#N/A'Expecting numeric in B915 / R915C2: got '#N/A'Expecting numeric in E915 / R915C5: got '#N/A'Expecting numeric in G915 / R915C7: got '#N/A'Expecting numeric in B916 / R916C2: got '#N/A'Expecting numeric in E916 / R916C5: got '#N/A'Expecting numeric in G916 / R916C7: got '#N/A'Expecting numeric in B917 / R917C2: got '#N/A'Expecting numeric in E917 / R917C5: got '#N/A'Expecting numeric in G917 / R917C7: got '#N/A'Expecting numeric in B918 / R918C2: got '#N/A'Expecting numeric in E918 / R918C5: got '#N/A'Expecting numeric in G918 / R918C7: got '#N/A'Expecting numeric in B919 / R919C2: got '#N/A'Expecting numeric in E919 / R919C5: got '#N/A'Expecting numeric in G919 / R919C7: got '#N/A'Expecting numeric in B920 / R920C2: got '#N/A'Expecting numeric in E920 / R920C5: got '#N/A'Expecting numeric in G920 / R920C7: got '#N/A'Expecting numeric in B921 / R921C2: got '#N/A'Expecting numeric in E921 / R921C5: got '#N/A'Expecting numeric in G921 / R921C7: got '#N/A'Expecting numeric in B922 / R922C2: got '#N/A'Expecting numeric in E922 / R922C5: got '#N/A'Expecting numeric in G922 / R922C7: got '#N/A'Expecting numeric in B923 / R923C2: got '#N/A'Expecting numeric in E923 / R923C5: got '#N/A'Expecting numeric in G923 / R923C7: got '#N/A'Expecting numeric in B924 / R924C2: got '#N/A'Expecting numeric in E924 / R924C5: got '#N/A'Expecting numeric in G924 / R924C7: got '#N/A'Expecting numeric in B925 / R925C2: got '#N/A'Expecting numeric in E925 / R925C5: got '#N/A'Expecting numeric in G925 / R925C7: got '#N/A'Expecting numeric in B926 / R926C2: got '#N/A'Expecting numeric in E926 / R926C5: got '#N/A'Expecting numeric in G926 / R926C7: got '#N/A'Expecting numeric in B927 / R927C2: got '#N/A'Expecting numeric in E927 / R927C5: got '#N/A'Expecting numeric in G927 / R927C7: got '#N/A'Expecting numeric in B928 / R928C2: got '#N/A'Expecting numeric in E928 / R928C5: got '#N/A'Expecting numeric in G928 / R928C7: got '#N/A'Expecting numeric in B929 / R929C2: got '#N/A'Expecting numeric in E929 / R929C5: got '#N/A'Expecting numeric in G929 / R929C7: got '#N/A'Expecting numeric in B930 / R930C2: got '#N/A'Expecting numeric in E930 / R930C5: got '#N/A'Expecting numeric in G930 / R930C7: got '#N/A'Expecting numeric in B931 / R931C2: got '#N/A'Expecting numeric in E931 / R931C5: got '#N/A'Expecting numeric in G931 / R931C7: got '#N/A'Expecting numeric in B932 / R932C2: got '#N/A'Expecting numeric in E932 / R932C5: got '#N/A'Expecting numeric in G932 / R932C7: got '#N/A'Expecting numeric in B933 / R933C2: got '#N/A'Expecting numeric in E933 / R933C5: got '#N/A'Expecting numeric in G933 / R933C7: got '#N/A'Expecting numeric in B934 / R934C2: got '#N/A'Expecting numeric in E934 / R934C5: got '#N/A'Expecting numeric in G934 / R934C7: got '#N/A'Expecting numeric in B935 / R935C2: got '#N/A'Expecting numeric in E935 / R935C5: got '#N/A'Expecting numeric in G935 / R935C7: got '#N/A'Expecting numeric in B936 / R936C2: got '#N/A'Expecting numeric in E936 / R936C5: got '#N/A'Expecting numeric in G936 / R936C7: got '#N/A'Expecting numeric in B937 / R937C2: got '#N/A'Expecting numeric in E937 / R937C5: got '#N/A'Expecting numeric in G937 / R937C7: got '#N/A'Expecting numeric in B938 / R938C2: got '#N/A'Expecting numeric in E938 / R938C5: got '#N/A'Expecting numeric in G938 / R938C7: got '#N/A'Expecting numeric in B939 / R939C2: got '#N/A'Expecting numeric in E939 / R939C5: got '#N/A'Expecting numeric in G939 / R939C7: got '#N/A'Expecting numeric in B940 / R940C2: got '#N/A'Expecting numeric in E940 / R940C5: got '#N/A'Expecting numeric in G940 / R940C7: got '#N/A'Expecting numeric in B941 / R941C2: got '#N/A'Expecting numeric in E941 / R941C5: got '#N/A'Expecting numeric in G941 / R941C7: got '#N/A'Expecting numeric in B942 / R942C2: got '#N/A'Expecting numeric in E942 / R942C5: got '#N/A'Expecting numeric in G942 / R942C7: got '#N/A'Expecting numeric in B943 / R943C2: got '#N/A'Expecting numeric in E943 / R943C5: got '#N/A'Expecting numeric in G943 / R943C7: got '#N/A'Expecting numeric in B944 / R944C2: got '#N/A'Expecting numeric in E944 / R944C5: got '#N/A'Expecting numeric in G944 / R944C7: got '#N/A'Expecting numeric in B945 / R945C2: got '#N/A'Expecting numeric in E945 / R945C5: got '#N/A'Expecting numeric in G945 / R945C7: got '#N/A'Expecting numeric in B946 / R946C2: got '#N/A'Expecting numeric in E946 / R946C5: got '#N/A'Expecting numeric in G946 / R946C7: got '#N/A'Expecting numeric in B947 / R947C2: got '#N/A'Expecting numeric in E947 / R947C5: got '#N/A'Expecting numeric in G947 / R947C7: got '#N/A'Expecting numeric in B948 / R948C2: got '#N/A'Expecting numeric in E948 / R948C5: got '#N/A'Expecting numeric in G948 / R948C7: got '#N/A'Expecting numeric in B949 / R949C2: got '#N/A'Expecting numeric in E949 / R949C5: got '#N/A'Expecting numeric in G949 / R949C7: got '#N/A'Expecting numeric in B950 / R950C2: got '#N/A'Expecting numeric in E950 / R950C5: got '#N/A'Expecting numeric in G950 / R950C7: got '#N/A'Expecting numeric in B951 / R951C2: got '#N/A'Expecting numeric in E951 / R951C5: got '#N/A'Expecting numeric in G951 / R951C7: got '#N/A'Expecting numeric in B952 / R952C2: got '#N/A'Expecting numeric in E952 / R952C5: got '#N/A'Expecting numeric in G952 / R952C7: got '#N/A'Expecting numeric in B953 / R953C2: got '#N/A'Expecting numeric in E953 / R953C5: got '#N/A'Expecting numeric in G953 / R953C7: got '#N/A'Expecting numeric in B954 / R954C2: got '#N/A'Expecting numeric in E954 / R954C5: got '#N/A'Expecting numeric in G954 / R954C7: got '#N/A'Expecting numeric in B955 / R955C2: got '#N/A'Expecting numeric in E955 / R955C5: got '#N/A'Expecting numeric in G955 / R955C7: got '#N/A'Expecting numeric in B956 / R956C2: got '#N/A'Expecting numeric in E956 / R956C5: got '#N/A'Expecting numeric in G956 / R956C7: got '#N/A'Expecting numeric in B957 / R957C2: got '#N/A'Expecting numeric in E957 / R957C5: got '#N/A'Expecting numeric in G957 / R957C7: got '#N/A'Expecting numeric in B958 / R958C2: got '#N/A'Expecting numeric in E958 / R958C5: got '#N/A'Expecting numeric in G958 / R958C7: got '#N/A'Expecting numeric in B959 / R959C2: got '#N/A'Expecting numeric in E959 / R959C5: got '#N/A'Expecting numeric in G959 / R959C7: got '#N/A'Expecting numeric in B960 / R960C2: got '#N/A'Expecting numeric in E960 / R960C5: got '#N/A'Expecting numeric in G960 / R960C7: got '#N/A'Expecting numeric in B961 / R961C2: got '#N/A'Expecting numeric in E961 / R961C5: got '#N/A'Expecting numeric in G961 / R961C7: got '#N/A'Expecting numeric in B962 / R962C2: got '#N/A'Expecting numeric in E962 / R962C5: got '#N/A'Expecting numeric in G962 / R962C7: got '#N/A'Expecting numeric in B963 / R963C2: got '#N/A'Expecting numeric in E963 / R963C5: got '#N/A'Expecting numeric in G963 / R963C7: got '#N/A'Expecting numeric in B964 / R964C2: got '#N/A'Expecting numeric in E964 / R964C5: got '#N/A'Expecting numeric in G964 / R964C7: got '#N/A'Expecting numeric in B965 / R965C2: got '#N/A'Expecting numeric in E965 / R965C5: got '#N/A'Expecting numeric in G965 / R965C7: got '#N/A'Expecting numeric in B966 / R966C2: got '#N/A'Expecting numeric in E966 / R966C5: got '#N/A'Expecting numeric in G966 / R966C7: got '#N/A'Expecting numeric in B967 / R967C2: got '#N/A'Expecting numeric in E967 / R967C5: got '#N/A'Expecting numeric in G967 / R967C7: got '#N/A'Expecting numeric in B968 / R968C2: got '#N/A'Expecting numeric in E968 / R968C5: got '#N/A'Expecting numeric in G968 / R968C7: got '#N/A'Expecting numeric in B969 / R969C2: got '#N/A'Expecting numeric in E969 / R969C5: got '#N/A'Expecting numeric in G969 / R969C7: got '#N/A'Expecting numeric in B970 / R970C2: got '#N/A'Expecting numeric in E970 / R970C5: got '#N/A'Expecting numeric in G970 / R970C7: got '#N/A'Expecting numeric in B971 / R971C2: got '#N/A'Expecting numeric in E971 / R971C5: got '#N/A'Expecting numeric in G971 / R971C7: got '#N/A'Expecting numeric in B972 / R972C2: got '#N/A'Expecting numeric in E972 / R972C5: got '#N/A'Expecting numeric in G972 / R972C7: got '#N/A'Expecting numeric in B973 / R973C2: got '#N/A'Expecting numeric in E973 / R973C5: got '#N/A'Expecting numeric in G973 / R973C7: got '#N/A'Expecting numeric in B974 / R974C2: got '#N/A'Expecting numeric in E974 / R974C5: got '#N/A'Expecting numeric in G974 / R974C7: got '#N/A'Expecting numeric in B975 / R975C2: got '#N/A'Expecting numeric in E975 / R975C5: got '#N/A'Expecting numeric in G975 / R975C7: got '#N/A'Expecting numeric in B976 / R976C2: got '#N/A'Expecting numeric in E976 / R976C5: got '#N/A'Expecting numeric in G976 / R976C7: got '#N/A'Expecting numeric in B977 / R977C2: got '#N/A'Expecting numeric in E977 / R977C5: got '#N/A'Expecting numeric in G977 / R977C7: got '#N/A'Expecting numeric in B978 / R978C2: got '#N/A'Expecting numeric in E978 / R978C5: got '#N/A'Expecting numeric in G978 / R978C7: got '#N/A'Expecting numeric in B979 / R979C2: got '#N/A'Expecting numeric in E979 / R979C5: got '#N/A'Expecting numeric in G979 / R979C7: got '#N/A'Expecting numeric in B980 / R980C2: got '#N/A'Expecting numeric in E980 / R980C5: got '#N/A'Expecting numeric in G980 / R980C7: got '#N/A'Expecting numeric in B981 / R981C2: got '#N/A'Expecting numeric in E981 / R981C5: got '#N/A'Expecting numeric in G981 / R981C7: got '#N/A'Expecting numeric in B982 / R982C2: got '#N/A'Expecting numeric in E982 / R982C5: got '#N/A'Expecting numeric in G982 / R982C7: got '#N/A'Expecting numeric in B983 / R983C2: got '#N/A'Expecting numeric in E983 / R983C5: got '#N/A'Expecting numeric in G983 / R983C7: got '#N/A'Expecting numeric in B984 / R984C2: got '#N/A'Expecting numeric in E984 / R984C5: got '#N/A'Expecting numeric in G984 / R984C7: got '#N/A'Expecting numeric in B985 / R985C2: got '#N/A'Expecting numeric in E985 / R985C5: got '#N/A'Expecting numeric in G985 / R985C7: got '#N/A'Expecting numeric in B986 / R986C2: got '#N/A'Expecting numeric in E986 / R986C5: got '#N/A'Expecting numeric in G986 / R986C7: got '#N/A'Expecting numeric in B987 / R987C2: got '#N/A'Expecting numeric in E987 / R987C5: got '#N/A'Expecting numeric in G987 / R987C7: got '#N/A'Expecting numeric in B988 / R988C2: got '#N/A'Expecting numeric in E988 / R988C5: got '#N/A'Expecting numeric in G988 / R988C7: got '#N/A'Expecting numeric in B989 / R989C2: got '#N/A'Expecting numeric in E989 / R989C5: got '#N/A'Expecting numeric in G989 / R989C7: got '#N/A'Expecting numeric in B990 / R990C2: got '#N/A'Expecting numeric in E990 / R990C5: got '#N/A'Expecting numeric in G990 / R990C7: got '#N/A'Expecting numeric in B991 / R991C2: got '#N/A'Expecting numeric in E991 / R991C5: got '#N/A'Expecting numeric in G991 / R991C7: got '#N/A'Expecting numeric in B992 / R992C2: got '#N/A'Expecting numeric in E992 / R992C5: got '#N/A'Expecting numeric in G992 / R992C7: got '#N/A'Expecting numeric in B993 / R993C2: got '#N/A'Expecting numeric in E993 / R993C5: got '#N/A'Expecting numeric in G993 / R993C7: got '#N/A'Expecting numeric in B994 / R994C2: got '#N/A'Expecting numeric in E994 / R994C5: got '#N/A'Expecting numeric in G994 / R994C7: got '#N/A'Expecting numeric in B995 / R995C2: got '#N/A'Expecting numeric in E995 / R995C5: got '#N/A'Expecting numeric in G995 / R995C7: got '#N/A'Expecting numeric in B996 / R996C2: got '#N/A'Expecting numeric in E996 / R996C5: got '#N/A'Expecting numeric in G996 / R996C7: got '#N/A'Expecting numeric in B997 / R997C2: got '#N/A'Expecting numeric in E997 / R997C5: got '#N/A'Expecting numeric in G997 / R997C7: got '#N/A'Expecting numeric in B998 / R998C2: got '#N/A'Expecting numeric in E998 / R998C5: got '#N/A'Expecting numeric in G998 / R998C7: got '#N/A'Expecting numeric in B999 / R999C2: got '#N/A'Expecting numeric in E999 / R999C5: got '#N/A'Expecting numeric in G999 / R999C7: got '#N/A'Expecting numeric in B1000 / R1000C2: got '#N/A'Expecting numeric in E1000 / R1000C5: got '#N/A'Expecting numeric in G1000 / R1000C7: got '#N/A'Expecting numeric in B1001 / R1001C2: got '#N/A'Expecting numeric in E1001 / R1001C5: got '#N/A'Expecting numeric in G1001 / R1001C7: got '#N/A'Expecting numeric in B1002 / R1002C2: got '#N/A'Expecting numeric in E1002 / R1002C5: got '#N/A'Expecting numeric in G1002 / R1002C7: got '#N/A'Expecting numeric in B1003 / R1003C2: got '#N/A'Expecting numeric in E1003 / R1003C5: got '#N/A'Expecting numeric in G1003 / R1003C7: got '#N/A'Expecting numeric in B1004 / R1004C2: got '#N/A'Expecting numeric in E1004 / R1004C5: got '#N/A'Expecting numeric in G1004 / R1004C7: got '#N/A'Expecting numeric in B1005 / R1005C2: got '#N/A'Expecting numeric in E1005 / R1005C5: got '#N/A'Expecting numeric in G1005 / R1005C7: got '#N/A'Expecting numeric in B1006 / R1006C2: got '#N/A'Expecting numeric in E1006 / R1006C5: got '#N/A'Expecting numeric in G1006 / R1006C7: got '#N/A'Expecting numeric in B1007 / R1007C2: got '#N/A'Expecting numeric in E1007 / R1007C5: got '#N/A'Expecting numeric in G1007 / R1007C7: got '#N/A'Expecting numeric in B1008 / R1008C2: got '#N/A'Expecting numeric in E1008 / R1008C5: got '#N/A'Expecting numeric in G1008 / R1008C7: got '#N/A'Expecting numeric in B1009 / R1009C2: got '#N/A'Expecting numeric in E1009 / R1009C5: got '#N/A'Expecting numeric in G1009 / R1009C7: got '#N/A'Expecting numeric in B1010 / R1010C2: got '#N/A'Expecting numeric in E1010 / R1010C5: got '#N/A'Expecting numeric in G1010 / R1010C7: got '#N/A'Expecting numeric in B1011 / R1011C2: got '#N/A'Expecting numeric in E1011 / R1011C5: got '#N/A'Expecting numeric in G1011 / R1011C7: got '#N/A'Expecting numeric in B1012 / R1012C2: got '#N/A'Expecting numeric in E1012 / R1012C5: got '#N/A'Expecting numeric in G1012 / R1012C7: got '#N/A'Expecting numeric in B1013 / R1013C2: got '#N/A'Expecting numeric in E1013 / R1013C5: got '#N/A'Expecting numeric in G1013 / R1013C7: got '#N/A'Expecting numeric in B1014 / R1014C2: got '#N/A'Expecting numeric in E1014 / R1014C5: got '#N/A'Expecting numeric in G1014 / R1014C7: got '#N/A'Expecting numeric in B1015 / R1015C2: got '#N/A'Expecting numeric in E1015 / R1015C5: got '#N/A'Expecting numeric in G1015 / R1015C7: got '#N/A'Expecting numeric in B1016 / R1016C2: got '#N/A'Expecting numeric in E1016 / R1016C5: got '#N/A'Expecting numeric in G1016 / R1016C7: got '#N/A'Expecting numeric in B1017 / R1017C2: got '#N/A'Expecting numeric in E1017 / R1017C5: got '#N/A'Expecting numeric in G1017 / R1017C7: got '#N/A'Expecting numeric in B1018 / R1018C2: got '#N/A'Expecting numeric in E1018 / R1018C5: got '#N/A'Expecting numeric in G1018 / R1018C7: got '#N/A'Expecting numeric in B1019 / R1019C2: got '#N/A'Expecting numeric in E1019 / R1019C5: got '#N/A'Expecting numeric in G1019 / R1019C7: got '#N/A'Expecting numeric in B1020 / R1020C2: got '#N/A'Expecting numeric in E1020 / R1020C5: got '#N/A'Expecting numeric in G1020 / R1020C7: got '#N/A'Expecting numeric in B1021 / R1021C2: got '#N/A'Expecting numeric in E1021 / R1021C5: got '#N/A'Expecting numeric in G1021 / R1021C7: got '#N/A'Expecting numeric in B1022 / R1022C2: got '#N/A'Expecting numeric in E1022 / R1022C5: got '#N/A'Expecting numeric in G1022 / R1022C7: got '#N/A'Expecting numeric in B1023 / R1023C2: got '#N/A'Expecting numeric in E1023 / R1023C5: got '#N/A'Expecting numeric in G1023 / R1023C7: got '#N/A'Expecting numeric in B1024 / R1024C2: got '#N/A'Expecting numeric in E1024 / R1024C5: got '#N/A'Expecting numeric in G1024 / R1024C7: got '#N/A'Expecting numeric in B1025 / R1025C2: got '#N/A'Expecting numeric in E1025 / R1025C5: got '#N/A'Expecting numeric in G1025 / R1025C7: got '#N/A'Expecting numeric in B1026 / R1026C2: got '#N/A'Expecting numeric in E1026 / R1026C5: got '#N/A'Expecting numeric in G1026 / R1026C7: got '#N/A'Expecting numeric in B1027 / R1027C2: got '#N/A'Expecting numeric in E1027 / R1027C5: got '#N/A'Expecting numeric in G1027 / R1027C7: got '#N/A'Expecting numeric in B1028 / R1028C2: got '#N/A'Expecting numeric in E1028 / R1028C5: got '#N/A'Expecting numeric in G1028 / R1028C7: got '#N/A'Expecting numeric in B1029 / R1029C2: got '#N/A'Expecting numeric in E1029 / R1029C5: got '#N/A'Expecting numeric in G1029 / R1029C7: got '#N/A'Expecting numeric in B1030 / R1030C2: got '#N/A'Expecting numeric in E1030 / R1030C5: got '#N/A'Expecting numeric in G1030 / R1030C7: got '#N/A'Expecting numeric in B1031 / R1031C2: got '#N/A'Expecting numeric in E1031 / R1031C5: got '#N/A'Expecting numeric in G1031 / R1031C7: got '#N/A'Expecting numeric in B1032 / R1032C2: got '#N/A'Expecting numeric in E1032 / R1032C5: got '#N/A'Expecting numeric in G1032 / R1032C7: got '#N/A'Expecting numeric in B1033 / R1033C2: got '#N/A'Expecting numeric in E1033 / R1033C5: got '#N/A'Expecting numeric in G1033 / R1033C7: got '#N/A'Expecting numeric in B1034 / R1034C2: got '#N/A'Expecting numeric in E1034 / R1034C5: got '#N/A'Expecting numeric in G1034 / R1034C7: got '#N/A'Expecting numeric in B1035 / R1035C2: got '#N/A'Expecting numeric in E1035 / R1035C5: got '#N/A'Expecting numeric in G1035 / R1035C7: got '#N/A'Expecting numeric in B1036 / R1036C2: got '#N/A'Expecting numeric in E1036 / R1036C5: got '#N/A'Expecting numeric in G1036 / R1036C7: got '#N/A'Expecting numeric in B1037 / R1037C2: got '#N/A'Expecting numeric in E1037 / R1037C5: got '#N/A'Expecting numeric in G1037 / R1037C7: got '#N/A'Expecting numeric in B1038 / R1038C2: got '#N/A'Expecting numeric in E1038 / R1038C5: got '#N/A'Expecting numeric in G1038 / R1038C7: got '#N/A'Expecting numeric in B1039 / R1039C2: got '#N/A'Expecting numeric in E1039 / R1039C5: got '#N/A'Expecting numeric in G1039 / R1039C7: got '#N/A'Expecting numeric in B1040 / R1040C2: got '#N/A'Expecting numeric in E1040 / R1040C5: got '#N/A'Expecting numeric in G1040 / R1040C7: got '#N/A'Expecting numeric in B1041 / R1041C2: got '#N/A'Expecting numeric in E1041 / R1041C5: got '#N/A'Expecting numeric in G1041 / R1041C7: got '#N/A'Expecting numeric in B1042 / R1042C2: got '#N/A'Expecting numeric in E1042 / R1042C5: got '#N/A'Expecting numeric in G1042 / R1042C7: got '#N/A'Expecting numeric in B1043 / R1043C2: got '#N/A'Expecting numeric in E1043 / R1043C5: got '#N/A'Expecting numeric in G1043 / R1043C7: got '#N/A'Expecting numeric in B1044 / R1044C2: got '#N/A'Expecting numeric in E1044 / R1044C5: got '#N/A'Expecting numeric in G1044 / R1044C7: got '#N/A'Expecting numeric in B1045 / R1045C2: got '#N/A'Expecting numeric in E1045 / R1045C5: got '#N/A'Expecting numeric in G1045 / R1045C7: got '#N/A'Expecting numeric in B1046 / R1046C2: got '#N/A'Expecting numeric in E1046 / R1046C5: got '#N/A'Expecting numeric in G1046 / R1046C7: got '#N/A'Expecting numeric in B1047 / R1047C2: got '#N/A'Expecting numeric in E1047 / R1047C5: got '#N/A'Expecting numeric in G1047 / R1047C7: got '#N/A'Expecting numeric in B1048 / R1048C2: got '#N/A'Expecting numeric in E1048 / R1048C5: got '#N/A'Expecting numeric in G1048 / R1048C7: got '#N/A'Expecting numeric in B1049 / R1049C2: got '#N/A'Expecting numeric in E1049 / R1049C5: got '#N/A'Expecting numeric in G1049 / R1049C7: got '#N/A'Expecting numeric in B1050 / R1050C2: got '#N/A'Expecting numeric in E1050 / R1050C5: got '#N/A'Expecting numeric in G1050 / R1050C7: got '#N/A'Expecting numeric in B1051 / R1051C2: got '#N/A'Expecting numeric in E1051 / R1051C5: got '#N/A'Expecting numeric in G1051 / R1051C7: got '#N/A'Expecting numeric in B1052 / R1052C2: got '#N/A'Expecting numeric in E1052 / R1052C5: got '#N/A'Expecting numeric in G1052 / R1052C7: got '#N/A'Expecting numeric in B1053 / R1053C2: got '#N/A'Expecting numeric in E1053 / R1053C5: got '#N/A'Expecting numeric in G1053 / R1053C7: got '#N/A'Expecting numeric in B1054 / R1054C2: got '#N/A'Expecting numeric in E1054 / R1054C5: got '#N/A'Expecting numeric in G1054 / R1054C7: got '#N/A'Expecting numeric in B1055 / R1055C2: got '#N/A'Expecting numeric in E1055 / R1055C5: got '#N/A'Expecting numeric in G1055 / R1055C7: got '#N/A'Expecting numeric in B1056 / R1056C2: got '#N/A'Expecting numeric in E1056 / R1056C5: got '#N/A'Expecting numeric in G1056 / R1056C7: got '#N/A'Expecting numeric in B1057 / R1057C2: got '#N/A'Expecting numeric in E1057 / R1057C5: got '#N/A'Expecting numeric in G1057 / R1057C7: got '#N/A'Expecting numeric in B1058 / R1058C2: got '#N/A'Expecting numeric in E1058 / R1058C5: got '#N/A'Expecting numeric in G1058 / R1058C7: got '#N/A'Expecting numeric in B1059 / R1059C2: got '#N/A'Expecting numeric in E1059 / R1059C5: got '#N/A'Expecting numeric in G1059 / R1059C7: got '#N/A'Expecting numeric in B1060 / R1060C2: got '#N/A'Expecting numeric in E1060 / R1060C5: got '#N/A'Expecting numeric in G1060 / R1060C7: got '#N/A'Expecting numeric in B1061 / R1061C2: got '#N/A'Expecting numeric in E1061 / R1061C5: got '#N/A'Expecting numeric in G1061 / R1061C7: got '#N/A'Expecting numeric in B1062 / R1062C2: got '#N/A'Expecting numeric in E1062 / R1062C5: got '#N/A'Expecting numeric in G1062 / R1062C7: got '#N/A'Expecting numeric in B1063 / R1063C2: got '#N/A'Expecting numeric in E1063 / R1063C5: got '#N/A'Expecting numeric in G1063 / R1063C7: got '#N/A'Expecting numeric in B1064 / R1064C2: got '#N/A'Expecting numeric in E1064 / R1064C5: got '#N/A'Expecting numeric in G1064 / R1064C7: got '#N/A'Expecting numeric in B1065 / R1065C2: got '#N/A'Expecting numeric in E1065 / R1065C5: got '#N/A'Expecting numeric in G1065 / R1065C7: got '#N/A'Expecting numeric in B1066 / R1066C2: got '#N/A'Expecting numeric in E1066 / R1066C5: got '#N/A'Expecting numeric in G1066 / R1066C7: got '#N/A'Expecting numeric in B1067 / R1067C2: got '#N/A'Expecting numeric in E1067 / R1067C5: got '#N/A'Expecting numeric in G1067 / R1067C7: got '#N/A'Expecting numeric in B1068 / R1068C2: got '#N/A'Expecting numeric in E1068 / R1068C5: got '#N/A'Expecting numeric in G1068 / R1068C7: got '#N/A'Expecting numeric in B1069 / R1069C2: got '#N/A'Expecting numeric in E1069 / R1069C5: got '#N/A'Expecting numeric in G1069 / R1069C7: got '#N/A'Expecting numeric in B1070 / R1070C2: got '#N/A'Expecting numeric in E1070 / R1070C5: got '#N/A'Expecting numeric in G1070 / R1070C7: got '#N/A'Expecting numeric in B1071 / R1071C2: got '#N/A'Expecting numeric in E1071 / R1071C5: got '#N/A'Expecting numeric in G1071 / R1071C7: got '#N/A'Expecting numeric in B1072 / R1072C2: got '#N/A'Expecting numeric in E1072 / R1072C5: got '#N/A'Expecting numeric in G1072 / R1072C7: got '#N/A'Expecting numeric in B1073 / R1073C2: got '#N/A'Expecting numeric in E1073 / R1073C5: got '#N/A'Expecting numeric in G1073 / R1073C7: got '#N/A'Expecting numeric in B1074 / R1074C2: got '#N/A'Expecting numeric in E1074 / R1074C5: got '#N/A'Expecting numeric in G1074 / R1074C7: got '#N/A'Expecting numeric in B1075 / R1075C2: got '#N/A'Expecting numeric in E1075 / R1075C5: got '#N/A'Expecting numeric in G1075 / R1075C7: got '#N/A'Expecting numeric in B1076 / R1076C2: got '#N/A'Expecting numeric in E1076 / R1076C5: got '#N/A'Expecting numeric in G1076 / R1076C7: got '#N/A'Expecting numeric in B1077 / R1077C2: got '#N/A'Expecting numeric in E1077 / R1077C5: got '#N/A'Expecting numeric in G1077 / R1077C7: got '#N/A'Expecting numeric in B1078 / R1078C2: got '#N/A'Expecting numeric in E1078 / R1078C5: got '#N/A'Expecting numeric in G1078 / R1078C7: got '#N/A'Expecting numeric in B1079 / R1079C2: got '#N/A'Expecting numeric in E1079 / R1079C5: got '#N/A'Expecting numeric in G1079 / R1079C7: got '#N/A'Expecting numeric in B1080 / R1080C2: got '#N/A'Expecting numeric in E1080 / R1080C5: got '#N/A'Expecting numeric in G1080 / R1080C7: got '#N/A'Expecting numeric in B1081 / R1081C2: got '#N/A'Expecting numeric in E1081 / R1081C5: got '#N/A'Expecting numeric in G1081 / R1081C7: got '#N/A'Expecting numeric in B1082 / R1082C2: got '#N/A'Expecting numeric in E1082 / R1082C5: got '#N/A'Expecting numeric in G1082 / R1082C7: got '#N/A'Expecting numeric in B1083 / R1083C2: got '#N/A'Expecting numeric in E1083 / R1083C5: got '#N/A'Expecting numeric in G1083 / R1083C7: got '#N/A'Expecting numeric in B1084 / R1084C2: got '#N/A'Expecting numeric in E1084 / R1084C5: got '#N/A'Expecting numeric in G1084 / R1084C7: got '#N/A'Expecting numeric in B1085 / R1085C2: got '#N/A'Expecting numeric in E1085 / R1085C5: got '#N/A'Expecting numeric in G1085 / R1085C7: got '#N/A'Expecting numeric in B1086 / R1086C2: got '#N/A'Expecting numeric in E1086 / R1086C5: got '#N/A'Expecting numeric in G1086 / R1086C7: got '#N/A'Expecting numeric in B1087 / R1087C2: got '#N/A'Expecting numeric in E1087 / R1087C5: got '#N/A'Expecting numeric in G1087 / R1087C7: got '#N/A'Expecting numeric in B1088 / R1088C2: got '#N/A'Expecting numeric in E1088 / R1088C5: got '#N/A'Expecting numeric in G1088 / R1088C7: got '#N/A'Expecting numeric in B1089 / R1089C2: got '#N/A'Expecting numeric in E1089 / R1089C5: got '#N/A'Expecting numeric in G1089 / R1089C7: got '#N/A'Expecting numeric in B1090 / R1090C2: got '#N/A'Expecting numeric in E1090 / R1090C5: got '#N/A'Expecting numeric in G1090 / R1090C7: got '#N/A'Expecting numeric in B1091 / R1091C2: got '#N/A'Expecting numeric in E1091 / R1091C5: got '#N/A'Expecting numeric in G1091 / R1091C7: got '#N/A'Expecting numeric in B1092 / R1092C2: got '#N/A'Expecting numeric in E1092 / R1092C5: got '#N/A'Expecting numeric in G1092 / R1092C7: got '#N/A'Expecting numeric in B1093 / R1093C2: got '#N/A'Expecting numeric in E1093 / R1093C5: got '#N/A'Expecting numeric in G1093 / R1093C7: got '#N/A'Expecting numeric in B1094 / R1094C2: got '#N/A'Expecting numeric in E1094 / R1094C5: got '#N/A'Expecting numeric in G1094 / R1094C7: got '#N/A'Expecting numeric in B1095 / R1095C2: got '#N/A'Expecting numeric in E1095 / R1095C5: got '#N/A'Expecting numeric in G1095 / R1095C7: got '#N/A'Expecting numeric in B1096 / R1096C2: got '#N/A'Expecting numeric in E1096 / R1096C5: got '#N/A'Expecting numeric in G1096 / R1096C7: got '#N/A'Expecting numeric in B1097 / R1097C2: got '#N/A'Expecting numeric in E1097 / R1097C5: got '#N/A'Expecting numeric in G1097 / R1097C7: got '#N/A'Expecting numeric in B1098 / R1098C2: got '#N/A'Expecting numeric in E1098 / R1098C5: got '#N/A'Expecting numeric in G1098 / R1098C7: got '#N/A'Expecting numeric in B1099 / R1099C2: got '#N/A'Expecting numeric in E1099 / R1099C5: got '#N/A'Expecting numeric in G1099 / R1099C7: got '#N/A'Expecting numeric in B1100 / R1100C2: got '#N/A'Expecting numeric in E1100 / R1100C5: got '#N/A'Expecting numeric in G1100 / R1100C7: got '#N/A'Expecting numeric in B1101 / R1101C2: got '#N/A'Expecting numeric in E1101 / R1101C5: got '#N/A'Expecting numeric in G1101 / R1101C7: got '#N/A'Expecting numeric in B1102 / R1102C2: got '#N/A'Expecting numeric in E1102 / R1102C5: got '#N/A'Expecting numeric in G1102 / R1102C7: got '#N/A'Expecting numeric in B1103 / R1103C2: got '#N/A'Expecting numeric in E1103 / R1103C5: got '#N/A'Expecting numeric in G1103 / R1103C7: got '#N/A'Expecting numeric in B1104 / R1104C2: got '#N/A'Expecting numeric in E1104 / R1104C5: got '#N/A'Expecting numeric in G1104 / R1104C7: got '#N/A'Expecting numeric in B1105 / R1105C2: got '#N/A'Expecting numeric in E1105 / R1105C5: got '#N/A'Expecting numeric in G1105 / R1105C7: got '#N/A'Expecting numeric in B1106 / R1106C2: got '#N/A'Expecting numeric in E1106 / R1106C5: got '#N/A'Expecting numeric in G1106 / R1106C7: got '#N/A'Expecting numeric in B1107 / R1107C2: got '#N/A'Expecting numeric in E1107 / R1107C5: got '#N/A'Expecting numeric in G1107 / R1107C7: got '#N/A'Expecting numeric in B1108 / R1108C2: got '#N/A'Expecting numeric in E1108 / R1108C5: got '#N/A'Expecting numeric in G1108 / R1108C7: got '#N/A'Expecting numeric in B1109 / R1109C2: got '#N/A'Expecting numeric in E1109 / R1109C5: got '#N/A'Expecting numeric in G1109 / R1109C7: got '#N/A'Expecting numeric in B1110 / R1110C2: got '#N/A'Expecting numeric in E1110 / R1110C5: got '#N/A'Expecting numeric in G1110 / R1110C7: got '#N/A'Expecting numeric in B1111 / R1111C2: got '#N/A'Expecting numeric in E1111 / R1111C5: got '#N/A'Expecting numeric in G1111 / R1111C7: got '#N/A'Expecting numeric in B1112 / R1112C2: got '#N/A'Expecting numeric in E1112 / R1112C5: got '#N/A'Expecting numeric in G1112 / R1112C7: got '#N/A'Expecting numeric in B1113 / R1113C2: got '#N/A'Expecting numeric in E1113 / R1113C5: got '#N/A'Expecting numeric in G1113 / R1113C7: got '#N/A'Expecting numeric in B1114 / R1114C2: got '#N/A'Expecting numeric in E1114 / R1114C5: got '#N/A'Expecting numeric in G1114 / R1114C7: got '#N/A'Expecting numeric in B1115 / R1115C2: got '#N/A'Expecting numeric in E1115 / R1115C5: got '#N/A'Expecting numeric in G1115 / R1115C7: got '#N/A'Expecting numeric in B1116 / R1116C2: got '#N/A'Expecting numeric in E1116 / R1116C5: got '#N/A'Expecting numeric in G1116 / R1116C7: got '#N/A'Expecting numeric in B1117 / R1117C2: got '#N/A'Expecting numeric in E1117 / R1117C5: got '#N/A'Expecting numeric in G1117 / R1117C7: got '#N/A'Expecting numeric in B1118 / R1118C2: got '#N/A'Expecting numeric in E1118 / R1118C5: got '#N/A'Expecting numeric in G1118 / R1118C7: got '#N/A'Expecting numeric in B1119 / R1119C2: got '#N/A'Expecting numeric in E1119 / R1119C5: got '#N/A'Expecting numeric in G1119 / R1119C7: got '#N/A'Expecting numeric in B1120 / R1120C2: got '#N/A'Expecting numeric in E1120 / R1120C5: got '#N/A'Expecting numeric in G1120 / R1120C7: got '#N/A'Expecting numeric in B1121 / R1121C2: got '#N/A'Expecting numeric in E1121 / R1121C5: got '#N/A'Expecting numeric in G1121 / R1121C7: got '#N/A'Expecting numeric in B1122 / R1122C2: got '#N/A'Expecting numeric in E1122 / R1122C5: got '#N/A'Expecting numeric in G1122 / R1122C7: got '#N/A'Expecting numeric in B1123 / R1123C2: got '#N/A'Expecting numeric in E1123 / R1123C5: got '#N/A'Expecting numeric in G1123 / R1123C7: got '#N/A'Expecting numeric in B1124 / R1124C2: got '#N/A'Expecting numeric in E1124 / R1124C5: got '#N/A'Expecting numeric in G1124 / R1124C7: got '#N/A'Expecting numeric in B1125 / R1125C2: got '#N/A'Expecting numeric in E1125 / R1125C5: got '#N/A'Expecting numeric in G1125 / R1125C7: got '#N/A'Expecting numeric in B1126 / R1126C2: got '#N/A'Expecting numeric in E1126 / R1126C5: got '#N/A'Expecting numeric in G1126 / R1126C7: got '#N/A'Expecting numeric in B1127 / R1127C2: got '#N/A'Expecting numeric in E1127 / R1127C5: got '#N/A'Expecting numeric in G1127 / R1127C7: got '#N/A'Expecting numeric in B1128 / R1128C2: got '#N/A'Expecting numeric in E1128 / R1128C5: got '#N/A'Expecting numeric in G1128 / R1128C7: got '#N/A'Expecting numeric in B1129 / R1129C2: got '#N/A'Expecting numeric in E1129 / R1129C5: got '#N/A'Expecting numeric in G1129 / R1129C7: got '#N/A'Expecting numeric in B1130 / R1130C2: got '#N/A'Expecting numeric in E1130 / R1130C5: got '#N/A'Expecting numeric in G1130 / R1130C7: got '#N/A'Expecting numeric in B1131 / R1131C2: got '#N/A'Expecting numeric in E1131 / R1131C5: got '#N/A'Expecting numeric in G1131 / R1131C7: got '#N/A'Expecting numeric in B1132 / R1132C2: got '#N/A'Expecting numeric in E1132 / R1132C5: got '#N/A'Expecting numeric in G1132 / R1132C7: got '#N/A'Expecting numeric in B1133 / R1133C2: got '#N/A'Expecting numeric in E1133 / R1133C5: got '#N/A'Expecting numeric in G1133 / R1133C7: got '#N/A'Expecting numeric in B1134 / R1134C2: got '#N/A'Expecting numeric in E1134 / R1134C5: got '#N/A'Expecting numeric in G1134 / R1134C7: got '#N/A'Expecting numeric in B1135 / R1135C2: got '#N/A'Expecting numeric in E1135 / R1135C5: got '#N/A'Expecting numeric in G1135 / R1135C7: got '#N/A'Expecting numeric in B1136 / R1136C2: got '#N/A'Expecting numeric in E1136 / R1136C5: got '#N/A'Expecting numeric in G1136 / R1136C7: got '#N/A'Expecting numeric in B1137 / R1137C2: got '#N/A'Expecting numeric in E1137 / R1137C5: got '#N/A'Expecting numeric in G1137 / R1137C7: got '#N/A'Expecting numeric in B1138 / R1138C2: got '#N/A'Expecting numeric in E1138 / R1138C5: got '#N/A'Expecting numeric in G1138 / R1138C7: got '#N/A'Expecting numeric in B1139 / R1139C2: got '#N/A'Expecting numeric in E1139 / R1139C5: got '#N/A'Expecting numeric in G1139 / R1139C7: got '#N/A'Expecting numeric in B1140 / R1140C2: got '#N/A'Expecting numeric in E1140 / R1140C5: got '#N/A'Expecting numeric in G1140 / R1140C7: got '#N/A'Expecting numeric in B1141 / R1141C2: got '#N/A'Expecting numeric in E1141 / R1141C5: got '#N/A'Expecting numeric in G1141 / R1141C7: got '#N/A'Expecting numeric in B1142 / R1142C2: got '#N/A'Expecting numeric in E1142 / R1142C5: got '#N/A'Expecting numeric in G1142 / R1142C7: got '#N/A'Expecting numeric in B1143 / R1143C2: got '#N/A'Expecting numeric in E1143 / R1143C5: got '#N/A'Expecting numeric in G1143 / R1143C7: got '#N/A'Expecting numeric in B1144 / R1144C2: got '#N/A'Expecting numeric in E1144 / R1144C5: got '#N/A'Expecting numeric in G1144 / R1144C7: got '#N/A'Expecting numeric in B1145 / R1145C2: got '#N/A'Expecting numeric in E1145 / R1145C5: got '#N/A'Expecting numeric in G1145 / R1145C7: got '#N/A'Expecting numeric in B1146 / R1146C2: got '#N/A'Expecting numeric in E1146 / R1146C5: got '#N/A'Expecting numeric in G1146 / R1146C7: got '#N/A'Expecting numeric in B1147 / R1147C2: got '#N/A'Expecting numeric in E1147 / R1147C5: got '#N/A'Expecting numeric in G1147 / R1147C7: got '#N/A'Expecting numeric in B1148 / R1148C2: got '#N/A'Expecting numeric in E1148 / R1148C5: got '#N/A'Expecting numeric in G1148 / R1148C7: got '#N/A'Expecting numeric in B1149 / R1149C2: got '#N/A'Expecting numeric in E1149 / R1149C5: got '#N/A'Expecting numeric in G1149 / R1149C7: got '#N/A'Expecting numeric in B1150 / R1150C2: got '#N/A'Expecting numeric in E1150 / R1150C5: got '#N/A'Expecting numeric in G1150 / R1150C7: got '#N/A'Expecting numeric in B1151 / R1151C2: got '#N/A'Expecting numeric in E1151 / R1151C5: got '#N/A'Expecting numeric in G1151 / R1151C7: got '#N/A'Expecting numeric in B1152 / R1152C2: got '#N/A'Expecting numeric in E1152 / R1152C5: got '#N/A'Expecting numeric in G1152 / R1152C7: got '#N/A'Expecting numeric in B1153 / R1153C2: got '#N/A'Expecting numeric in E1153 / R1153C5: got '#N/A'Expecting numeric in G1153 / R1153C7: got '#N/A'Expecting numeric in B1154 / R1154C2: got '#N/A'Expecting numeric in E1154 / R1154C5: got '#N/A'Expecting numeric in G1154 / R1154C7: got '#N/A'Expecting numeric in B1155 / R1155C2: got '#N/A'Expecting numeric in E1155 / R1155C5: got '#N/A'Expecting numeric in G1155 / R1155C7: got '#N/A'Expecting numeric in B1156 / R1156C2: got '#N/A'Expecting numeric in E1156 / R1156C5: got '#N/A'Expecting numeric in G1156 / R1156C7: got '#N/A'Expecting numeric in B1157 / R1157C2: got '#N/A'Expecting numeric in E1157 / R1157C5: got '#N/A'Expecting numeric in G1157 / R1157C7: got '#N/A'Expecting numeric in B1158 / R1158C2: got '#N/A'Expecting numeric in E1158 / R1158C5: got '#N/A'Expecting numeric in G1158 / R1158C7: got '#N/A'Expecting numeric in B1159 / R1159C2: got '#N/A'Expecting numeric in E1159 / R1159C5: got '#N/A'Expecting numeric in G1159 / R1159C7: got '#N/A'Expecting numeric in B1160 / R1160C2: got '#N/A'Expecting numeric in E1160 / R1160C5: got '#N/A'Expecting numeric in G1160 / R1160C7: got '#N/A'Expecting numeric in B1161 / R1161C2: got '#N/A'Expecting numeric in E1161 / R1161C5: got '#N/A'Expecting numeric in G1161 / R1161C7: got '#N/A'Expecting numeric in B1162 / R1162C2: got '#N/A'Expecting numeric in E1162 / R1162C5: got '#N/A'Expecting numeric in G1162 / R1162C7: got '#N/A'Expecting numeric in B1163 / R1163C2: got '#N/A'Expecting numeric in E1163 / R1163C5: got '#N/A'Expecting numeric in G1163 / R1163C7: got '#N/A'Expecting numeric in B1164 / R1164C2: got '#N/A'Expecting numeric in E1164 / R1164C5: got '#N/A'Expecting numeric in G1164 / R1164C7: got '#N/A'Expecting numeric in B1165 / R1165C2: got '#N/A'Expecting numeric in E1165 / R1165C5: got '#N/A'Expecting numeric in G1165 / R1165C7: got '#N/A'Expecting numeric in B1166 / R1166C2: got '#N/A'Expecting numeric in E1166 / R1166C5: got '#N/A'Expecting numeric in G1166 / R1166C7: got '#N/A'Expecting numeric in B1167 / R1167C2: got '#N/A'Expecting numeric in E1167 / R1167C5: got '#N/A'Expecting numeric in G1167 / R1167C7: got '#N/A'Expecting numeric in B1168 / R1168C2: got '#N/A'Expecting numeric in E1168 / R1168C5: got '#N/A'Expecting numeric in G1168 / R1168C7: got '#N/A'Expecting numeric in B1169 / R1169C2: got '#N/A'Expecting numeric in E1169 / R1169C5: got '#N/A'Expecting numeric in G1169 / R1169C7: got '#N/A'Expecting numeric in B1170 / R1170C2: got '#N/A'Expecting numeric in E1170 / R1170C5: got '#N/A'Expecting numeric in G1170 / R1170C7: got '#N/A'Expecting numeric in B1171 / R1171C2: got '#N/A'Expecting numeric in E1171 / R1171C5: got '#N/A'Expecting numeric in G1171 / R1171C7: got '#N/A'Expecting numeric in B1172 / R1172C2: got '#N/A'Expecting numeric in E1172 / R1172C5: got '#N/A'Expecting numeric in G1172 / R1172C7: got '#N/A'Expecting numeric in B1173 / R1173C2: got '#N/A'Expecting numeric in E1173 / R1173C5: got '#N/A'Expecting numeric in G1173 / R1173C7: got '#N/A'Expecting numeric in B1174 / R1174C2: got '#N/A'Expecting numeric in E1174 / R1174C5: got '#N/A'Expecting numeric in G1174 / R1174C7: got '#N/A'Expecting numeric in B1175 / R1175C2: got '#N/A'Expecting numeric in E1175 / R1175C5: got '#N/A'Expecting numeric in G1175 / R1175C7: got '#N/A'Expecting numeric in B1176 / R1176C2: got '#N/A'Expecting numeric in E1176 / R1176C5: got '#N/A'Expecting numeric in G1176 / R1176C7: got '#N/A'Expecting numeric in B1177 / R1177C2: got '#N/A'Expecting numeric in E1177 / R1177C5: got '#N/A'Expecting numeric in G1177 / R1177C7: got '#N/A'Expecting numeric in B1178 / R1178C2: got '#N/A'Expecting numeric in E1178 / R1178C5: got '#N/A'Expecting numeric in G1178 / R1178C7: got '#N/A'Expecting numeric in B1179 / R1179C2: got '#N/A'Expecting numeric in E1179 / R1179C5: got '#N/A'Expecting numeric in G1179 / R1179C7: got '#N/A'Expecting numeric in B1180 / R1180C2: got '#N/A'Expecting numeric in E1180 / R1180C5: got '#N/A'Expecting numeric in G1180 / R1180C7: got '#N/A'Expecting numeric in B1181 / R1181C2: got '#N/A'Expecting numeric in E1181 / R1181C5: got '#N/A'Expecting numeric in G1181 / R1181C7: got '#N/A'Expecting numeric in B1182 / R1182C2: got '#N/A'Expecting numeric in E1182 / R1182C5: got '#N/A'Expecting numeric in G1182 / R1182C7: got '#N/A'Expecting numeric in B1183 / R1183C2: got '#N/A'Expecting numeric in E1183 / R1183C5: got '#N/A'Expecting numeric in G1183 / R1183C7: got '#N/A'Expecting numeric in B1184 / R1184C2: got '#N/A'Expecting numeric in E1184 / R1184C5: got '#N/A'Expecting numeric in G1184 / R1184C7: got '#N/A'Expecting numeric in B1185 / R1185C2: got '#N/A'Expecting numeric in E1185 / R1185C5: got '#N/A'Expecting numeric in G1185 / R1185C7: got '#N/A'Expecting numeric in B1186 / R1186C2: got '#N/A'Expecting numeric in E1186 / R1186C5: got '#N/A'Expecting numeric in G1186 / R1186C7: got '#N/A'Expecting numeric in B1187 / R1187C2: got '#N/A'Expecting numeric in E1187 / R1187C5: got '#N/A'Expecting numeric in G1187 / R1187C7: got '#N/A'Expecting numeric in B1188 / R1188C2: got '#N/A'Expecting numeric in E1188 / R1188C5: got '#N/A'Expecting numeric in G1188 / R1188C7: got '#N/A'Expecting numeric in B1189 / R1189C2: got '#N/A'Expecting numeric in E1189 / R1189C5: got '#N/A'Expecting numeric in G1189 / R1189C7: got '#N/A'Expecting numeric in B1190 / R1190C2: got '#N/A'Expecting numeric in E1190 / R1190C5: got '#N/A'Expecting numeric in G1190 / R1190C7: got '#N/A'Expecting numeric in B1191 / R1191C2: got '#N/A'Expecting numeric in E1191 / R1191C5: got '#N/A'Expecting numeric in G1191 / R1191C7: got '#N/A'Expecting numeric in B1192 / R1192C2: got '#N/A'Expecting numeric in E1192 / R1192C5: got '#N/A'Expecting numeric in G1192 / R1192C7: got '#N/A'Expecting numeric in B1193 / R1193C2: got '#N/A'Expecting numeric in E1193 / R1193C5: got '#N/A'Expecting numeric in G1193 / R1193C7: got '#N/A'Expecting numeric in B1194 / R1194C2: got '#N/A'Expecting numeric in E1194 / R1194C5: got '#N/A'Expecting numeric in G1194 / R1194C7: got '#N/A'Expecting numeric in B1195 / R1195C2: got '#N/A'Expecting numeric in E1195 / R1195C5: got '#N/A'Expecting numeric in G1195 / R1195C7: got '#N/A'Expecting numeric in B1196 / R1196C2: got '#N/A'Expecting numeric in E1196 / R1196C5: got '#N/A'Expecting numeric in G1196 / R1196C7: got '#N/A'Expecting numeric in B1197 / R1197C2: got '#N/A'Expecting numeric in E1197 / R1197C5: got '#N/A'Expecting numeric in G1197 / R1197C7: got '#N/A'Expecting numeric in B1198 / R1198C2: got '#N/A'Expecting numeric in E1198 / R1198C5: got '#N/A'Expecting numeric in G1198 / R1198C7: got '#N/A'Expecting numeric in B1199 / R1199C2: got '#N/A'Expecting numeric in E1199 / R1199C5: got '#N/A'Expecting numeric in G1199 / R1199C7: got '#N/A'Expecting numeric in B1200 / R1200C2: got '#N/A'Expecting numeric in E1200 / R1200C5: got '#N/A'Expecting numeric in G1200 / R1200C7: got '#N/A'Expecting numeric in B1201 / R1201C2: got '#N/A'Expecting numeric in E1201 / R1201C5: got '#N/A'Expecting numeric in G1201 / R1201C7: got '#N/A'Expecting numeric in B1202 / R1202C2: got '#N/A'Expecting numeric in E1202 / R1202C5: got '#N/A'Expecting numeric in G1202 / R1202C7: got '#N/A'Expecting numeric in B1203 / R1203C2: got '#N/A'Expecting numeric in E1203 / R1203C5: got '#N/A'Expecting numeric in G1203 / R1203C7: got '#N/A'Expecting numeric in B1204 / R1204C2: got '#N/A'Expecting numeric in E1204 / R1204C5: got '#N/A'Expecting numeric in G1204 / R1204C7: got '#N/A'Expecting numeric in B1205 / R1205C2: got '#N/A'Expecting numeric in E1205 / R1205C5: got '#N/A'Expecting numeric in G1205 / R1205C7: got '#N/A'Expecting numeric in B1206 / R1206C2: got '#N/A'Expecting numeric in E1206 / R1206C5: got '#N/A'Expecting numeric in G1206 / R1206C7: got '#N/A'Expecting numeric in B1207 / R1207C2: got '#N/A'Expecting numeric in E1207 / R1207C5: got '#N/A'Expecting numeric in G1207 / R1207C7: got '#N/A'Expecting numeric in B1208 / R1208C2: got '#N/A'Expecting numeric in E1208 / R1208C5: got '#N/A'Expecting numeric in G1208 / R1208C7: got '#N/A'Expecting numeric in B1209 / R1209C2: got '#N/A'Expecting numeric in E1209 / R1209C5: got '#N/A'Expecting numeric in G1209 / R1209C7: got '#N/A'Expecting numeric in B1210 / R1210C2: got '#N/A'Expecting numeric in E1210 / R1210C5: got '#N/A'Expecting numeric in G1210 / R1210C7: got '#N/A'Expecting numeric in B1211 / R1211C2: got '#N/A'Expecting numeric in E1211 / R1211C5: got '#N/A'Expecting numeric in G1211 / R1211C7: got '#N/A'Expecting numeric in B1212 / R1212C2: got '#N/A'Expecting numeric in E1212 / R1212C5: got '#N/A'Expecting numeric in G1212 / R1212C7: got '#N/A'Expecting numeric in B1213 / R1213C2: got '#N/A'Expecting numeric in E1213 / R1213C5: got '#N/A'Expecting numeric in G1213 / R1213C7: got '#N/A'Expecting numeric in B1214 / R1214C2: got '#N/A'Expecting numeric in E1214 / R1214C5: got '#N/A'Expecting numeric in G1214 / R1214C7: got '#N/A'Expecting numeric in B1215 / R1215C2: got '#N/A'Expecting numeric in E1215 / R1215C5: got '#N/A'Expecting numeric in G1215 / R1215C7: got '#N/A'Expecting numeric in B1216 / R1216C2: got '#N/A'Expecting numeric in E1216 / R1216C5: got '#N/A'Expecting numeric in G1216 / R1216C7: got '#N/A'Expecting numeric in B1217 / R1217C2: got '#N/A'Expecting numeric in E1217 / R1217C5: got '#N/A'Expecting numeric in G1217 / R1217C7: got '#N/A'Expecting numeric in B1218 / R1218C2: got '#N/A'Expecting numeric in E1218 / R1218C5: got '#N/A'Expecting numeric in G1218 / R1218C7: got '#N/A'Expecting numeric in B1219 / R1219C2: got '#N/A'Expecting numeric in E1219 / R1219C5: got '#N/A'Expecting numeric in G1219 / R1219C7: got '#N/A'Expecting numeric in B1220 / R1220C2: got '#N/A'Expecting numeric in E1220 / R1220C5: got '#N/A'Expecting numeric in G1220 / R1220C7: got '#N/A'Expecting numeric in B1221 / R1221C2: got '#N/A'Expecting numeric in E1221 / R1221C5: got '#N/A'Expecting numeric in G1221 / R1221C7: got '#N/A'Expecting numeric in B1222 / R1222C2: got '#N/A'Expecting numeric in E1222 / R1222C5: got '#N/A'Expecting numeric in G1222 / R1222C7: got '#N/A'Expecting numeric in B1223 / R1223C2: got '#N/A'Expecting numeric in E1223 / R1223C5: got '#N/A'Expecting numeric in G1223 / R1223C7: got '#N/A'Expecting numeric in B1224 / R1224C2: got '#N/A'Expecting numeric in E1224 / R1224C5: got '#N/A'Expecting numeric in G1224 / R1224C7: got '#N/A'Expecting numeric in B1225 / R1225C2: got '#N/A'Expecting numeric in E1225 / R1225C5: got '#N/A'Expecting numeric in G1225 / R1225C7: got '#N/A'Expecting numeric in B1226 / R1226C2: got '#N/A'Expecting numeric in E1226 / R1226C5: got '#N/A'Expecting numeric in G1226 / R1226C7: got '#N/A'Expecting numeric in B1227 / R1227C2: got '#N/A'Expecting numeric in E1227 / R1227C5: got '#N/A'Expecting numeric in G1227 / R1227C7: got '#N/A'Expecting numeric in B1228 / R1228C2: got '#N/A'Expecting numeric in E1228 / R1228C5: got '#N/A'Expecting numeric in G1228 / R1228C7: got '#N/A'Expecting numeric in B1229 / R1229C2: got '#N/A'Expecting numeric in E1229 / R1229C5: got '#N/A'Expecting numeric in G1229 / R1229C7: got '#N/A'Expecting numeric in B1230 / R1230C2: got '#N/A'Expecting numeric in E1230 / R1230C5: got '#N/A'Expecting numeric in G1230 / R1230C7: got '#N/A'Expecting numeric in B1231 / R1231C2: got '#N/A'Expecting numeric in E1231 / R1231C5: got '#N/A'Expecting numeric in G1231 / R1231C7: got '#N/A'Expecting numeric in B1232 / R1232C2: got '#N/A'Expecting numeric in E1232 / R1232C5: got '#N/A'Expecting numeric in G1232 / R1232C7: got '#N/A'Expecting numeric in B1233 / R1233C2: got '#N/A'Expecting numeric in E1233 / R1233C5: got '#N/A'Expecting numeric in G1233 / R1233C7: got '#N/A'Expecting numeric in B1234 / R1234C2: got '#N/A'Expecting numeric in E1234 / R1234C5: got '#N/A'Expecting numeric in G1234 / R1234C7: got '#N/A'Expecting numeric in B1235 / R1235C2: got '#N/A'Expecting numeric in E1235 / R1235C5: got '#N/A'Expecting numeric in G1235 / R1235C7: got '#N/A'Expecting numeric in B1236 / R1236C2: got '#N/A'Expecting numeric in E1236 / R1236C5: got '#N/A'Expecting numeric in G1236 / R1236C7: got '#N/A'Expecting numeric in B1237 / R1237C2: got '#N/A'Expecting numeric in E1237 / R1237C5: got '#N/A'Expecting numeric in G1237 / R1237C7: got '#N/A'Expecting numeric in B1238 / R1238C2: got '#N/A'Expecting numeric in E1238 / R1238C5: got '#N/A'Expecting numeric in G1238 / R1238C7: got '#N/A'Expecting numeric in B1239 / R1239C2: got '#N/A'Expecting numeric in E1239 / R1239C5: got '#N/A'Expecting numeric in G1239 / R1239C7: got '#N/A'Expecting numeric in B1240 / R1240C2: got '#N/A'Expecting numeric in E1240 / R1240C5: got '#N/A'Expecting numeric in G1240 / R1240C7: got '#N/A'Expecting numeric in B1241 / R1241C2: got '#N/A'Expecting numeric in E1241 / R1241C5: got '#N/A'Expecting numeric in G1241 / R1241C7: got '#N/A'Expecting numeric in B1242 / R1242C2: got '#N/A'Expecting numeric in E1242 / R1242C5: got '#N/A'Expecting numeric in G1242 / R1242C7: got '#N/A'Expecting numeric in B1243 / R1243C2: got '#N/A'Expecting numeric in E1243 / R1243C5: got '#N/A'Expecting numeric in G1243 / R1243C7: got '#N/A'Expecting numeric in B1244 / R1244C2: got '#N/A'Expecting numeric in E1244 / R1244C5: got '#N/A'Expecting numeric in G1244 / R1244C7: got '#N/A'Expecting numeric in B1245 / R1245C2: got '#N/A'Expecting numeric in E1245 / R1245C5: got '#N/A'Expecting numeric in G1245 / R1245C7: got '#N/A'Expecting numeric in B1246 / R1246C2: got '#N/A'Expecting numeric in E1246 / R1246C5: got '#N/A'Expecting numeric in G1246 / R1246C7: got '#N/A'Expecting numeric in B1247 / R1247C2: got '#N/A'Expecting numeric in E1247 / R1247C5: got '#N/A'Expecting numeric in G1247 / R1247C7: got '#N/A'Expecting numeric in B1248 / R1248C2: got '#N/A'Expecting numeric in E1248 / R1248C5: got '#N/A'Expecting numeric in G1248 / R1248C7: got '#N/A'Expecting numeric in B1249 / R1249C2: got '#N/A'Expecting numeric in E1249 / R1249C5: got '#N/A'Expecting numeric in G1249 / R1249C7: got '#N/A'Expecting numeric in B1250 / R1250C2: got '#N/A'Expecting numeric in E1250 / R1250C5: got '#N/A'Expecting numeric in G1250 / R1250C7: got '#N/A'Expecting numeric in B1251 / R1251C2: got '#N/A'Expecting numeric in E1251 / R1251C5: got '#N/A'Expecting numeric in G1251 / R1251C7: got '#N/A'Expecting numeric in B1252 / R1252C2: got '#N/A'Expecting numeric in E1252 / R1252C5: got '#N/A'Expecting numeric in G1252 / R1252C7: got '#N/A'Expecting numeric in B1253 / R1253C2: got '#N/A'Expecting numeric in E1253 / R1253C5: got '#N/A'Expecting numeric in G1253 / R1253C7: got '#N/A'Expecting numeric in B1254 / R1254C2: got '#N/A'Expecting numeric in E1254 / R1254C5: got '#N/A'Expecting numeric in G1254 / R1254C7: got '#N/A'Expecting numeric in B1255 / R1255C2: got '#N/A'Expecting numeric in E1255 / R1255C5: got '#N/A'Expecting numeric in G1255 / R1255C7: got '#N/A'Expecting numeric in B1256 / R1256C2: got '#N/A'Expecting numeric in E1256 / R1256C5: got '#N/A'Expecting numeric in G1256 / R1256C7: got '#N/A'Expecting numeric in B1257 / R1257C2: got '#N/A'Expecting numeric in E1257 / R1257C5: got '#N/A'Expecting numeric in G1257 / R1257C7: got '#N/A'Expecting numeric in B1258 / R1258C2: got '#N/A'Expecting numeric in E1258 / R1258C5: got '#N/A'Expecting numeric in G1258 / R1258C7: got '#N/A'Expecting numeric in B1259 / R1259C2: got '#N/A'Expecting numeric in E1259 / R1259C5: got '#N/A'Expecting numeric in G1259 / R1259C7: got '#N/A'Expecting numeric in B1260 / R1260C2: got '#N/A'Expecting numeric in E1260 / R1260C5: got '#N/A'Expecting numeric in G1260 / R1260C7: got '#N/A'Expecting numeric in B1261 / R1261C2: got '#N/A'Expecting numeric in E1261 / R1261C5: got '#N/A'Expecting numeric in G1261 / R1261C7: got '#N/A'Expecting numeric in B1262 / R1262C2: got '#N/A'Expecting numeric in E1262 / R1262C5: got '#N/A'Expecting numeric in G1262 / R1262C7: got '#N/A'Expecting numeric in B1263 / R1263C2: got '#N/A'Expecting numeric in E1263 / R1263C5: got '#N/A'Expecting numeric in G1263 / R1263C7: got '#N/A'Expecting numeric in B1264 / R1264C2: got '#N/A'Expecting numeric in E1264 / R1264C5: got '#N/A'Expecting numeric in G1264 / R1264C7: got '#N/A'Expecting numeric in B1265 / R1265C2: got '#N/A'Expecting numeric in E1265 / R1265C5: got '#N/A'Expecting numeric in G1265 / R1265C7: got '#N/A'Expecting numeric in B1266 / R1266C2: got '#N/A'Expecting numeric in E1266 / R1266C5: got '#N/A'Expecting numeric in G1266 / R1266C7: got '#N/A'Expecting numeric in B1267 / R1267C2: got '#N/A'Expecting numeric in E1267 / R1267C5: got '#N/A'Expecting numeric in G1267 / R1267C7: got '#N/A'Expecting numeric in B1268 / R1268C2: got '#N/A'Expecting numeric in E1268 / R1268C5: got '#N/A'Expecting numeric in G1268 / R1268C7: got '#N/A'Expecting numeric in B1269 / R1269C2: got '#N/A'Expecting numeric in E1269 / R1269C5: got '#N/A'Expecting numeric in G1269 / R1269C7: got '#N/A'Expecting numeric in B1270 / R1270C2: got '#N/A'Expecting numeric in E1270 / R1270C5: got '#N/A'Expecting numeric in G1270 / R1270C7: got '#N/A'Expecting numeric in B1271 / R1271C2: got '#N/A'Expecting numeric in E1271 / R1271C5: got '#N/A'Expecting numeric in G1271 / R1271C7: got '#N/A'Expecting numeric in B1272 / R1272C2: got '#N/A'Expecting numeric in E1272 / R1272C5: got '#N/A'Expecting numeric in G1272 / R1272C7: got '#N/A'Expecting numeric in B1273 / R1273C2: got '#N/A'Expecting numeric in E1273 / R1273C5: got '#N/A'Expecting numeric in G1273 / R1273C7: got '#N/A'Expecting numeric in B1274 / R1274C2: got '#N/A'Expecting numeric in E1274 / R1274C5: got '#N/A'Expecting numeric in G1274 / R1274C7: got '#N/A'Expecting numeric in B1275 / R1275C2: got '#N/A'Expecting numeric in E1275 / R1275C5: got '#N/A'Expecting numeric in G1275 / R1275C7: got '#N/A'Expecting numeric in B1276 / R1276C2: got '#N/A'Expecting numeric in E1276 / R1276C5: got '#N/A'Expecting numeric in G1276 / R1276C7: got '#N/A'Expecting numeric in B1277 / R1277C2: got '#N/A'Expecting numeric in E1277 / R1277C5: got '#N/A'Expecting numeric in G1277 / R1277C7: got '#N/A'Expecting numeric in B1278 / R1278C2: got '#N/A'Expecting numeric in E1278 / R1278C5: got '#N/A'Expecting numeric in G1278 / R1278C7: got '#N/A'Expecting numeric in B1279 / R1279C2: got '#N/A'Expecting numeric in E1279 / R1279C5: got '#N/A'Expecting numeric in G1279 / R1279C7: got '#N/A'Expecting numeric in B1280 / R1280C2: got '#N/A'Expecting numeric in E1280 / R1280C5: got '#N/A'Expecting numeric in G1280 / R1280C7: got '#N/A'Expecting numeric in B1281 / R1281C2: got '#N/A'Expecting numeric in E1281 / R1281C5: got '#N/A'Expecting numeric in G1281 / R1281C7: got '#N/A'Expecting numeric in B1282 / R1282C2: got '#N/A'Expecting numeric in E1282 / R1282C5: got '#N/A'Expecting numeric in G1282 / R1282C7: got '#N/A'Expecting numeric in B1283 / R1283C2: got '#N/A'Expecting numeric in E1283 / R1283C5: got '#N/A'Expecting numeric in G1283 / R1283C7: got '#N/A'Expecting numeric in B1284 / R1284C2: got '#N/A'Expecting numeric in E1284 / R1284C5: got '#N/A'Expecting numeric in G1284 / R1284C7: got '#N/A'Expecting numeric in B1285 / R1285C2: got '#N/A'Expecting numeric in E1285 / R1285C5: got '#N/A'Expecting numeric in G1285 / R1285C7: got '#N/A'Expecting numeric in B1286 / R1286C2: got '#N/A'Expecting numeric in E1286 / R1286C5: got '#N/A'Expecting numeric in G1286 / R1286C7: got '#N/A'Expecting numeric in B1287 / R1287C2: got '#N/A'Expecting numeric in E1287 / R1287C5: got '#N/A'Expecting numeric in G1287 / R1287C7: got '#N/A'Expecting numeric in B1288 / R1288C2: got '#N/A'Expecting numeric in E1288 / R1288C5: got '#N/A'Expecting numeric in G1288 / R1288C7: got '#N/A'Expecting numeric in B1289 / R1289C2: got '#N/A'Expecting numeric in E1289 / R1289C5: got '#N/A'Expecting numeric in G1289 / R1289C7: got '#N/A'Expecting numeric in B1290 / R1290C2: got '#N/A'Expecting numeric in E1290 / R1290C5: got '#N/A'Expecting numeric in G1290 / R1290C7: got '#N/A'Expecting numeric in B1291 / R1291C2: got '#N/A'Expecting numeric in E1291 / R1291C5: got '#N/A'Expecting numeric in G1291 / R1291C7: got '#N/A'Expecting numeric in B1292 / R1292C2: got '#N/A'Expecting numeric in E1292 / R1292C5: got '#N/A'Expecting numeric in G1292 / R1292C7: got '#N/A'Expecting numeric in B1293 / R1293C2: got '#N/A'Expecting numeric in E1293 / R1293C5: got '#N/A'Expecting numeric in G1293 / R1293C7: got '#N/A'Expecting numeric in B1294 / R1294C2: got '#N/A'Expecting numeric in E1294 / R1294C5: got '#N/A'Expecting numeric in G1294 / R1294C7: got '#N/A'Expecting numeric in B1295 / R1295C2: got '#N/A'Expecting numeric in E1295 / R1295C5: got '#N/A'Expecting numeric in G1295 / R1295C7: got '#N/A'Expecting numeric in B1296 / R1296C2: got '#N/A'Expecting numeric in E1296 / R1296C5: got '#N/A'Expecting numeric in G1296 / R1296C7: got '#N/A'Expecting numeric in B1297 / R1297C2: got '#N/A'Expecting numeric in E1297 / R1297C5: got '#N/A'Expecting numeric in G1297 / R1297C7: got '#N/A'Expecting numeric in B1298 / R1298C2: got '#N/A'Expecting numeric in E1298 / R1298C5: got '#N/A'Expecting numeric in G1298 / R1298C7: got '#N/A'Expecting numeric in B1299 / R1299C2: got '#N/A'Expecting numeric in E1299 / R1299C5: got '#N/A'Expecting numeric in G1299 / R1299C7: got '#N/A'Expecting numeric in B1300 / R1300C2: got '#N/A'Expecting numeric in E1300 / R1300C5: got '#N/A'Expecting numeric in G1300 / R1300C7: got '#N/A'Expecting numeric in B1301 / R1301C2: got '#N/A'Expecting numeric in E1301 / R1301C5: got '#N/A'Expecting numeric in G1301 / R1301C7: got '#N/A'Expecting numeric in B1302 / R1302C2: got '#N/A'Expecting numeric in E1302 / R1302C5: got '#N/A'Expecting numeric in G1302 / R1302C7: got '#N/A'Expecting numeric in B1303 / R1303C2: got '#N/A'Expecting numeric in E1303 / R1303C5: got '#N/A'Expecting numeric in G1303 / R1303C7: got '#N/A'Expecting numeric in B1304 / R1304C2: got '#N/A'Expecting numeric in E1304 / R1304C5: got '#N/A'Expecting numeric in G1304 / R1304C7: got '#N/A'Expecting numeric in B1305 / R1305C2: got '#N/A'Expecting numeric in E1305 / R1305C5: got '#N/A'Expecting numeric in G1305 / R1305C7: got '#N/A'Expecting numeric in B1306 / R1306C2: got '#N/A'Expecting numeric in E1306 / R1306C5: got '#N/A'Expecting numeric in G1306 / R1306C7: got '#N/A'Expecting numeric in B1307 / R1307C2: got '#N/A'Expecting numeric in E1307 / R1307C5: got '#N/A'Expecting numeric in G1307 / R1307C7: got '#N/A'Expecting numeric in B1308 / R1308C2: got '#N/A'Expecting numeric in E1308 / R1308C5: got '#N/A'Expecting numeric in G1308 / R1308C7: got '#N/A'Expecting numeric in B1309 / R1309C2: got '#N/A'Expecting numeric in E1309 / R1309C5: got '#N/A'Expecting numeric in G1309 / R1309C7: got '#N/A'Expecting numeric in B1310 / R1310C2: got '#N/A'Expecting numeric in E1310 / R1310C5: got '#N/A'Expecting numeric in G1310 / R1310C7: got '#N/A'Expecting numeric in B1311 / R1311C2: got '#N/A'Expecting numeric in E1311 / R1311C5: got '#N/A'Expecting numeric in G1311 / R1311C7: got '#N/A'Expecting numeric in B1312 / R1312C2: got '#N/A'Expecting numeric in E1312 / R1312C5: got '#N/A'Expecting numeric in G1312 / R1312C7: got '#N/A'Expecting numeric in B1313 / R1313C2: got '#N/A'Expecting numeric in E1313 / R1313C5: got '#N/A'Expecting numeric in G1313 / R1313C7: got '#N/A'Expecting numeric in B1314 / R1314C2: got '#N/A'Expecting numeric in E1314 / R1314C5: got '#N/A'Expecting numeric in G1314 / R1314C7: got '#N/A'Expecting numeric in B1315 / R1315C2: got '#N/A'Expecting numeric in E1315 / R1315C5: got '#N/A'Expecting numeric in G1315 / R1315C7: got '#N/A'Expecting numeric in B1316 / R1316C2: got '#N/A'Expecting numeric in E1316 / R1316C5: got '#N/A'Expecting numeric in G1316 / R1316C7: got '#N/A'Expecting numeric in B1317 / R1317C2: got '#N/A'Expecting numeric in E1317 / R1317C5: got '#N/A'Expecting numeric in G1317 / R1317C7: got '#N/A'Expecting numeric in B1318 / R1318C2: got '#N/A'Expecting numeric in E1318 / R1318C5: got '#N/A'Expecting numeric in G1318 / R1318C7: got '#N/A'Expecting numeric in B1319 / R1319C2: got '#N/A'Expecting numeric in E1319 / R1319C5: got '#N/A'Expecting numeric in G1319 / R1319C7: got '#N/A'Expecting numeric in B1320 / R1320C2: got '#N/A'Expecting numeric in E1320 / R1320C5: got '#N/A'Expecting numeric in G1320 / R1320C7: got '#N/A'Expecting numeric in B1321 / R1321C2: got '#N/A'Expecting numeric in E1321 / R1321C5: got '#N/A'Expecting numeric in G1321 / R1321C7: got '#N/A'Expecting numeric in B1322 / R1322C2: got '#N/A'Expecting numeric in E1322 / R1322C5: got '#N/A'Expecting numeric in G1322 / R1322C7: got '#N/A'Expecting numeric in B1323 / R1323C2: got '#N/A'Expecting numeric in E1323 / R1323C5: got '#N/A'Expecting numeric in G1323 / R1323C7: got '#N/A'Expecting numeric in B1324 / R1324C2: got '#N/A'Expecting numeric in E1324 / R1324C5: got '#N/A'Expecting numeric in G1324 / R1324C7: got '#N/A'Expecting numeric in B1325 / R1325C2: got '#N/A'Expecting numeric in E1325 / R1325C5: got '#N/A'Expecting numeric in G1325 / R1325C7: got '#N/A'Expecting numeric in B1326 / R1326C2: got '#N/A'Expecting numeric in E1326 / R1326C5: got '#N/A'Expecting numeric in G1326 / R1326C7: got '#N/A'Expecting numeric in B1327 / R1327C2: got '#N/A'Expecting numeric in E1327 / R1327C5: got '#N/A'Expecting numeric in G1327 / R1327C7: got '#N/A'Expecting numeric in B1328 / R1328C2: got '#N/A'Expecting numeric in E1328 / R1328C5: got '#N/A'Expecting numeric in G1328 / R1328C7: got '#N/A'Expecting numeric in B1329 / R1329C2: got '#N/A'Expecting numeric in E1329 / R1329C5: got '#N/A'Expecting numeric in G1329 / R1329C7: got '#N/A'Expecting numeric in B1330 / R1330C2: got '#N/A'Expecting numeric in E1330 / R1330C5: got '#N/A'Expecting numeric in G1330 / R1330C7: got '#N/A'Expecting numeric in B1331 / R1331C2: got '#N/A'Expecting numeric in E1331 / R1331C5: got '#N/A'Expecting numeric in G1331 / R1331C7: got '#N/A'Expecting numeric in B1332 / R1332C2: got '#N/A'Expecting numeric in E1332 / R1332C5: got '#N/A'Expecting numeric in G1332 / R1332C7: got '#N/A'Expecting numeric in B1333 / R1333C2: got '#N/A'Expecting numeric in E1333 / R1333C5: got '#N/A'Expecting numeric in G1333 / R1333C7: got '#N/A'Expecting numeric in B1334 / R1334C2: got '#N/A'Expecting numeric in E1334 / R1334C5: got '#N/A'Expecting numeric in G1334 / R1334C7: got '#N/A'Expecting numeric in B1335 / R1335C2: got '#N/A'Expecting numeric in E1335 / R1335C5: got '#N/A'Expecting numeric in G1335 / R1335C7: got '#N/A'Expecting numeric in B1336 / R1336C2: got '#N/A'Expecting numeric in E1336 / R1336C5: got '#N/A'Expecting numeric in G1336 / R1336C7: got '#N/A'Expecting numeric in B1337 / R1337C2: got '#N/A'Expecting numeric in E1337 / R1337C5: got '#N/A'Expecting numeric in G1337 / R1337C7: got '#N/A'Expecting numeric in B1338 / R1338C2: got '#N/A'Expecting numeric in E1338 / R1338C5: got '#N/A'Expecting numeric in G1338 / R1338C7: got '#N/A'Expecting numeric in B1339 / R1339C2: got '#N/A'Expecting numeric in E1339 / R1339C5: got '#N/A'Expecting numeric in G1339 / R1339C7: got '#N/A'Expecting numeric in B1340 / R1340C2: got '#N/A'Expecting numeric in E1340 / R1340C5: got '#N/A'Expecting numeric in G1340 / R1340C7: got '#N/A'Expecting numeric in B1341 / R1341C2: got '#N/A'Expecting numeric in E1341 / R1341C5: got '#N/A'Expecting numeric in G1341 / R1341C7: got '#N/A'Expecting numeric in B1342 / R1342C2: got '#N/A'Expecting numeric in E1342 / R1342C5: got '#N/A'Expecting numeric in G1342 / R1342C7: got '#N/A'Expecting numeric in B1343 / R1343C2: got '#N/A'Expecting numeric in E1343 / R1343C5: got '#N/A'Expecting numeric in G1343 / R1343C7: got '#N/A'Expecting numeric in B1344 / R1344C2: got '#N/A'Expecting numeric in E1344 / R1344C5: got '#N/A'Expecting numeric in G1344 / R1344C7: got '#N/A'Expecting numeric in B1345 / R1345C2: got '#N/A'Expecting numeric in E1345 / R1345C5: got '#N/A'Expecting numeric in G1345 / R1345C7: got '#N/A'Expecting numeric in B1346 / R1346C2: got '#N/A'Expecting numeric in E1346 / R1346C5: got '#N/A'Expecting numeric in G1346 / R1346C7: got '#N/A'Expecting numeric in B1347 / R1347C2: got '#N/A'Expecting numeric in E1347 / R1347C5: got '#N/A'Expecting numeric in G1347 / R1347C7: got '#N/A'Expecting numeric in B1348 / R1348C2: got '#N/A'Expecting numeric in E1348 / R1348C5: got '#N/A'Expecting numeric in G1348 / R1348C7: got '#N/A'Expecting numeric in B1349 / R1349C2: got '#N/A'Expecting numeric in E1349 / R1349C5: got '#N/A'Expecting numeric in G1349 / R1349C7: got '#N/A'Expecting numeric in B1350 / R1350C2: got '#N/A'Expecting numeric in E1350 / R1350C5: got '#N/A'Expecting numeric in G1350 / R1350C7: got '#N/A'Expecting numeric in B1351 / R1351C2: got '#N/A'Expecting numeric in E1351 / R1351C5: got '#N/A'Expecting numeric in G1351 / R1351C7: got '#N/A'Expecting numeric in B1352 / R1352C2: got '#N/A'Expecting numeric in E1352 / R1352C5: got '#N/A'Expecting numeric in G1352 / R1352C7: got '#N/A'Expecting numeric in B1353 / R1353C2: got '#N/A'Expecting numeric in E1353 / R1353C5: got '#N/A'Expecting numeric in G1353 / R1353C7: got '#N/A'Expecting numeric in B1354 / R1354C2: got '#N/A'Expecting numeric in E1354 / R1354C5: got '#N/A'Expecting numeric in G1354 / R1354C7: got '#N/A'Expecting numeric in B1355 / R1355C2: got '#N/A'Expecting numeric in E1355 / R1355C5: got '#N/A'Expecting numeric in G1355 / R1355C7: got '#N/A'Expecting numeric in B1356 / R1356C2: got '#N/A'Expecting numeric in E1356 / R1356C5: got '#N/A'Expecting numeric in G1356 / R1356C7: got '#N/A'Expecting numeric in B1357 / R1357C2: got '#N/A'Expecting numeric in E1357 / R1357C5: got '#N/A'Expecting numeric in G1357 / R1357C7: got '#N/A'Expecting numeric in B1358 / R1358C2: got '#N/A'Expecting numeric in E1358 / R1358C5: got '#N/A'Expecting numeric in G1358 / R1358C7: got '#N/A'Expecting numeric in B1359 / R1359C2: got '#N/A'Expecting numeric in E1359 / R1359C5: got '#N/A'Expecting numeric in G1359 / R1359C7: got '#N/A'Expecting numeric in B1360 / R1360C2: got '#N/A'Expecting numeric in E1360 / R1360C5: got '#N/A'Expecting numeric in G1360 / R1360C7: got '#N/A'Expecting numeric in B1361 / R1361C2: got '#N/A'Expecting numeric in E1361 / R1361C5: got '#N/A'Expecting numeric in G1361 / R1361C7: got '#N/A'Expecting numeric in B1362 / R1362C2: got '#N/A'Expecting numeric in E1362 / R1362C5: got '#N/A'Expecting numeric in G1362 / R1362C7: got '#N/A'Expecting numeric in B1363 / R1363C2: got '#N/A'Expecting numeric in E1363 / R1363C5: got '#N/A'Expecting numeric in G1363 / R1363C7: got '#N/A'Expecting numeric in B1364 / R1364C2: got '#N/A'Expecting numeric in E1364 / R1364C5: got '#N/A'Expecting numeric in G1364 / R1364C7: got '#N/A'Expecting numeric in B1365 / R1365C2: got '#N/A'Expecting numeric in E1365 / R1365C5: got '#N/A'Expecting numeric in G1365 / R1365C7: got '#N/A'Expecting numeric in B1366 / R1366C2: got '#N/A'Expecting numeric in E1366 / R1366C5: got '#N/A'Expecting numeric in G1366 / R1366C7: got '#N/A'Expecting numeric in B1367 / R1367C2: got '#N/A'Expecting numeric in E1367 / R1367C5: got '#N/A'Expecting numeric in G1367 / R1367C7: got '#N/A'Expecting numeric in B1368 / R1368C2: got '#N/A'Expecting numeric in E1368 / R1368C5: got '#N/A'Expecting numeric in G1368 / R1368C7: got '#N/A'Expecting numeric in B1369 / R1369C2: got '#N/A'Expecting numeric in E1369 / R1369C5: got '#N/A'Expecting numeric in G1369 / R1369C7: got '#N/A'Expecting numeric in B1370 / R1370C2: got '#N/A'Expecting numeric in E1370 / R1370C5: got '#N/A'Expecting numeric in G1370 / R1370C7: got '#N/A'Expecting numeric in B1371 / R1371C2: got '#N/A'Expecting numeric in E1371 / R1371C5: got '#N/A'Expecting numeric in G1371 / R1371C7: got '#N/A'Expecting numeric in B1372 / R1372C2: got '#N/A'Expecting numeric in E1372 / R1372C5: got '#N/A'Expecting numeric in G1372 / R1372C7: got '#N/A'Expecting numeric in B1373 / R1373C2: got '#N/A'Expecting numeric in E1373 / R1373C5: got '#N/A'Expecting numeric in G1373 / R1373C7: got '#N/A'Expecting numeric in B1374 / R1374C2: got '#N/A'Expecting numeric in E1374 / R1374C5: got '#N/A'Expecting numeric in G1374 / R1374C7: got '#N/A'Expecting numeric in B1375 / R1375C2: got '#N/A'Expecting numeric in E1375 / R1375C5: got '#N/A'Expecting numeric in G1375 / R1375C7: got '#N/A'Expecting numeric in B1376 / R1376C2: got '#N/A'Expecting numeric in E1376 / R1376C5: got '#N/A'Expecting numeric in G1376 / R1376C7: got '#N/A'Expecting numeric in B1377 / R1377C2: got '#N/A'Expecting numeric in E1377 / R1377C5: got '#N/A'Expecting numeric in G1377 / R1377C7: got '#N/A'Expecting numeric in B1378 / R1378C2: got '#N/A'Expecting numeric in E1378 / R1378C5: got '#N/A'Expecting numeric in G1378 / R1378C7: got '#N/A'Expecting numeric in B1379 / R1379C2: got '#N/A'Expecting numeric in E1379 / R1379C5: got '#N/A'Expecting numeric in G1379 / R1379C7: got '#N/A'Expecting numeric in B1380 / R1380C2: got '#N/A'Expecting numeric in E1380 / R1380C5: got '#N/A'Expecting numeric in G1380 / R1380C7: got '#N/A'Expecting numeric in B1381 / R1381C2: got '#N/A'Expecting numeric in E1381 / R1381C5: got '#N/A'Expecting numeric in G1381 / R1381C7: got '#N/A'Expecting numeric in B1382 / R1382C2: got '#N/A'Expecting numeric in E1382 / R1382C5: got '#N/A'Expecting numeric in G1382 / R1382C7: got '#N/A'Expecting numeric in B1383 / R1383C2: got '#N/A'Expecting numeric in E1383 / R1383C5: got '#N/A'Expecting numeric in G1383 / R1383C7: got '#N/A'Expecting numeric in B1384 / R1384C2: got '#N/A'Expecting numeric in E1384 / R1384C5: got '#N/A'Expecting numeric in G1384 / R1384C7: got '#N/A'Expecting numeric in B1385 / R1385C2: got '#N/A'Expecting numeric in E1385 / R1385C5: got '#N/A'Expecting numeric in G1385 / R1385C7: got '#N/A'Expecting numeric in B1386 / R1386C2: got '#N/A'Expecting numeric in E1386 / R1386C5: got '#N/A'Expecting numeric in G1386 / R1386C7: got '#N/A'Expecting numeric in B1387 / R1387C2: got '#N/A'Expecting numeric in E1387 / R1387C5: got '#N/A'Expecting numeric in G1387 / R1387C7: got '#N/A'Expecting numeric in B1388 / R1388C2: got '#N/A'Expecting numeric in E1388 / R1388C5: got '#N/A'Expecting numeric in G1388 / R1388C7: got '#N/A'Expecting numeric in B1389 / R1389C2: got '#N/A'Expecting numeric in E1389 / R1389C5: got '#N/A'Expecting numeric in G1389 / R1389C7: got '#N/A'Expecting numeric in B1390 / R1390C2: got '#N/A'Expecting numeric in E1390 / R1390C5: got '#N/A'Expecting numeric in G1390 / R1390C7: got '#N/A'Expecting numeric in B1391 / R1391C2: got '#N/A'Expecting numeric in E1391 / R1391C5: got '#N/A'Expecting numeric in G1391 / R1391C7: got '#N/A'Expecting numeric in B1392 / R1392C2: got '#N/A'Expecting numeric in E1392 / R1392C5: got '#N/A'Expecting numeric in G1392 / R1392C7: got '#N/A'Expecting numeric in B1393 / R1393C2: got '#N/A'Expecting numeric in E1393 / R1393C5: got '#N/A'Expecting numeric in G1393 / R1393C7: got '#N/A'Expecting numeric in B1394 / R1394C2: got '#N/A'Expecting numeric in E1394 / R1394C5: got '#N/A'Expecting numeric in G1394 / R1394C7: got '#N/A'Expecting numeric in B1395 / R1395C2: got '#N/A'Expecting numeric in E1395 / R1395C5: got '#N/A'Expecting numeric in G1395 / R1395C7: got '#N/A'Expecting numeric in B1396 / R1396C2: got '#N/A'Expecting numeric in E1396 / R1396C5: got '#N/A'Expecting numeric in G1396 / R1396C7: got '#N/A'Expecting numeric in B1397 / R1397C2: got '#N/A'Expecting numeric in E1397 / R1397C5: got '#N/A'Expecting numeric in G1397 / R1397C7: got '#N/A'Expecting numeric in B1398 / R1398C2: got '#N/A'Expecting numeric in E1398 / R1398C5: got '#N/A'Expecting numeric in G1398 / R1398C7: got '#N/A'Expecting numeric in B1399 / R1399C2: got '#N/A'Expecting numeric in E1399 / R1399C5: got '#N/A'Expecting numeric in G1399 / R1399C7: got '#N/A'Expecting numeric in B1400 / R1400C2: got '#N/A'Expecting numeric in E1400 / R1400C5: got '#N/A'Expecting numeric in G1400 / R1400C7: got '#N/A'Expecting numeric in B1401 / R1401C2: got '#N/A'Expecting numeric in E1401 / R1401C5: got '#N/A'Expecting numeric in G1401 / R1401C7: got '#N/A'Expecting numeric in B1402 / R1402C2: got '#N/A'Expecting numeric in E1402 / R1402C5: got '#N/A'Expecting numeric in G1402 / R1402C7: got '#N/A'Expecting numeric in B1403 / R1403C2: got '#N/A'Expecting numeric in E1403 / R1403C5: got '#N/A'Expecting numeric in G1403 / R1403C7: got '#N/A'Expecting numeric in B1404 / R1404C2: got '#N/A'Expecting numeric in E1404 / R1404C5: got '#N/A'Expecting numeric in G1404 / R1404C7: got '#N/A'Expecting numeric in B1405 / R1405C2: got '#N/A'Expecting numeric in E1405 / R1405C5: got '#N/A'Expecting numeric in G1405 / R1405C7: got '#N/A'Expecting numeric in B1406 / R1406C2: got '#N/A'Expecting numeric in E1406 / R1406C5: got '#N/A'Expecting numeric in G1406 / R1406C7: got '#N/A'Expecting numeric in B1407 / R1407C2: got '#N/A'Expecting numeric in E1407 / R1407C5: got '#N/A'Expecting numeric in G1407 / R1407C7: got '#N/A'Expecting numeric in B1408 / R1408C2: got '#N/A'Expecting numeric in E1408 / R1408C5: got '#N/A'Expecting numeric in G1408 / R1408C7: got '#N/A'Expecting numeric in B1409 / R1409C2: got '#N/A'Expecting numeric in E1409 / R1409C5: got '#N/A'Expecting numeric in G1409 / R1409C7: got '#N/A'Expecting numeric in B1410 / R1410C2: got '#N/A'Expecting numeric in E1410 / R1410C5: got '#N/A'Expecting numeric in G1410 / R1410C7: got '#N/A'Expecting numeric in B1411 / R1411C2: got '#N/A'Expecting numeric in E1411 / R1411C5: got '#N/A'Expecting numeric in G1411 / R1411C7: got '#N/A'Expecting numeric in B1412 / R1412C2: got '#N/A'Expecting numeric in E1412 / R1412C5: got '#N/A'Expecting numeric in G1412 / R1412C7: got '#N/A'Expecting numeric in B1413 / R1413C2: got '#N/A'Expecting numeric in E1413 / R1413C5: got '#N/A'Expecting numeric in G1413 / R1413C7: got '#N/A'Expecting numeric in B1414 / R1414C2: got '#N/A'Expecting numeric in E1414 / R1414C5: got '#N/A'Expecting numeric in G1414 / R1414C7: got '#N/A'Expecting numeric in B1415 / R1415C2: got '#N/A'Expecting numeric in E1415 / R1415C5: got '#N/A'Expecting numeric in G1415 / R1415C7: got '#N/A'Expecting numeric in B1416 / R1416C2: got '#N/A'Expecting numeric in E1416 / R1416C5: got '#N/A'Expecting numeric in G1416 / R1416C7: got '#N/A'Expecting numeric in B1417 / R1417C2: got '#N/A'Expecting numeric in E1417 / R1417C5: got '#N/A'Expecting numeric in G1417 / R1417C7: got '#N/A'Expecting numeric in B1418 / R1418C2: got '#N/A'Expecting numeric in E1418 / R1418C5: got '#N/A'Expecting numeric in G1418 / R1418C7: got '#N/A'Expecting numeric in B1419 / R1419C2: got '#N/A'Expecting numeric in E1419 / R1419C5: got '#N/A'Expecting numeric in G1419 / R1419C7: got '#N/A'Expecting numeric in B1420 / R1420C2: got '#N/A'Expecting numeric in E1420 / R1420C5: got '#N/A'Expecting numeric in G1420 / R1420C7: got '#N/A'Expecting numeric in B1421 / R1421C2: got '#N/A'Expecting numeric in E1421 / R1421C5: got '#N/A'Expecting numeric in G1421 / R1421C7: got '#N/A'Expecting numeric in B1422 / R1422C2: got '#N/A'Expecting numeric in E1422 / R1422C5: got '#N/A'Expecting numeric in G1422 / R1422C7: got '#N/A'Expecting numeric in B1423 / R1423C2: got '#N/A'Expecting numeric in E1423 / R1423C5: got '#N/A'Expecting numeric in G1423 / R1423C7: got '#N/A'Expecting numeric in B1424 / R1424C2: got '#N/A'Expecting numeric in E1424 / R1424C5: got '#N/A'Expecting numeric in G1424 / R1424C7: got '#N/A'Expecting numeric in B1425 / R1425C2: got '#N/A'Expecting numeric in E1425 / R1425C5: got '#N/A'Expecting numeric in G1425 / R1425C7: got '#N/A'Expecting numeric in B1426 / R1426C2: got '#N/A'Expecting numeric in E1426 / R1426C5: got '#N/A'Expecting numeric in G1426 / R1426C7: got '#N/A'Expecting numeric in B1427 / R1427C2: got '#N/A'Expecting numeric in E1427 / R1427C5: got '#N/A'Expecting numeric in G1427 / R1427C7: got '#N/A'Expecting numeric in B1428 / R1428C2: got '#N/A'Expecting numeric in E1428 / R1428C5: got '#N/A'Expecting numeric in G1428 / R1428C7: got '#N/A'Expecting numeric in B1429 / R1429C2: got '#N/A'Expecting numeric in E1429 / R1429C5: got '#N/A'Expecting numeric in G1429 / R1429C7: got '#N/A'Expecting numeric in B1430 / R1430C2: got '#N/A'Expecting numeric in E1430 / R1430C5: got '#N/A'Expecting numeric in G1430 / R1430C7: got '#N/A'Expecting numeric in B1431 / R1431C2: got '#N/A'Expecting numeric in E1431 / R1431C5: got '#N/A'Expecting numeric in G1431 / R1431C7: got '#N/A'Expecting numeric in B1432 / R1432C2: got '#N/A'Expecting numeric in E1432 / R1432C5: got '#N/A'Expecting numeric in G1432 / R1432C7: got '#N/A'Expecting numeric in B1433 / R1433C2: got '#N/A'Expecting numeric in E1433 / R1433C5: got '#N/A'Expecting numeric in G1433 / R1433C7: got '#N/A'Expecting numeric in B1434 / R1434C2: got '#N/A'Expecting numeric in E1434 / R1434C5: got '#N/A'Expecting numeric in G1434 / R1434C7: got '#N/A'Expecting numeric in B1435 / R1435C2: got '#N/A'Expecting numeric in E1435 / R1435C5: got '#N/A'Expecting numeric in G1435 / R1435C7: got '#N/A'Expecting numeric in B1436 / R1436C2: got '#N/A'Expecting numeric in E1436 / R1436C5: got '#N/A'Expecting numeric in G1436 / R1436C7: got '#N/A'Expecting numeric in B1437 / R1437C2: got '#N/A'Expecting numeric in E1437 / R1437C5: got '#N/A'Expecting numeric in G1437 / R1437C7: got '#N/A'Expecting numeric in B1438 / R1438C2: got '#N/A'Expecting numeric in E1438 / R1438C5: got '#N/A'Expecting numeric in G1438 / R1438C7: got '#N/A'Expecting numeric in B1439 / R1439C2: got '#N/A'Expecting numeric in E1439 / R1439C5: got '#N/A'Expecting numeric in G1439 / R1439C7: got '#N/A'Expecting numeric in B1440 / R1440C2: got '#N/A'Expecting numeric in E1440 / R1440C5: got '#N/A'Expecting numeric in G1440 / R1440C7: got '#N/A'Expecting numeric in B1441 / R1441C2: got '#N/A'Expecting numeric in E1441 / R1441C5: got '#N/A'Expecting numeric in G1441 / R1441C7: got '#N/A'Expecting numeric in B1442 / R1442C2: got '#N/A'Expecting numeric in E1442 / R1442C5: got '#N/A'Expecting numeric in G1442 / R1442C7: got '#N/A'Expecting numeric in B1443 / R1443C2: got '#N/A'Expecting numeric in E1443 / R1443C5: got '#N/A'Expecting numeric in G1443 / R1443C7: got '#N/A'Expecting numeric in B1444 / R1444C2: got '#N/A'Expecting numeric in E1444 / R1444C5: got '#N/A'Expecting numeric in G1444 / R1444C7: got '#N/A'Expecting numeric in B1445 / R1445C2: got '#N/A'Expecting numeric in E1445 / R1445C5: got '#N/A'Expecting numeric in G1445 / R1445C7: got '#N/A'Expecting numeric in B1446 / R1446C2: got '#N/A'Expecting numeric in E1446 / R1446C5: got '#N/A'Expecting numeric in G1446 / R1446C7: got '#N/A'Expecting numeric in B1447 / R1447C2: got '#N/A'Expecting numeric in E1447 / R1447C5: got '#N/A'Expecting numeric in G1447 / R1447C7: got '#N/A'Expecting numeric in B1448 / R1448C2: got '#N/A'Expecting numeric in E1448 / R1448C5: got '#N/A'Expecting numeric in G1448 / R1448C7: got '#N/A'Expecting numeric in B1449 / R1449C2: got '#N/A'Expecting numeric in E1449 / R1449C5: got '#N/A'Expecting numeric in G1449 / R1449C7: got '#N/A'Expecting numeric in B1450 / R1450C2: got '#N/A'Expecting numeric in E1450 / R1450C5: got '#N/A'Expecting numeric in G1450 / R1450C7: got '#N/A'Expecting numeric in B1451 / R1451C2: got '#N/A'Expecting numeric in E1451 / R1451C5: got '#N/A'Expecting numeric in G1451 / R1451C7: got '#N/A'Expecting numeric in B1452 / R1452C2: got '#N/A'Expecting numeric in E1452 / R1452C5: got '#N/A'Expecting numeric in G1452 / R1452C7: got '#N/A'Expecting numeric in B1453 / R1453C2: got '#N/A'Expecting numeric in E1453 / R1453C5: got '#N/A'Expecting numeric in G1453 / R1453C7: got '#N/A'Expecting numeric in B1454 / R1454C2: got '#N/A'Expecting numeric in E1454 / R1454C5: got '#N/A'Expecting numeric in G1454 / R1454C7: got '#N/A'Expecting numeric in B1455 / R1455C2: got '#N/A'Expecting numeric in E1455 / R1455C5: got '#N/A'Expecting numeric in G1455 / R1455C7: got '#N/A'Expecting numeric in B1456 / R1456C2: got '#N/A'Expecting numeric in E1456 / R1456C5: got '#N/A'Expecting numeric in G1456 / R1456C7: got '#N/A'Expecting numeric in B1457 / R1457C2: got '#N/A'Expecting numeric in E1457 / R1457C5: got '#N/A'Expecting numeric in G1457 / R1457C7: got '#N/A'Expecting numeric in B1458 / R1458C2: got '#N/A'Expecting numeric in E1458 / R1458C5: got '#N/A'Expecting numeric in G1458 / R1458C7: got '#N/A'Expecting numeric in B1459 / R1459C2: got '#N/A'Expecting numeric in E1459 / R1459C5: got '#N/A'Expecting numeric in G1459 / R1459C7: got '#N/A'Expecting numeric in B1460 / R1460C2: got '#N/A'Expecting numeric in E1460 / R1460C5: got '#N/A'Expecting numeric in G1460 / R1460C7: got '#N/A'Expecting numeric in B1461 / R1461C2: got '#N/A'Expecting numeric in E1461 / R1461C5: got '#N/A'Expecting numeric in G1461 / R1461C7: got '#N/A'Expecting numeric in B1462 / R1462C2: got '#N/A'Expecting numeric in E1462 / R1462C5: got '#N/A'Expecting numeric in G1462 / R1462C7: got '#N/A'Expecting numeric in B1463 / R1463C2: got '#N/A'Expecting numeric in E1463 / R1463C5: got '#N/A'Expecting numeric in G1463 / R1463C7: got '#N/A'Expecting numeric in B1464 / R1464C2: got '#N/A'Expecting numeric in E1464 / R1464C5: got '#N/A'Expecting numeric in G1464 / R1464C7: got '#N/A'Expecting numeric in B1465 / R1465C2: got '#N/A'Expecting numeric in E1465 / R1465C5: got '#N/A'Expecting numeric in G1465 / R1465C7: got '#N/A'Expecting numeric in B1466 / R1466C2: got '#N/A'Expecting numeric in E1466 / R1466C5: got '#N/A'Expecting numeric in G1466 / R1466C7: got '#N/A'Expecting numeric in B1467 / R1467C2: got '#N/A'Expecting numeric in E1467 / R1467C5: got '#N/A'Expecting numeric in G1467 / R1467C7: got '#N/A'Expecting numeric in B1468 / R1468C2: got '#N/A'Expecting numeric in E1468 / R1468C5: got '#N/A'Expecting numeric in G1468 / R1468C7: got '#N/A'Expecting numeric in B1469 / R1469C2: got '#N/A'Expecting numeric in E1469 / R1469C5: got '#N/A'Expecting numeric in G1469 / R1469C7: got '#N/A'Expecting numeric in B1470 / R1470C2: got '#N/A'Expecting numeric in E1470 / R1470C5: got '#N/A'Expecting numeric in G1470 / R1470C7: got '#N/A'Expecting numeric in B1471 / R1471C2: got '#N/A'Expecting numeric in E1471 / R1471C5: got '#N/A'Expecting numeric in G1471 / R1471C7: got '#N/A'Expecting numeric in B1472 / R1472C2: got '#N/A'Expecting numeric in E1472 / R1472C5: got '#N/A'Expecting numeric in G1472 / R1472C7: got '#N/A'Expecting numeric in B1473 / R1473C2: got '#N/A'Expecting numeric in E1473 / R1473C5: got '#N/A'Expecting numeric in G1473 / R1473C7: got '#N/A'Expecting numeric in B1474 / R1474C2: got '#N/A'Expecting numeric in E1474 / R1474C5: got '#N/A'Expecting numeric in G1474 / R1474C7: got '#N/A'Expecting numeric in B1475 / R1475C2: got '#N/A'Expecting numeric in E1475 / R1475C5: got '#N/A'Expecting numeric in G1475 / R1475C7: got '#N/A'Expecting numeric in B1476 / R1476C2: got '#N/A'Expecting numeric in E1476 / R1476C5: got '#N/A'Expecting numeric in G1476 / R1476C7: got '#N/A'Expecting numeric in B1477 / R1477C2: got '#N/A'Expecting numeric in E1477 / R1477C5: got '#N/A'Expecting numeric in G1477 / R1477C7: got '#N/A'Expecting numeric in B1478 / R1478C2: got '#N/A'Expecting numeric in E1478 / R1478C5: got '#N/A'Expecting numeric in G1478 / R1478C7: got '#N/A'Expecting numeric in B1479 / R1479C2: got '#N/A'Expecting numeric in E1479 / R1479C5: got '#N/A'Expecting numeric in G1479 / R1479C7: got '#N/A'Expecting numeric in B1480 / R1480C2: got '#N/A'Expecting numeric in E1480 / R1480C5: got '#N/A'Expecting numeric in G1480 / R1480C7: got '#N/A'Expecting numeric in B1481 / R1481C2: got '#N/A'Expecting numeric in E1481 / R1481C5: got '#N/A'Expecting numeric in G1481 / R1481C7: got '#N/A'Expecting numeric in B1482 / R1482C2: got '#N/A'Expecting numeric in E1482 / R1482C5: got '#N/A'Expecting numeric in G1482 / R1482C7: got '#N/A'Expecting numeric in B1483 / R1483C2: got '#N/A'Expecting numeric in E1483 / R1483C5: got '#N/A'Expecting numeric in G1483 / R1483C7: got '#N/A'Expecting numeric in B1484 / R1484C2: got '#N/A'Expecting numeric in E1484 / R1484C5: got '#N/A'Expecting numeric in G1484 / R1484C7: got '#N/A'Expecting numeric in B1485 / R1485C2: got '#N/A'Expecting numeric in E1485 / R1485C5: got '#N/A'Expecting numeric in G1485 / R1485C7: got '#N/A'Expecting numeric in B1486 / R1486C2: got '#N/A'Expecting numeric in E1486 / R1486C5: got '#N/A'Expecting numeric in G1486 / R1486C7: got '#N/A'Expecting numeric in B1487 / R1487C2: got '#N/A'Expecting numeric in E1487 / R1487C5: got '#N/A'Expecting numeric in G1487 / R1487C7: got '#N/A'Expecting numeric in B1488 / R1488C2: got '#N/A'Expecting numeric in E1488 / R1488C5: got '#N/A'Expecting numeric in G1488 / R1488C7: got '#N/A'Expecting numeric in B1489 / R1489C2: got '#N/A'Expecting numeric in E1489 / R1489C5: got '#N/A'Expecting numeric in G1489 / R1489C7: got '#N/A'Expecting numeric in B1490 / R1490C2: got '#N/A'Expecting numeric in E1490 / R1490C5: got '#N/A'Expecting numeric in G1490 / R1490C7: got '#N/A'Expecting numeric in B1491 / R1491C2: got '#N/A'Expecting numeric in E1491 / R1491C5: got '#N/A'Expecting numeric in G1491 / R1491C7: got '#N/A'Expecting numeric in B1492 / R1492C2: got '#N/A'Expecting numeric in E1492 / R1492C5: got '#N/A'Expecting numeric in G1492 / R1492C7: got '#N/A'Expecting numeric in B1493 / R1493C2: got '#N/A'Expecting numeric in E1493 / R1493C5: got '#N/A'Expecting numeric in G1493 / R1493C7: got '#N/A'Expecting numeric in B1494 / R1494C2: got '#N/A'Expecting numeric in E1494 / R1494C5: got '#N/A'Expecting numeric in G1494 / R1494C7: got '#N/A'Expecting numeric in B1495 / R1495C2: got '#N/A'Expecting numeric in E1495 / R1495C5: got '#N/A'Expecting numeric in G1495 / R1495C7: got '#N/A'Expecting numeric in B1496 / R1496C2: got '#N/A'Expecting numeric in E1496 / R1496C5: got '#N/A'Expecting numeric in G1496 / R1496C7: got '#N/A'Expecting numeric in B1497 / R1497C2: got '#N/A'Expecting numeric in E1497 / R1497C5: got '#N/A'Expecting numeric in G1497 / R1497C7: got '#N/A'Expecting numeric in B1498 / R1498C2: got '#N/A'Expecting numeric in E1498 / R1498C5: got '#N/A'Expecting numeric in G1498 / R1498C7: got '#N/A'Expecting numeric in B1499 / R1499C2: got '#N/A'Expecting numeric in E1499 / R1499C5: got '#N/A'Expecting numeric in G1499 / R1499C7: got '#N/A'Expecting numeric in B1500 / R1500C2: got '#N/A'Expecting numeric in E1500 / R1500C5: got '#N/A'Expecting numeric in G1500 / R1500C7: got '#N/A'Expecting numeric in B1501 / R1501C2: got '#N/A'Expecting numeric in E1501 / R1501C5: got '#N/A'Expecting numeric in G1501 / R1501C7: got '#N/A'Expecting numeric in B1502 / R1502C2: got '#N/A'Expecting numeric in E1502 / R1502C5: got '#N/A'Expecting numeric in G1502 / R1502C7: got '#N/A'Expecting numeric in B1503 / R1503C2: got '#N/A'Expecting numeric in E1503 / R1503C5: got '#N/A'Expecting numeric in G1503 / R1503C7: got '#N/A'Expecting numeric in B1504 / R1504C2: got '#N/A'Expecting numeric in E1504 / R1504C5: got '#N/A'Expecting numeric in G1504 / R1504C7: got '#N/A'Expecting numeric in B1505 / R1505C2: got '#N/A'Expecting numeric in E1505 / R1505C5: got '#N/A'Expecting numeric in G1505 / R1505C7: got '#N/A'Expecting numeric in B1506 / R1506C2: got '#N/A'Expecting numeric in E1506 / R1506C5: got '#N/A'Expecting numeric in G1506 / R1506C7: got '#N/A'Expecting numeric in B1507 / R1507C2: got '#N/A'Expecting numeric in E1507 / R1507C5: got '#N/A'Expecting numeric in G1507 / R1507C7: got '#N/A'Expecting numeric in B1508 / R1508C2: got '#N/A'Expecting numeric in E1508 / R1508C5: got '#N/A'Expecting numeric in G1508 / R1508C7: got '#N/A'Expecting numeric in B1509 / R1509C2: got '#N/A'Expecting numeric in E1509 / R1509C5: got '#N/A'Expecting numeric in G1509 / R1509C7: got '#N/A'Expecting numeric in B1510 / R1510C2: got '#N/A'Expecting numeric in E1510 / R1510C5: got '#N/A'Expecting numeric in G1510 / R1510C7: got '#N/A'Expecting numeric in B1511 / R1511C2: got '#N/A'Expecting numeric in E1511 / R1511C5: got '#N/A'Expecting numeric in G1511 / R1511C7: got '#N/A'Expecting numeric in B1512 / R1512C2: got '#N/A'Expecting numeric in E1512 / R1512C5: got '#N/A'Expecting numeric in G1512 / R1512C7: got '#N/A'Expecting numeric in B1513 / R1513C2: got '#N/A'Expecting numeric in E1513 / R1513C5: got '#N/A'Expecting numeric in G1513 / R1513C7: got '#N/A'Expecting numeric in B1514 / R1514C2: got '#N/A'Expecting numeric in E1514 / R1514C5: got '#N/A'Expecting numeric in G1514 / R1514C7: got '#N/A'Expecting numeric in B1515 / R1515C2: got '#N/A'Expecting numeric in E1515 / R1515C5: got '#N/A'Expecting numeric in G1515 / R1515C7: got '#N/A'Expecting numeric in B1516 / R1516C2: got '#N/A'Expecting numeric in E1516 / R1516C5: got '#N/A'Expecting numeric in G1516 / R1516C7: got '#N/A'Expecting numeric in B1517 / R1517C2: got '#N/A'Expecting numeric in E1517 / R1517C5: got '#N/A'Expecting numeric in G1517 / R1517C7: got '#N/A'Expecting numeric in B1518 / R1518C2: got '#N/A'Expecting numeric in E1518 / R1518C5: got '#N/A'Expecting numeric in G1518 / R1518C7: got '#N/A'Expecting numeric in B1519 / R1519C2: got '#N/A'Expecting numeric in E1519 / R1519C5: got '#N/A'Expecting numeric in G1519 / R1519C7: got '#N/A'Expecting numeric in B1520 / R1520C2: got '#N/A'Expecting numeric in E1520 / R1520C5: got '#N/A'Expecting numeric in G1520 / R1520C7: got '#N/A'Expecting numeric in B1521 / R1521C2: got '#N/A'Expecting numeric in E1521 / R1521C5: got '#N/A'Expecting numeric in G1521 / R1521C7: got '#N/A'Expecting numeric in B1522 / R1522C2: got '#N/A'Expecting numeric in E1522 / R1522C5: got '#N/A'Expecting numeric in G1522 / R1522C7: got '#N/A'Expecting numeric in B1523 / R1523C2: got '#N/A'Expecting numeric in E1523 / R1523C5: got '#N/A'Expecting numeric in G1523 / R1523C7: got '#N/A'Expecting numeric in B1524 / R1524C2: got '#N/A'Expecting numeric in E1524 / R1524C5: got '#N/A'Expecting numeric in G1524 / R1524C7: got '#N/A'Expecting numeric in B1525 / R1525C2: got '#N/A'Expecting numeric in E1525 / R1525C5: got '#N/A'Expecting numeric in G1525 / R1525C7: got '#N/A'Expecting numeric in B1526 / R1526C2: got '#N/A'Expecting numeric in E1526 / R1526C5: got '#N/A'Expecting numeric in G1526 / R1526C7: got '#N/A'Expecting numeric in B1527 / R1527C2: got '#N/A'Expecting numeric in E1527 / R1527C5: got '#N/A'Expecting numeric in G1527 / R1527C7: got '#N/A'Expecting numeric in B1528 / R1528C2: got '#N/A'Expecting numeric in E1528 / R1528C5: got '#N/A'Expecting numeric in G1528 / R1528C7: got '#N/A'Expecting numeric in B1529 / R1529C2: got '#N/A'Expecting numeric in E1529 / R1529C5: got '#N/A'Expecting numeric in G1529 / R1529C7: got '#N/A'Expecting numeric in B1530 / R1530C2: got '#N/A'Expecting numeric in E1530 / R1530C5: got '#N/A'Expecting numeric in G1530 / R1530C7: got '#N/A'Expecting numeric in B1531 / R1531C2: got '#N/A'Expecting numeric in E1531 / R1531C5: got '#N/A'Expecting numeric in G1531 / R1531C7: got '#N/A'Expecting numeric in B1532 / R1532C2: got '#N/A'Expecting numeric in E1532 / R1532C5: got '#N/A'Expecting numeric in G1532 / R1532C7: got '#N/A'Expecting numeric in B1533 / R1533C2: got '#N/A'Expecting numeric in E1533 / R1533C5: got '#N/A'Expecting numeric in G1533 / R1533C7: got '#N/A'Expecting numeric in B1534 / R1534C2: got '#N/A'Expecting numeric in E1534 / R1534C5: got '#N/A'Expecting numeric in G1534 / R1534C7: got '#N/A'Expecting numeric in B1535 / R1535C2: got '#N/A'Expecting numeric in E1535 / R1535C5: got '#N/A'Expecting numeric in G1535 / R1535C7: got '#N/A'Expecting numeric in B1536 / R1536C2: got '#N/A'Expecting numeric in E1536 / R1536C5: got '#N/A'Expecting numeric in G1536 / R1536C7: got '#N/A'Expecting numeric in B1537 / R1537C2: got '#N/A'Expecting numeric in E1537 / R1537C5: got '#N/A'Expecting numeric in G1537 / R1537C7: got '#N/A'Expecting numeric in B1538 / R1538C2: got '#N/A'Expecting numeric in E1538 / R1538C5: got '#N/A'Expecting numeric in G1538 / R1538C7: got '#N/A'Expecting numeric in B1539 / R1539C2: got '#N/A'Expecting numeric in E1539 / R1539C5: got '#N/A'Expecting numeric in G1539 / R1539C7: got '#N/A'Expecting numeric in B1540 / R1540C2: got '#N/A'Expecting numeric in E1540 / R1540C5: got '#N/A'Expecting numeric in G1540 / R1540C7: got '#N/A'Expecting numeric in B1541 / R1541C2: got '#N/A'Expecting numeric in E1541 / R1541C5: got '#N/A'Expecting numeric in G1541 / R1541C7: got '#N/A'Expecting numeric in B1542 / R1542C2: got '#N/A'Expecting numeric in E1542 / R1542C5: got '#N/A'Expecting numeric in G1542 / R1542C7: got '#N/A'Expecting numeric in B1543 / R1543C2: got '#N/A'Expecting numeric in E1543 / R1543C5: got '#N/A'Expecting numeric in G1543 / R1543C7: got '#N/A'Expecting numeric in B1544 / R1544C2: got '#N/A'Expecting numeric in E1544 / R1544C5: got '#N/A'Expecting numeric in G1544 / R1544C7: got '#N/A'Expecting numeric in B1545 / R1545C2: got '#N/A'Expecting numeric in E1545 / R1545C5: got '#N/A'Expecting numeric in G1545 / R1545C7: got '#N/A'Expecting numeric in B1546 / R1546C2: got '#N/A'Expecting numeric in E1546 / R1546C5: got '#N/A'Expecting numeric in G1546 / R1546C7: got '#N/A'Expecting numeric in B1547 / R1547C2: got '#N/A'Expecting numeric in E1547 / R1547C5: got '#N/A'Expecting numeric in G1547 / R1547C7: got '#N/A'Expecting numeric in B1548 / R1548C2: got '#N/A'Expecting numeric in E1548 / R1548C5: got '#N/A'Expecting numeric in G1548 / R1548C7: got '#N/A'Expecting numeric in B1549 / R1549C2: got '#N/A'Expecting numeric in E1549 / R1549C5: got '#N/A'Expecting numeric in G1549 / R1549C7: got '#N/A'Expecting numeric in B1550 / R1550C2: got '#N/A'Expecting numeric in E1550 / R1550C5: got '#N/A'Expecting numeric in G1550 / R1550C7: got '#N/A'Expecting numeric in B1551 / R1551C2: got '#N/A'Expecting numeric in E1551 / R1551C5: got '#N/A'Expecting numeric in G1551 / R1551C7: got '#N/A'Expecting numeric in B1552 / R1552C2: got '#N/A'Expecting numeric in E1552 / R1552C5: got '#N/A'Expecting numeric in G1552 / R1552C7: got '#N/A'Expecting numeric in B1553 / R1553C2: got '#N/A'Expecting numeric in E1553 / R1553C5: got '#N/A'Expecting numeric in G1553 / R1553C7: got '#N/A'Expecting numeric in B1554 / R1554C2: got '#N/A'Expecting numeric in E1554 / R1554C5: got '#N/A'Expecting numeric in G1554 / R1554C7: got '#N/A'Expecting numeric in B1555 / R1555C2: got '#N/A'Expecting numeric in E1555 / R1555C5: got '#N/A'Expecting numeric in G1555 / R1555C7: got '#N/A'Expecting numeric in B1556 / R1556C2: got '#N/A'Expecting numeric in E1556 / R1556C5: got '#N/A'Expecting numeric in G1556 / R1556C7: got '#N/A'Expecting numeric in B1557 / R1557C2: got '#N/A'Expecting numeric in E1557 / R1557C5: got '#N/A'Expecting numeric in G1557 / R1557C7: got '#N/A'Expecting numeric in B1558 / R1558C2: got '#N/A'Expecting numeric in E1558 / R1558C5: got '#N/A'Expecting numeric in G1558 / R1558C7: got '#N/A'Expecting numeric in B1559 / R1559C2: got '#N/A'Expecting numeric in E1559 / R1559C5: got '#N/A'Expecting numeric in G1559 / R1559C7: got '#N/A'Expecting numeric in B1560 / R1560C2: got '#N/A'Expecting numeric in E1560 / R1560C5: got '#N/A'Expecting numeric in G1560 / R1560C7: got '#N/A'Expecting numeric in B1561 / R1561C2: got '#N/A'Expecting numeric in E1561 / R1561C5: got '#N/A'Expecting numeric in G1561 / R1561C7: got '#N/A'Expecting numeric in B1562 / R1562C2: got '#N/A'Expecting numeric in E1562 / R1562C5: got '#N/A'Expecting numeric in G1562 / R1562C7: got '#N/A'Expecting numeric in B1563 / R1563C2: got '#N/A'Expecting numeric in E1563 / R1563C5: got '#N/A'Expecting numeric in G1563 / R1563C7: got '#N/A'Expecting numeric in B1564 / R1564C2: got '#N/A'Expecting numeric in E1564 / R1564C5: got '#N/A'Expecting numeric in G1564 / R1564C7: got '#N/A'Expecting numeric in B1565 / R1565C2: got '#N/A'Expecting numeric in E1565 / R1565C5: got '#N/A'Expecting numeric in G1565 / R1565C7: got '#N/A'Expecting numeric in B1566 / R1566C2: got '#N/A'Expecting numeric in E1566 / R1566C5: got '#N/A'Expecting numeric in G1566 / R1566C7: got '#N/A'Expecting numeric in B1567 / R1567C2: got '#N/A'Expecting numeric in E1567 / R1567C5: got '#N/A'Expecting numeric in G1567 / R1567C7: got '#N/A'Expecting numeric in B1568 / R1568C2: got '#N/A'Expecting numeric in E1568 / R1568C5: got '#N/A'Expecting numeric in G1568 / R1568C7: got '#N/A'Expecting numeric in B1569 / R1569C2: got '#N/A'Expecting numeric in E1569 / R1569C5: got '#N/A'Expecting numeric in G1569 / R1569C7: got '#N/A'Expecting numeric in B1570 / R1570C2: got '#N/A'Expecting numeric in E1570 / R1570C5: got '#N/A'Expecting numeric in G1570 / R1570C7: got '#N/A'Expecting numeric in B1571 / R1571C2: got '#N/A'Expecting numeric in E1571 / R1571C5: got '#N/A'Expecting numeric in G1571 / R1571C7: got '#N/A'Expecting numeric in B1572 / R1572C2: got '#N/A'Expecting numeric in E1572 / R1572C5: got '#N/A'Expecting numeric in G1572 / R1572C7: got '#N/A'Expecting numeric in B1573 / R1573C2: got '#N/A'Expecting numeric in E1573 / R1573C5: got '#N/A'Expecting numeric in G1573 / R1573C7: got '#N/A'Expecting numeric in B1574 / R1574C2: got '#N/A'Expecting numeric in E1574 / R1574C5: got '#N/A'Expecting numeric in G1574 / R1574C7: got '#N/A'Expecting numeric in B1575 / R1575C2: got '#N/A'Expecting numeric in E1575 / R1575C5: got '#N/A'Expecting numeric in G1575 / R1575C7: got '#N/A'Expecting numeric in B1576 / R1576C2: got '#N/A'Expecting numeric in E1576 / R1576C5: got '#N/A'Expecting numeric in G1576 / R1576C7: got '#N/A'Expecting numeric in B1577 / R1577C2: got '#N/A'Expecting numeric in E1577 / R1577C5: got '#N/A'Expecting numeric in G1577 / R1577C7: got '#N/A'Expecting numeric in B1578 / R1578C2: got '#N/A'Expecting numeric in E1578 / R1578C5: got '#N/A'Expecting numeric in G1578 / R1578C7: got '#N/A'Expecting numeric in B1579 / R1579C2: got '#N/A'Expecting numeric in E1579 / R1579C5: got '#N/A'Expecting numeric in G1579 / R1579C7: got '#N/A'Expecting numeric in B1580 / R1580C2: got '#N/A'Expecting numeric in E1580 / R1580C5: got '#N/A'Expecting numeric in G1580 / R1580C7: got '#N/A'Expecting numeric in B1581 / R1581C2: got '#N/A'Expecting numeric in E1581 / R1581C5: got '#N/A'Expecting numeric in G1581 / R1581C7: got '#N/A'Expecting numeric in B1582 / R1582C2: got '#N/A'Expecting numeric in E1582 / R1582C5: got '#N/A'Expecting numeric in G1582 / R1582C7: got '#N/A'Expecting numeric in B1583 / R1583C2: got '#N/A'Expecting numeric in E1583 / R1583C5: got '#N/A'Expecting numeric in G1583 / R1583C7: got '#N/A'Expecting numeric in B1584 / R1584C2: got '#N/A'Expecting numeric in E1584 / R1584C5: got '#N/A'Expecting numeric in G1584 / R1584C7: got '#N/A'Expecting numeric in B1585 / R1585C2: got '#N/A'Expecting numeric in E1585 / R1585C5: got '#N/A'Expecting numeric in G1585 / R1585C7: got '#N/A'Expecting numeric in B1586 / R1586C2: got '#N/A'Expecting numeric in E1586 / R1586C5: got '#N/A'Expecting numeric in G1586 / R1586C7: got '#N/A'Expecting numeric in B1587 / R1587C2: got '#N/A'Expecting numeric in E1587 / R1587C5: got '#N/A'Expecting numeric in G1587 / R1587C7: got '#N/A'Expecting numeric in B1588 / R1588C2: got '#N/A'Expecting numeric in E1588 / R1588C5: got '#N/A'Expecting numeric in G1588 / R1588C7: got '#N/A'Expecting numeric in B1589 / R1589C2: got '#N/A'Expecting numeric in E1589 / R1589C5: got '#N/A'Expecting numeric in G1589 / R1589C7: got '#N/A'Expecting numeric in B1590 / R1590C2: got '#N/A'Expecting numeric in E1590 / R1590C5: got '#N/A'Expecting numeric in G1590 / R1590C7: got '#N/A'Expecting numeric in B1591 / R1591C2: got '#N/A'Expecting numeric in E1591 / R1591C5: got '#N/A'Expecting numeric in G1591 / R1591C7: got '#N/A'Expecting numeric in B1592 / R1592C2: got '#N/A'Expecting numeric in E1592 / R1592C5: got '#N/A'Expecting numeric in G1592 / R1592C7: got '#N/A'Expecting numeric in B1593 / R1593C2: got '#N/A'Expecting numeric in E1593 / R1593C5: got '#N/A'Expecting numeric in G1593 / R1593C7: got '#N/A'Expecting numeric in B1594 / R1594C2: got '#N/A'Expecting numeric in E1594 / R1594C5: got '#N/A'Expecting numeric in G1594 / R1594C7: got '#N/A'Expecting numeric in B1595 / R1595C2: got '#N/A'Expecting numeric in E1595 / R1595C5: got '#N/A'Expecting numeric in G1595 / R1595C7: got '#N/A'Expecting numeric in B1596 / R1596C2: got '#N/A'Expecting numeric in E1596 / R1596C5: got '#N/A'Expecting numeric in G1596 / R1596C7: got '#N/A'Expecting numeric in B1597 / R1597C2: got '#N/A'Expecting numeric in E1597 / R1597C5: got '#N/A'Expecting numeric in G1597 / R1597C7: got '#N/A'Expecting numeric in B1598 / R1598C2: got '#N/A'Expecting numeric in E1598 / R1598C5: got '#N/A'Expecting numeric in G1598 / R1598C7: got '#N/A'Expecting numeric in B1599 / R1599C2: got '#N/A'Expecting numeric in E1599 / R1599C5: got '#N/A'Expecting numeric in G1599 / R1599C7: got '#N/A'Expecting numeric in B1600 / R1600C2: got '#N/A'Expecting numeric in E1600 / R1600C5: got '#N/A'Expecting numeric in G1600 / R1600C7: got '#N/A'Expecting numeric in B1601 / R1601C2: got '#N/A'Expecting numeric in E1601 / R1601C5: got '#N/A'Expecting numeric in G1601 / R1601C7: got '#N/A'Expecting numeric in B1602 / R1602C2: got '#N/A'Expecting numeric in E1602 / R1602C5: got '#N/A'Expecting numeric in G1602 / R1602C7: got '#N/A'Expecting numeric in B1603 / R1603C2: got '#N/A'Expecting numeric in E1603 / R1603C5: got '#N/A'Expecting numeric in G1603 / R1603C7: got '#N/A'Expecting numeric in B1604 / R1604C2: got '#N/A'Expecting numeric in E1604 / R1604C5: got '#N/A'Expecting numeric in G1604 / R1604C7: got '#N/A'Expecting numeric in B1605 / R1605C2: got '#N/A'Expecting numeric in E1605 / R1605C5: got '#N/A'Expecting numeric in G1605 / R1605C7: got '#N/A'Expecting numeric in B1606 / R1606C2: got '#N/A'Expecting numeric in E1606 / R1606C5: got '#N/A'Expecting numeric in G1606 / R1606C7: got '#N/A'Expecting numeric in B1607 / R1607C2: got '#N/A'Expecting numeric in E1607 / R1607C5: got '#N/A'Expecting numeric in G1607 / R1607C7: got '#N/A'Expecting numeric in B1608 / R1608C2: got '#N/A'Expecting numeric in E1608 / R1608C5: got '#N/A'Expecting numeric in G1608 / R1608C7: got '#N/A'Expecting numeric in B1609 / R1609C2: got '#N/A'Expecting numeric in E1609 / R1609C5: got '#N/A'Expecting numeric in G1609 / R1609C7: got '#N/A'Expecting numeric in B1610 / R1610C2: got '#N/A'Expecting numeric in E1610 / R1610C5: got '#N/A'Expecting numeric in G1610 / R1610C7: got '#N/A'Expecting numeric in B1611 / R1611C2: got '#N/A'Expecting numeric in E1611 / R1611C5: got '#N/A'Expecting numeric in G1611 / R1611C7: got '#N/A'Expecting numeric in B1612 / R1612C2: got '#N/A'Expecting numeric in E1612 / R1612C5: got '#N/A'Expecting numeric in G1612 / R1612C7: got '#N/A'Expecting numeric in B1613 / R1613C2: got '#N/A'Expecting numeric in E1613 / R1613C5: got '#N/A'Expecting numeric in G1613 / R1613C7: got '#N/A'Expecting numeric in B1614 / R1614C2: got '#N/A'Expecting numeric in E1614 / R1614C5: got '#N/A'Expecting numeric in G1614 / R1614C7: got '#N/A'Expecting numeric in B1615 / R1615C2: got '#N/A'Expecting numeric in E1615 / R1615C5: got '#N/A'Expecting numeric in G1615 / R1615C7: got '#N/A'Expecting numeric in B1616 / R1616C2: got '#N/A'Expecting numeric in E1616 / R1616C5: got '#N/A'Expecting numeric in G1616 / R1616C7: got '#N/A'Expecting numeric in B1617 / R1617C2: got '#N/A'Expecting numeric in E1617 / R1617C5: got '#N/A'Expecting numeric in G1617 / R1617C7: got '#N/A'Expecting numeric in B1618 / R1618C2: got '#N/A'Expecting numeric in E1618 / R1618C5: got '#N/A'Expecting numeric in G1618 / R1618C7: got '#N/A'Expecting numeric in B1619 / R1619C2: got '#N/A'Expecting numeric in E1619 / R1619C5: got '#N/A'Expecting numeric in G1619 / R1619C7: got '#N/A'Expecting numeric in B1620 / R1620C2: got '#N/A'Expecting numeric in E1620 / R1620C5: got '#N/A'Expecting numeric in G1620 / R1620C7: got '#N/A'Expecting numeric in B1621 / R1621C2: got '#N/A'Expecting numeric in E1621 / R1621C5: got '#N/A'Expecting numeric in G1621 / R1621C7: got '#N/A'Expecting numeric in B1622 / R1622C2: got '#N/A'Expecting numeric in E1622 / R1622C5: got '#N/A'Expecting numeric in G1622 / R1622C7: got '#N/A'Expecting numeric in B1623 / R1623C2: got '#N/A'Expecting numeric in E1623 / R1623C5: got '#N/A'Expecting numeric in G1623 / R1623C7: got '#N/A'Expecting numeric in B1624 / R1624C2: got '#N/A'Expecting numeric in E1624 / R1624C5: got '#N/A'Expecting numeric in G1624 / R1624C7: got '#N/A'Expecting numeric in B1625 / R1625C2: got '#N/A'Expecting numeric in E1625 / R1625C5: got '#N/A'Expecting numeric in G1625 / R1625C7: got '#N/A'Expecting numeric in B1626 / R1626C2: got '#N/A'Expecting numeric in E1626 / R1626C5: got '#N/A'Expecting numeric in G1626 / R1626C7: got '#N/A'Expecting numeric in B1627 / R1627C2: got '#N/A'Expecting numeric in E1627 / R1627C5: got '#N/A'Expecting numeric in G1627 / R1627C7: got '#N/A'Expecting numeric in B1628 / R1628C2: got '#N/A'Expecting numeric in E1628 / R1628C5: got '#N/A'Expecting numeric in G1628 / R1628C7: got '#N/A'Expecting numeric in B1629 / R1629C2: got '#N/A'Expecting numeric in E1629 / R1629C5: got '#N/A'Expecting numeric in G1629 / R1629C7: got '#N/A'Expecting numeric in B1630 / R1630C2: got '#N/A'Expecting numeric in E1630 / R1630C5: got '#N/A'Expecting numeric in G1630 / R1630C7: got '#N/A'Expecting numeric in B1631 / R1631C2: got '#N/A'Expecting numeric in E1631 / R1631C5: got '#N/A'Expecting numeric in G1631 / R1631C7: got '#N/A'Expecting numeric in B1632 / R1632C2: got '#N/A'Expecting numeric in E1632 / R1632C5: got '#N/A'Expecting numeric in G1632 / R1632C7: got '#N/A'Expecting numeric in B1633 / R1633C2: got '#N/A'Expecting numeric in E1633 / R1633C5: got '#N/A'Expecting numeric in G1633 / R1633C7: got '#N/A'Expecting numeric in B1634 / R1634C2: got '#N/A'Expecting numeric in E1634 / R1634C5: got '#N/A'Expecting numeric in G1634 / R1634C7: got '#N/A'Expecting numeric in B1635 / R1635C2: got '#N/A'Expecting numeric in E1635 / R1635C5: got '#N/A'Expecting numeric in G1635 / R1635C7: got '#N/A'Expecting numeric in B1636 / R1636C2: got '#N/A'Expecting numeric in E1636 / R1636C5: got '#N/A'Expecting numeric in G1636 / R1636C7: got '#N/A'Expecting numeric in B1637 / R1637C2: got '#N/A'Expecting numeric in E1637 / R1637C5: got '#N/A'Expecting numeric in G1637 / R1637C7: got '#N/A'Expecting numeric in B1638 / R1638C2: got '#N/A'Expecting numeric in E1638 / R1638C5: got '#N/A'Expecting numeric in G1638 / R1638C7: got '#N/A'Expecting numeric in B1639 / R1639C2: got '#N/A'Expecting numeric in E1639 / R1639C5: got '#N/A'Expecting numeric in G1639 / R1639C7: got '#N/A'Expecting numeric in B1640 / R1640C2: got '#N/A'Expecting numeric in E1640 / R1640C5: got '#N/A'Expecting numeric in G1640 / R1640C7: got '#N/A'Expecting numeric in B1641 / R1641C2: got '#N/A'Expecting numeric in E1641 / R1641C5: got '#N/A'Expecting numeric in G1641 / R1641C7: got '#N/A'Expecting numeric in B1642 / R1642C2: got '#N/A'Expecting numeric in E1642 / R1642C5: got '#N/A'Expecting numeric in G1642 / R1642C7: got '#N/A'Expecting numeric in B1643 / R1643C2: got '#N/A'Expecting numeric in E1643 / R1643C5: got '#N/A'Expecting numeric in G1643 / R1643C7: got '#N/A'Expecting numeric in B1644 / R1644C2: got '#N/A'Expecting numeric in E1644 / R1644C5: got '#N/A'Expecting numeric in G1644 / R1644C7: got '#N/A'Expecting numeric in B1645 / R1645C2: got '#N/A'Expecting numeric in E1645 / R1645C5: got '#N/A'Expecting numeric in G1645 / R1645C7: got '#N/A'Expecting numeric in B1646 / R1646C2: got '#N/A'Expecting numeric in E1646 / R1646C5: got '#N/A'Expecting numeric in G1646 / R1646C7: got '#N/A'Expecting numeric in B1647 / R1647C2: got '#N/A'Expecting numeric in E1647 / R1647C5: got '#N/A'Expecting numeric in G1647 / R1647C7: got '#N/A'Expecting numeric in B1648 / R1648C2: got '#N/A'Expecting numeric in E1648 / R1648C5: got '#N/A'Expecting numeric in G1648 / R1648C7: got '#N/A'Expecting numeric in B1649 / R1649C2: got '#N/A'Expecting numeric in E1649 / R1649C5: got '#N/A'Expecting numeric in G1649 / R1649C7: got '#N/A'Expecting numeric in B1650 / R1650C2: got '#N/A'Expecting numeric in E1650 / R1650C5: got '#N/A'Expecting numeric in G1650 / R1650C7: got '#N/A'Expecting numeric in B1651 / R1651C2: got '#N/A'Expecting numeric in E1651 / R1651C5: got '#N/A'Expecting numeric in G1651 / R1651C7: got '#N/A'Expecting numeric in B1652 / R1652C2: got '#N/A'Expecting numeric in E1652 / R1652C5: got '#N/A'Expecting numeric in G1652 / R1652C7: got '#N/A'Expecting numeric in B1653 / R1653C2: got '#N/A'Expecting numeric in E1653 / R1653C5: got '#N/A'Expecting numeric in G1653 / R1653C7: got '#N/A'Expecting numeric in B1654 / R1654C2: got '#N/A'Expecting numeric in E1654 / R1654C5: got '#N/A'Expecting numeric in G1654 / R1654C7: got '#N/A'Expecting numeric in B1655 / R1655C2: got '#N/A'Expecting numeric in E1655 / R1655C5: got '#N/A'Expecting numeric in G1655 / R1655C7: got '#N/A'Expecting numeric in B1656 / R1656C2: got '#N/A'Expecting numeric in E1656 / R1656C5: got '#N/A'Expecting numeric in G1656 / R1656C7: got '#N/A'Expecting numeric in B1657 / R1657C2: got '#N/A'Expecting numeric in E1657 / R1657C5: got '#N/A'Expecting numeric in G1657 / R1657C7: got '#N/A'Expecting numeric in B1658 / R1658C2: got '#N/A'Expecting numeric in E1658 / R1658C5: got '#N/A'Expecting numeric in G1658 / R1658C7: got '#N/A'Expecting numeric in B1659 / R1659C2: got '#N/A'Expecting numeric in E1659 / R1659C5: got '#N/A'Expecting numeric in G1659 / R1659C7: got '#N/A'Expecting numeric in B1660 / R1660C2: got '#N/A'Expecting numeric in E1660 / R1660C5: got '#N/A'Expecting numeric in G1660 / R1660C7: got '#N/A'Expecting numeric in B1661 / R1661C2: got '#N/A'Expecting numeric in E1661 / R1661C5: got '#N/A'Expecting numeric in G1661 / R1661C7: got '#N/A'Expecting numeric in B1662 / R1662C2: got '#N/A'Expecting numeric in E1662 / R1662C5: got '#N/A'Expecting numeric in G1662 / R1662C7: got '#N/A'Expecting numeric in B1663 / R1663C2: got '#N/A'Expecting numeric in E1663 / R1663C5: got '#N/A'Expecting numeric in G1663 / R1663C7: got '#N/A'Expecting numeric in B1664 / R1664C2: got '#N/A'Expecting numeric in E1664 / R1664C5: got '#N/A'Expecting numeric in G1664 / R1664C7: got '#N/A'Expecting numeric in B1665 / R1665C2: got '#N/A'Expecting numeric in E1665 / R1665C5: got '#N/A'Expecting numeric in G1665 / R1665C7: got '#N/A'Expecting numeric in B1666 / R1666C2: got '#N/A'Expecting numeric in E1666 / R1666C5: got '#N/A'Expecting numeric in G1666 / R1666C7: got '#N/A'Expecting numeric in B1667 / R1667C2: got '#N/A'Expecting numeric in E1667 / R1667C5: got '#N/A'Expecting numeric in G1667 / R1667C7: got '#N/A'Expecting numeric in B1668 / R1668C2: got '#N/A'Expecting numeric in E1668 / R1668C5: got '#N/A'Expecting numeric in G1668 / R1668C7: got '#N/A'Expecting numeric in B1669 / R1669C2: got '#N/A'Expecting numeric in E1669 / R1669C5: got '#N/A'Expecting numeric in G1669 / R1669C7: got '#N/A'Expecting numeric in B1670 / R1670C2: got '#N/A'Expecting numeric in E1670 / R1670C5: got '#N/A'Expecting numeric in G1670 / R1670C7: got '#N/A'Expecting numeric in B1671 / R1671C2: got '#N/A'Expecting numeric in E1671 / R1671C5: got '#N/A'Expecting numeric in G1671 / R1671C7: got '#N/A'Expecting numeric in B1672 / R1672C2: got '#N/A'Expecting numeric in E1672 / R1672C5: got '#N/A'Expecting numeric in G1672 / R1672C7: got '#N/A'Expecting numeric in B1673 / R1673C2: got '#N/A'Expecting numeric in E1673 / R1673C5: got '#N/A'Expecting numeric in G1673 / R1673C7: got '#N/A'Expecting numeric in B1674 / R1674C2: got '#N/A'Expecting numeric in E1674 / R1674C5: got '#N/A'Expecting numeric in G1674 / R1674C7: got '#N/A'Expecting numeric in B1675 / R1675C2: got '#N/A'Expecting numeric in E1675 / R1675C5: got '#N/A'Expecting numeric in G1675 / R1675C7: got '#N/A'Expecting numeric in B1676 / R1676C2: got '#N/A'Expecting numeric in E1676 / R1676C5: got '#N/A'Expecting numeric in G1676 / R1676C7: got '#N/A'Expecting numeric in B1677 / R1677C2: got '#N/A'Expecting numeric in E1677 / R1677C5: got '#N/A'Expecting numeric in G1677 / R1677C7: got '#N/A'Expecting numeric in B1678 / R1678C2: got '#N/A'Expecting numeric in E1678 / R1678C5: got '#N/A'Expecting numeric in G1678 / R1678C7: got '#N/A'Expecting numeric in B1679 / R1679C2: got '#N/A'Expecting numeric in E1679 / R1679C5: got '#N/A'Expecting numeric in G1679 / R1679C7: got '#N/A'Expecting numeric in B1680 / R1680C2: got '#N/A'Expecting numeric in E1680 / R1680C5: got '#N/A'Expecting numeric in G1680 / R1680C7: got '#N/A'Expecting numeric in B1681 / R1681C2: got '#N/A'Expecting numeric in E1681 / R1681C5: got '#N/A'Expecting numeric in G1681 / R1681C7: got '#N/A'Expecting numeric in B1682 / R1682C2: got '#N/A'Expecting numeric in E1682 / R1682C5: got '#N/A'Expecting numeric in G1682 / R1682C7: got '#N/A'Expecting numeric in B1683 / R1683C2: got '#N/A'Expecting numeric in E1683 / R1683C5: got '#N/A'Expecting numeric in G1683 / R1683C7: got '#N/A'Expecting numeric in B1684 / R1684C2: got '#N/A'Expecting numeric in E1684 / R1684C5: got '#N/A'Expecting numeric in G1684 / R1684C7: got '#N/A'Expecting numeric in B1685 / R1685C2: got '#N/A'Expecting numeric in E1685 / R1685C5: got '#N/A'Expecting numeric in G1685 / R1685C7: got '#N/A'Expecting numeric in B1686 / R1686C2: got '#N/A'Expecting numeric in E1686 / R1686C5: got '#N/A'Expecting numeric in G1686 / R1686C7: got '#N/A'Expecting numeric in B1687 / R1687C2: got '#N/A'Expecting numeric in E1687 / R1687C5: got '#N/A'Expecting numeric in G1687 / R1687C7: got '#N/A'Expecting numeric in B1688 / R1688C2: got '#N/A'Expecting numeric in E1688 / R1688C5: got '#N/A'Expecting numeric in G1688 / R1688C7: got '#N/A'Expecting numeric in B1689 / R1689C2: got '#N/A'Expecting numeric in E1689 / R1689C5: got '#N/A'Expecting numeric in G1689 / R1689C7: got '#N/A'Expecting numeric in B1690 / R1690C2: got '#N/A'Expecting numeric in E1690 / R1690C5: got '#N/A'Expecting numeric in G1690 / R1690C7: got '#N/A'Expecting numeric in B1691 / R1691C2: got '#N/A'Expecting numeric in E1691 / R1691C5: got '#N/A'Expecting numeric in G1691 / R1691C7: got '#N/A'Expecting numeric in B1692 / R1692C2: got '#N/A'Expecting numeric in E1692 / R1692C5: got '#N/A'Expecting numeric in G1692 / R1692C7: got '#N/A'Expecting numeric in B1693 / R1693C2: got '#N/A'Expecting numeric in E1693 / R1693C5: got '#N/A'Expecting numeric in G1693 / R1693C7: got '#N/A'Expecting numeric in B1694 / R1694C2: got '#N/A'Expecting numeric in E1694 / R1694C5: got '#N/A'Expecting numeric in G1694 / R1694C7: got '#N/A'Expecting numeric in B1695 / R1695C2: got '#N/A'Expecting numeric in E1695 / R1695C5: got '#N/A'Expecting numeric in G1695 / R1695C7: got '#N/A'Expecting numeric in B1696 / R1696C2: got '#N/A'Expecting numeric in E1696 / R1696C5: got '#N/A'Expecting numeric in G1696 / R1696C7: got '#N/A'Expecting numeric in B1697 / R1697C2: got '#N/A'Expecting numeric in E1697 / R1697C5: got '#N/A'Expecting numeric in G1697 / R1697C7: got '#N/A'Expecting numeric in B1698 / R1698C2: got '#N/A'Expecting numeric in E1698 / R1698C5: got '#N/A'Expecting numeric in G1698 / R1698C7: got '#N/A'Expecting numeric in B1699 / R1699C2: got '#N/A'Expecting numeric in E1699 / R1699C5: got '#N/A'Expecting numeric in G1699 / R1699C7: got '#N/A'Expecting numeric in B1700 / R1700C2: got '#N/A'Expecting numeric in E1700 / R1700C5: got '#N/A'Expecting numeric in G1700 / R1700C7: got '#N/A'Expecting numeric in B1701 / R1701C2: got '#N/A'Expecting numeric in E1701 / R1701C5: got '#N/A'Expecting numeric in G1701 / R1701C7: got '#N/A'Expecting numeric in B1702 / R1702C2: got '#N/A'Expecting numeric in E1702 / R1702C5: got '#N/A'Expecting numeric in G1702 / R1702C7: got '#N/A'Expecting numeric in B1703 / R1703C2: got '#N/A'Expecting numeric in E1703 / R1703C5: got '#N/A'Expecting numeric in G1703 / R1703C7: got '#N/A'Expecting numeric in B1704 / R1704C2: got '#N/A'Expecting numeric in E1704 / R1704C5: got '#N/A'Expecting numeric in G1704 / R1704C7: got '#N/A'Expecting numeric in B1705 / R1705C2: got '#N/A'Expecting numeric in E1705 / R1705C5: got '#N/A'Expecting numeric in G1705 / R1705C7: got '#N/A'Expecting numeric in B1706 / R1706C2: got '#N/A'Expecting numeric in E1706 / R1706C5: got '#N/A'Expecting numeric in G1706 / R1706C7: got '#N/A'Expecting numeric in B1707 / R1707C2: got '#N/A'Expecting numeric in E1707 / R1707C5: got '#N/A'Expecting numeric in G1707 / R1707C7: got '#N/A'Expecting numeric in B1708 / R1708C2: got '#N/A'Expecting numeric in E1708 / R1708C5: got '#N/A'Expecting numeric in G1708 / R1708C7: got '#N/A'Expecting numeric in B1709 / R1709C2: got '#N/A'Expecting numeric in E1709 / R1709C5: got '#N/A'Expecting numeric in G1709 / R1709C7: got '#N/A'Expecting numeric in B1710 / R1710C2: got '#N/A'Expecting numeric in E1710 / R1710C5: got '#N/A'Expecting numeric in G1710 / R1710C7: got '#N/A'Expecting numeric in B1711 / R1711C2: got '#N/A'Expecting numeric in E1711 / R1711C5: got '#N/A'Expecting numeric in G1711 / R1711C7: got '#N/A'Expecting numeric in B1712 / R1712C2: got '#N/A'Expecting numeric in E1712 / R1712C5: got '#N/A'Expecting numeric in G1712 / R1712C7: got '#N/A'Expecting numeric in B1713 / R1713C2: got '#N/A'Expecting numeric in E1713 / R1713C5: got '#N/A'Expecting numeric in G1713 / R1713C7: got '#N/A'Expecting numeric in B1714 / R1714C2: got '#N/A'Expecting numeric in E1714 / R1714C5: got '#N/A'Expecting numeric in G1714 / R1714C7: got '#N/A'Expecting numeric in B1715 / R1715C2: got '#N/A'Expecting numeric in E1715 / R1715C5: got '#N/A'Expecting numeric in G1715 / R1715C7: got '#N/A'Expecting numeric in B1716 / R1716C2: got '#N/A'Expecting numeric in E1716 / R1716C5: got '#N/A'Expecting numeric in G1716 / R1716C7: got '#N/A'Expecting numeric in B1717 / R1717C2: got '#N/A'Expecting numeric in E1717 / R1717C5: got '#N/A'Expecting numeric in G1717 / R1717C7: got '#N/A'Expecting numeric in B1718 / R1718C2: got '#N/A'Expecting numeric in E1718 / R1718C5: got '#N/A'Expecting numeric in G1718 / R1718C7: got '#N/A'Expecting numeric in B1719 / R1719C2: got '#N/A'Expecting numeric in E1719 / R1719C5: got '#N/A'Expecting numeric in G1719 / R1719C7: got '#N/A'Expecting numeric in B1720 / R1720C2: got '#N/A'Expecting numeric in E1720 / R1720C5: got '#N/A'Expecting numeric in G1720 / R1720C7: got '#N/A'Expecting numeric in B1721 / R1721C2: got '#N/A'Expecting numeric in E1721 / R1721C5: got '#N/A'Expecting numeric in G1721 / R1721C7: got '#N/A'Expecting numeric in B1722 / R1722C2: got '#N/A'Expecting numeric in E1722 / R1722C5: got '#N/A'Expecting numeric in G1722 / R1722C7: got '#N/A'Expecting numeric in B1723 / R1723C2: got '#N/A'Expecting numeric in E1723 / R1723C5: got '#N/A'Expecting numeric in G1723 / R1723C7: got '#N/A'Expecting numeric in B1724 / R1724C2: got '#N/A'Expecting numeric in E1724 / R1724C5: got '#N/A'Expecting numeric in G1724 / R1724C7: got '#N/A'Expecting numeric in B1725 / R1725C2: got '#N/A'Expecting numeric in E1725 / R1725C5: got '#N/A'Expecting numeric in G1725 / R1725C7: got '#N/A'Expecting numeric in B1726 / R1726C2: got '#N/A'Expecting numeric in E1726 / R1726C5: got '#N/A'Expecting numeric in G1726 / R1726C7: got '#N/A'Expecting numeric in B1727 / R1727C2: got '#N/A'Expecting numeric in E1727 / R1727C5: got '#N/A'Expecting numeric in G1727 / R1727C7: got '#N/A'Expecting numeric in B1728 / R1728C2: got '#N/A'Expecting numeric in E1728 / R1728C5: got '#N/A'Expecting numeric in G1728 / R1728C7: got '#N/A'Expecting numeric in B1729 / R1729C2: got '#N/A'Expecting numeric in E1729 / R1729C5: got '#N/A'Expecting numeric in G1729 / R1729C7: got '#N/A'Expecting numeric in B1730 / R1730C2: got '#N/A'Expecting numeric in E1730 / R1730C5: got '#N/A'Expecting numeric in G1730 / R1730C7: got '#N/A'Expecting numeric in B1731 / R1731C2: got '#N/A'Expecting numeric in E1731 / R1731C5: got '#N/A'Expecting numeric in G1731 / R1731C7: got '#N/A'Expecting numeric in B1732 / R1732C2: got '#N/A'Expecting numeric in E1732 / R1732C5: got '#N/A'Expecting numeric in G1732 / R1732C7: got '#N/A'Expecting numeric in B1733 / R1733C2: got '#N/A'Expecting numeric in E1733 / R1733C5: got '#N/A'Expecting numeric in G1733 / R1733C7: got '#N/A'Expecting numeric in B1734 / R1734C2: got '#N/A'Expecting numeric in E1734 / R1734C5: got '#N/A'Expecting numeric in G1734 / R1734C7: got '#N/A'Expecting numeric in B1735 / R1735C2: got '#N/A'Expecting numeric in E1735 / R1735C5: got '#N/A'Expecting numeric in G1735 / R1735C7: got '#N/A'Expecting numeric in B1736 / R1736C2: got '#N/A'Expecting numeric in E1736 / R1736C5: got '#N/A'Expecting numeric in G1736 / R1736C7: got '#N/A'Expecting numeric in B1737 / R1737C2: got '#N/A'Expecting numeric in E1737 / R1737C5: got '#N/A'Expecting numeric in G1737 / R1737C7: got '#N/A'Expecting numeric in B1738 / R1738C2: got '#N/A'Expecting numeric in E1738 / R1738C5: got '#N/A'Expecting numeric in G1738 / R1738C7: got '#N/A'Expecting numeric in B1739 / R1739C2: got '#N/A'Expecting numeric in E1739 / R1739C5: got '#N/A'Expecting numeric in G1739 / R1739C7: got '#N/A'Expecting numeric in B1740 / R1740C2: got '#N/A'Expecting numeric in E1740 / R1740C5: got '#N/A'Expecting numeric in G1740 / R1740C7: got '#N/A'Expecting numeric in B1741 / R1741C2: got '#N/A'Expecting numeric in E1741 / R1741C5: got '#N/A'Expecting numeric in G1741 / R1741C7: got '#N/A'Expecting numeric in B1742 / R1742C2: got '#N/A'Expecting numeric in E1742 / R1742C5: got '#N/A'Expecting numeric in G1742 / R1742C7: got '#N/A'Expecting numeric in B1743 / R1743C2: got '#N/A'Expecting numeric in E1743 / R1743C5: got '#N/A'Expecting numeric in G1743 / R1743C7: got '#N/A'Expecting numeric in B1744 / R1744C2: got '#N/A'Expecting numeric in E1744 / R1744C5: got '#N/A'Expecting numeric in G1744 / R1744C7: got '#N/A'Expecting numeric in B1745 / R1745C2: got '#N/A'Expecting numeric in E1745 / R1745C5: got '#N/A'Expecting numeric in G1745 / R1745C7: got '#N/A'Expecting numeric in B1746 / R1746C2: got '#N/A'Expecting numeric in E1746 / R1746C5: got '#N/A'Expecting numeric in G1746 / R1746C7: got '#N/A'Expecting numeric in B1747 / R1747C2: got '#N/A'Expecting numeric in E1747 / R1747C5: got '#N/A'Expecting numeric in G1747 / R1747C7: got '#N/A'Expecting numeric in B1748 / R1748C2: got '#N/A'Expecting numeric in E1748 / R1748C5: got '#N/A'Expecting numeric in G1748 / R1748C7: got '#N/A'Expecting numeric in B1749 / R1749C2: got '#N/A'Expecting numeric in E1749 / R1749C5: got '#N/A'Expecting numeric in G1749 / R1749C7: got '#N/A'Expecting numeric in B1750 / R1750C2: got '#N/A'Expecting numeric in E1750 / R1750C5: got '#N/A'Expecting numeric in G1750 / R1750C7: got '#N/A'Expecting numeric in B1751 / R1751C2: got '#N/A'Expecting numeric in E1751 / R1751C5: got '#N/A'Expecting numeric in G1751 / R1751C7: got '#N/A'Expecting numeric in B1752 / R1752C2: got '#N/A'Expecting numeric in E1752 / R1752C5: got '#N/A'Expecting numeric in G1752 / R1752C7: got '#N/A'Expecting numeric in B1753 / R1753C2: got '#N/A'Expecting numeric in E1753 / R1753C5: got '#N/A'Expecting numeric in G1753 / R1753C7: got '#N/A'Expecting numeric in B1754 / R1754C2: got '#N/A'Expecting numeric in E1754 / R1754C5: got '#N/A'Expecting numeric in G1754 / R1754C7: got '#N/A'Expecting numeric in B1755 / R1755C2: got '#N/A'Expecting numeric in E1755 / R1755C5: got '#N/A'Expecting numeric in G1755 / R1755C7: got '#N/A'Expecting numeric in B1756 / R1756C2: got '#N/A'Expecting numeric in E1756 / R1756C5: got '#N/A'Expecting numeric in G1756 / R1756C7: got '#N/A'Expecting numeric in B1757 / R1757C2: got '#N/A'Expecting numeric in E1757 / R1757C5: got '#N/A'Expecting numeric in G1757 / R1757C7: got '#N/A'Expecting numeric in B1758 / R1758C2: got '#N/A'Expecting numeric in E1758 / R1758C5: got '#N/A'Expecting numeric in G1758 / R1758C7: got '#N/A'Expecting numeric in B1759 / R1759C2: got '#N/A'Expecting numeric in E1759 / R1759C5: got '#N/A'Expecting numeric in G1759 / R1759C7: got '#N/A'Expecting numeric in B1760 / R1760C2: got '#N/A'Expecting numeric in E1760 / R1760C5: got '#N/A'Expecting numeric in G1760 / R1760C7: got '#N/A'Expecting numeric in B1761 / R1761C2: got '#N/A'Expecting numeric in E1761 / R1761C5: got '#N/A'Expecting numeric in G1761 / R1761C7: got '#N/A'Expecting numeric in B1762 / R1762C2: got '#N/A'Expecting numeric in E1762 / R1762C5: got '#N/A'Expecting numeric in G1762 / R1762C7: got '#N/A'Expecting numeric in B1763 / R1763C2: got '#N/A'Expecting numeric in E1763 / R1763C5: got '#N/A'Expecting numeric in G1763 / R1763C7: got '#N/A'Expecting numeric in B1764 / R1764C2: got '#N/A'Expecting numeric in E1764 / R1764C5: got '#N/A'Expecting numeric in G1764 / R1764C7: got '#N/A'Expecting numeric in B1765 / R1765C2: got '#N/A'Expecting numeric in E1765 / R1765C5: got '#N/A'Expecting numeric in G1765 / R1765C7: got '#N/A'Expecting numeric in B1766 / R1766C2: got '#N/A'Expecting numeric in E1766 / R1766C5: got '#N/A'Expecting numeric in G1766 / R1766C7: got '#N/A'Expecting numeric in B1767 / R1767C2: got '#N/A'Expecting numeric in E1767 / R1767C5: got '#N/A'Expecting numeric in G1767 / R1767C7: got '#N/A'Expecting numeric in B1768 / R1768C2: got '#N/A'Expecting numeric in E1768 / R1768C5: got '#N/A'Expecting numeric in G1768 / R1768C7: got '#N/A'Expecting numeric in B1769 / R1769C2: got '#N/A'Expecting numeric in E1769 / R1769C5: got '#N/A'Expecting numeric in G1769 / R1769C7: got '#N/A'Expecting numeric in B1770 / R1770C2: got '#N/A'Expecting numeric in E1770 / R1770C5: got '#N/A'Expecting numeric in G1770 / R1770C7: got '#N/A'Expecting numeric in B1771 / R1771C2: got '#N/A'Expecting numeric in E1771 / R1771C5: got '#N/A'Expecting numeric in G1771 / R1771C7: got '#N/A'Expecting numeric in B1772 / R1772C2: got '#N/A'Expecting numeric in E1772 / R1772C5: got '#N/A'Expecting numeric in G1772 / R1772C7: got '#N/A'Expecting numeric in B1773 / R1773C2: got '#N/A'Expecting numeric in E1773 / R1773C5: got '#N/A'Expecting numeric in G1773 / R1773C7: got '#N/A'Expecting numeric in B1774 / R1774C2: got '#N/A'Expecting numeric in E1774 / R1774C5: got '#N/A'Expecting numeric in G1774 / R1774C7: got '#N/A'Expecting numeric in B1775 / R1775C2: got '#N/A'Expecting numeric in E1775 / R1775C5: got '#N/A'Expecting numeric in G1775 / R1775C7: got '#N/A'Expecting numeric in B1776 / R1776C2: got '#N/A'Expecting numeric in E1776 / R1776C5: got '#N/A'Expecting numeric in G1776 / R1776C7: got '#N/A'Expecting numeric in B1777 / R1777C2: got '#N/A'Expecting numeric in E1777 / R1777C5: got '#N/A'Expecting numeric in G1777 / R1777C7: got '#N/A'Expecting numeric in B1778 / R1778C2: got '#N/A'Expecting numeric in E1778 / R1778C5: got '#N/A'Expecting numeric in G1778 / R1778C7: got '#N/A'Expecting numeric in B1779 / R1779C2: got '#N/A'Expecting numeric in E1779 / R1779C5: got '#N/A'Expecting numeric in G1779 / R1779C7: got '#N/A'Expecting numeric in B1780 / R1780C2: got '#N/A'Expecting numeric in E1780 / R1780C5: got '#N/A'Expecting numeric in G1780 / R1780C7: got '#N/A'Expecting numeric in B1781 / R1781C2: got '#N/A'Expecting numeric in E1781 / R1781C5: got '#N/A'Expecting numeric in G1781 / R1781C7: got '#N/A'Expecting numeric in B1782 / R1782C2: got '#N/A'Expecting numeric in E1782 / R1782C5: got '#N/A'Expecting numeric in G1782 / R1782C7: got '#N/A'Expecting numeric in B1783 / R1783C2: got '#N/A'Expecting numeric in E1783 / R1783C5: got '#N/A'Expecting numeric in G1783 / R1783C7: got '#N/A'Expecting numeric in B1784 / R1784C2: got '#N/A'Expecting numeric in E1784 / R1784C5: got '#N/A'Expecting numeric in G1784 / R1784C7: got '#N/A'Expecting numeric in B1785 / R1785C2: got '#N/A'Expecting numeric in E1785 / R1785C5: got '#N/A'Expecting numeric in G1785 / R1785C7: got '#N/A'Expecting numeric in B1786 / R1786C2: got '#N/A'Expecting numeric in E1786 / R1786C5: got '#N/A'Expecting numeric in G1786 / R1786C7: got '#N/A'Expecting numeric in B1787 / R1787C2: got '#N/A'Expecting numeric in E1787 / R1787C5: got '#N/A'Expecting numeric in G1787 / R1787C7: got '#N/A'Expecting numeric in B1788 / R1788C2: got '#N/A'Expecting numeric in E1788 / R1788C5: got '#N/A'Expecting numeric in G1788 / R1788C7: got '#N/A'Expecting numeric in B1789 / R1789C2: got '#N/A'Expecting numeric in E1789 / R1789C5: got '#N/A'Expecting numeric in G1789 / R1789C7: got '#N/A'Expecting numeric in B1790 / R1790C2: got '#N/A'Expecting numeric in E1790 / R1790C5: got '#N/A'Expecting numeric in G1790 / R1790C7: got '#N/A'Expecting numeric in B1791 / R1791C2: got '#N/A'Expecting numeric in E1791 / R1791C5: got '#N/A'Expecting numeric in G1791 / R1791C7: got '#N/A'Expecting numeric in B1792 / R1792C2: got '#N/A'Expecting numeric in E1792 / R1792C5: got '#N/A'Expecting numeric in G1792 / R1792C7: got '#N/A'Expecting numeric in B1793 / R1793C2: got '#N/A'Expecting numeric in E1793 / R1793C5: got '#N/A'Expecting numeric in G1793 / R1793C7: got '#N/A'Expecting numeric in B1794 / R1794C2: got '#N/A'Expecting numeric in E1794 / R1794C5: got '#N/A'Expecting numeric in G1794 / R1794C7: got '#N/A'Expecting numeric in B1795 / R1795C2: got '#N/A'Expecting numeric in E1795 / R1795C5: got '#N/A'Expecting numeric in G1795 / R1795C7: got '#N/A'Expecting numeric in B1796 / R1796C2: got '#N/A'Expecting numeric in E1796 / R1796C5: got '#N/A'Expecting numeric in G1796 / R1796C7: got '#N/A'Expecting numeric in B1797 / R1797C2: got '#N/A'Expecting numeric in E1797 / R1797C5: got '#N/A'Expecting numeric in G1797 / R1797C7: got '#N/A'Expecting numeric in B1798 / R1798C2: got '#N/A'Expecting numeric in E1798 / R1798C5: got '#N/A'Expecting numeric in G1798 / R1798C7: got '#N/A'Expecting numeric in B1799 / R1799C2: got '#N/A'Expecting numeric in E1799 / R1799C5: got '#N/A'Expecting numeric in G1799 / R1799C7: got '#N/A'Expecting numeric in B1800 / R1800C2: got '#N/A'Expecting numeric in E1800 / R1800C5: got '#N/A'Expecting numeric in G1800 / R1800C7: got '#N/A'Expecting numeric in B1801 / R1801C2: got '#N/A'Expecting numeric in E1801 / R1801C5: got '#N/A'Expecting numeric in G1801 / R1801C7: got '#N/A'Expecting numeric in B1802 / R1802C2: got '#N/A'Expecting numeric in E1802 / R1802C5: got '#N/A'Expecting numeric in G1802 / R1802C7: got '#N/A'Expecting numeric in B1803 / R1803C2: got '#N/A'Expecting numeric in E1803 / R1803C5: got '#N/A'Expecting numeric in G1803 / R1803C7: got '#N/A'Expecting numeric in B1804 / R1804C2: got '#N/A'Expecting numeric in E1804 / R1804C5: got '#N/A'Expecting numeric in G1804 / R1804C7: got '#N/A'Expecting numeric in B1805 / R1805C2: got '#N/A'Expecting numeric in E1805 / R1805C5: got '#N/A'Expecting numeric in G1805 / R1805C7: got '#N/A'Expecting numeric in B1806 / R1806C2: got '#N/A'Expecting numeric in E1806 / R1806C5: got '#N/A'Expecting numeric in G1806 / R1806C7: got '#N/A'Expecting numeric in B1807 / R1807C2: got '#N/A'Expecting numeric in E1807 / R1807C5: got '#N/A'Expecting numeric in G1807 / R1807C7: got '#N/A'Expecting numeric in B1808 / R1808C2: got '#N/A'Expecting numeric in E1808 / R1808C5: got '#N/A'Expecting numeric in G1808 / R1808C7: got '#N/A'Expecting numeric in B1809 / R1809C2: got '#N/A'Expecting numeric in E1809 / R1809C5: got '#N/A'Expecting numeric in G1809 / R1809C7: got '#N/A'Expecting numeric in B1810 / R1810C2: got '#N/A'Expecting numeric in E1810 / R1810C5: got '#N/A'Expecting numeric in G1810 / R1810C7: got '#N/A'Expecting numeric in B1811 / R1811C2: got '#N/A'Expecting numeric in E1811 / R1811C5: got '#N/A'Expecting numeric in G1811 / R1811C7: got '#N/A'Expecting numeric in B1812 / R1812C2: got '#N/A'Expecting numeric in E1812 / R1812C5: got '#N/A'Expecting numeric in G1812 / R1812C7: got '#N/A'Expecting numeric in B1813 / R1813C2: got '#N/A'Expecting numeric in E1813 / R1813C5: got '#N/A'Expecting numeric in G1813 / R1813C7: got '#N/A'Expecting numeric in B1814 / R1814C2: got '#N/A'Expecting numeric in E1814 / R1814C5: got '#N/A'Expecting numeric in G1814 / R1814C7: got '#N/A'Expecting numeric in B1815 / R1815C2: got '#N/A'Expecting numeric in E1815 / R1815C5: got '#N/A'Expecting numeric in G1815 / R1815C7: got '#N/A'Expecting numeric in B1816 / R1816C2: got '#N/A'Expecting numeric in E1816 / R1816C5: got '#N/A'Expecting numeric in G1816 / R1816C7: got '#N/A'Expecting numeric in B1817 / R1817C2: got '#N/A'Expecting numeric in E1817 / R1817C5: got '#N/A'Expecting numeric in G1817 / R1817C7: got '#N/A'Expecting numeric in B1818 / R1818C2: got '#N/A'Expecting numeric in E1818 / R1818C5: got '#N/A'Expecting numeric in G1818 / R1818C7: got '#N/A'Expecting numeric in B1819 / R1819C2: got '#N/A'Expecting numeric in E1819 / R1819C5: got '#N/A'Expecting numeric in G1819 / R1819C7: got '#N/A'Expecting numeric in B1820 / R1820C2: got '#N/A'Expecting numeric in E1820 / R1820C5: got '#N/A'Expecting numeric in G1820 / R1820C7: got '#N/A'Expecting numeric in B1821 / R1821C2: got '#N/A'Expecting numeric in E1821 / R1821C5: got '#N/A'Expecting numeric in G1821 / R1821C7: got '#N/A'Expecting numeric in B1822 / R1822C2: got '#N/A'Expecting numeric in E1822 / R1822C5: got '#N/A'Expecting numeric in G1822 / R1822C7: got '#N/A'Expecting numeric in B1823 / R1823C2: got '#N/A'Expecting numeric in E1823 / R1823C5: got '#N/A'Expecting numeric in G1823 / R1823C7: got '#N/A'Expecting numeric in B1824 / R1824C2: got '#N/A'Expecting numeric in E1824 / R1824C5: got '#N/A'Expecting numeric in G1824 / R1824C7: got '#N/A'Expecting numeric in B1825 / R1825C2: got '#N/A'Expecting numeric in E1825 / R1825C5: got '#N/A'Expecting numeric in G1825 / R1825C7: got '#N/A'Expecting numeric in B1826 / R1826C2: got '#N/A'Expecting numeric in E1826 / R1826C5: got '#N/A'Expecting numeric in G1826 / R1826C7: got '#N/A'Expecting numeric in B1827 / R1827C2: got '#N/A'Expecting numeric in E1827 / R1827C5: got '#N/A'Expecting numeric in G1827 / R1827C7: got '#N/A'Expecting numeric in B1828 / R1828C2: got '#N/A'Expecting numeric in E1828 / R1828C5: got '#N/A'Expecting numeric in G1828 / R1828C7: got '#N/A'Expecting numeric in B1829 / R1829C2: got '#N/A'Expecting numeric in E1829 / R1829C5: got '#N/A'Expecting numeric in G1829 / R1829C7: got '#N/A'Expecting numeric in B1830 / R1830C2: got '#N/A'Expecting numeric in E1830 / R1830C5: got '#N/A'Expecting numeric in G1830 / R1830C7: got '#N/A'Expecting numeric in B1831 / R1831C2: got '#N/A'Expecting numeric in E1831 / R1831C5: got '#N/A'Expecting numeric in G1831 / R1831C7: got '#N/A'Expecting numeric in B1832 / R1832C2: got '#N/A'Expecting numeric in E1832 / R1832C5: got '#N/A'Expecting numeric in G1832 / R1832C7: got '#N/A'Expecting numeric in B1833 / R1833C2: got '#N/A'Expecting numeric in E1833 / R1833C5: got '#N/A'Expecting numeric in G1833 / R1833C7: got '#N/A'Expecting numeric in B1834 / R1834C2: got '#N/A'Expecting numeric in E1834 / R1834C5: got '#N/A'Expecting numeric in G1834 / R1834C7: got '#N/A'Expecting numeric in B1835 / R1835C2: got '#N/A'Expecting numeric in E1835 / R1835C5: got '#N/A'Expecting numeric in G1835 / R1835C7: got '#N/A'Expecting numeric in B1836 / R1836C2: got '#N/A'Expecting numeric in E1836 / R1836C5: got '#N/A'Expecting numeric in G1836 / R1836C7: got '#N/A'Expecting numeric in B1837 / R1837C2: got '#N/A'Expecting numeric in E1837 / R1837C5: got '#N/A'Expecting numeric in G1837 / R1837C7: got '#N/A'Expecting numeric in B1838 / R1838C2: got '#N/A'Expecting numeric in E1838 / R1838C5: got '#N/A'Expecting numeric in G1838 / R1838C7: got '#N/A'Expecting numeric in B1839 / R1839C2: got '#N/A'Expecting numeric in E1839 / R1839C5: got '#N/A'Expecting numeric in G1839 / R1839C7: got '#N/A'Expecting numeric in B1840 / R1840C2: got '#N/A'Expecting numeric in E1840 / R1840C5: got '#N/A'Expecting numeric in G1840 / R1840C7: got '#N/A'Expecting numeric in B1841 / R1841C2: got '#N/A'Expecting numeric in E1841 / R1841C5: got '#N/A'Expecting numeric in G1841 / R1841C7: got '#N/A'Expecting numeric in B1842 / R1842C2: got '#N/A'Expecting numeric in E1842 / R1842C5: got '#N/A'Expecting numeric in G1842 / R1842C7: got '#N/A'Expecting numeric in B1843 / R1843C2: got '#N/A'Expecting numeric in E1843 / R1843C5: got '#N/A'Expecting numeric in G1843 / R1843C7: got '#N/A'Expecting numeric in B1844 / R1844C2: got '#N/A'Expecting numeric in E1844 / R1844C5: got '#N/A'Expecting numeric in G1844 / R1844C7: got '#N/A'Expecting numeric in B1845 / R1845C2: got '#N/A'Expecting numeric in E1845 / R1845C5: got '#N/A'Expecting numeric in G1845 / R1845C7: got '#N/A'Expecting numeric in B1846 / R1846C2: got '#N/A'Expecting numeric in E1846 / R1846C5: got '#N/A'Expecting numeric in G1846 / R1846C7: got '#N/A'Expecting numeric in B1847 / R1847C2: got '#N/A'Expecting numeric in E1847 / R1847C5: got '#N/A'Expecting numeric in G1847 / R1847C7: got '#N/A'Expecting numeric in B1848 / R1848C2: got '#N/A'Expecting numeric in E1848 / R1848C5: got '#N/A'Expecting numeric in G1848 / R1848C7: got '#N/A'Expecting numeric in B1849 / R1849C2: got '#N/A'Expecting numeric in E1849 / R1849C5: got '#N/A'Expecting numeric in G1849 / R1849C7: got '#N/A'Expecting numeric in B1850 / R1850C2: got '#N/A'Expecting numeric in E1850 / R1850C5: got '#N/A'Expecting numeric in G1850 / R1850C7: got '#N/A'Expecting numeric in B1851 / R1851C2: got '#N/A'Expecting numeric in E1851 / R1851C5: got '#N/A'Expecting numeric in G1851 / R1851C7: got '#N/A'Expecting numeric in B1852 / R1852C2: got '#N/A'Expecting numeric in E1852 / R1852C5: got '#N/A'Expecting numeric in G1852 / R1852C7: got '#N/A'Expecting numeric in B1853 / R1853C2: got '#N/A'Expecting numeric in E1853 / R1853C5: got '#N/A'Expecting numeric in G1853 / R1853C7: got '#N/A'Expecting numeric in B1854 / R1854C2: got '#N/A'Expecting numeric in E1854 / R1854C5: got '#N/A'Expecting numeric in G1854 / R1854C7: got '#N/A'Expecting numeric in B1855 / R1855C2: got '#N/A'Expecting numeric in E1855 / R1855C5: got '#N/A'Expecting numeric in G1855 / R1855C7: got '#N/A'Expecting numeric in B1856 / R1856C2: got '#N/A'Expecting numeric in E1856 / R1856C5: got '#N/A'Expecting numeric in G1856 / R1856C7: got '#N/A'Expecting numeric in B1857 / R1857C2: got '#N/A'Expecting numeric in E1857 / R1857C5: got '#N/A'Expecting numeric in G1857 / R1857C7: got '#N/A'Expecting numeric in B1858 / R1858C2: got '#N/A'Expecting numeric in E1858 / R1858C5: got '#N/A'Expecting numeric in G1858 / R1858C7: got '#N/A'Expecting numeric in B1859 / R1859C2: got '#N/A'Expecting numeric in E1859 / R1859C5: got '#N/A'Expecting numeric in G1859 / R1859C7: got '#N/A'Expecting numeric in B1860 / R1860C2: got '#N/A'Expecting numeric in E1860 / R1860C5: got '#N/A'Expecting numeric in G1860 / R1860C7: got '#N/A'Expecting numeric in B1861 / R1861C2: got '#N/A'Expecting numeric in E1861 / R1861C5: got '#N/A'Expecting numeric in G1861 / R1861C7: got '#N/A'Expecting numeric in B1862 / R1862C2: got '#N/A'Expecting numeric in E1862 / R1862C5: got '#N/A'Expecting numeric in G1862 / R1862C7: got '#N/A'Expecting numeric in B1863 / R1863C2: got '#N/A'Expecting numeric in E1863 / R1863C5: got '#N/A'Expecting numeric in G1863 / R1863C7: got '#N/A'Expecting numeric in B1864 / R1864C2: got '#N/A'Expecting numeric in E1864 / R1864C5: got '#N/A'Expecting numeric in G1864 / R1864C7: got '#N/A'Expecting numeric in B1865 / R1865C2: got '#N/A'Expecting numeric in E1865 / R1865C5: got '#N/A'Expecting numeric in G1865 / R1865C7: got '#N/A'Expecting numeric in B1866 / R1866C2: got '#N/A'Expecting numeric in E1866 / R1866C5: got '#N/A'Expecting numeric in G1866 / R1866C7: got '#N/A'Expecting numeric in B1867 / R1867C2: got '#N/A'Expecting numeric in E1867 / R1867C5: got '#N/A'Expecting numeric in G1867 / R1867C7: got '#N/A'Expecting numeric in B1868 / R1868C2: got '#N/A'Expecting numeric in E1868 / R1868C5: got '#N/A'Expecting numeric in G1868 / R1868C7: got '#N/A'Expecting numeric in B1869 / R1869C2: got '#N/A'Expecting numeric in E1869 / R1869C5: got '#N/A'Expecting numeric in G1869 / R1869C7: got '#N/A'Expecting numeric in B1870 / R1870C2: got '#N/A'Expecting numeric in E1870 / R1870C5: got '#N/A'Expecting numeric in G1870 / R1870C7: got '#N/A'Expecting numeric in B1871 / R1871C2: got '#N/A'Expecting numeric in E1871 / R1871C5: got '#N/A'Expecting numeric in G1871 / R1871C7: got '#N/A'Expecting numeric in B1872 / R1872C2: got '#N/A'Expecting numeric in E1872 / R1872C5: got '#N/A'Expecting numeric in G1872 / R1872C7: got '#N/A'Expecting numeric in B1873 / R1873C2: got '#N/A'Expecting numeric in E1873 / R1873C5: got '#N/A'Expecting numeric in G1873 / R1873C7: got '#N/A'Expecting numeric in B1874 / R1874C2: got '#N/A'Expecting numeric in E1874 / R1874C5: got '#N/A'Expecting numeric in G1874 / R1874C7: got '#N/A'Expecting numeric in B1875 / R1875C2: got '#N/A'Expecting numeric in E1875 / R1875C5: got '#N/A'Expecting numeric in G1875 / R1875C7: got '#N/A'Expecting numeric in B1876 / R1876C2: got '#N/A'Expecting numeric in E1876 / R1876C5: got '#N/A'Expecting numeric in G1876 / R1876C7: got '#N/A'Expecting numeric in B1877 / R1877C2: got '#N/A'Expecting numeric in E1877 / R1877C5: got '#N/A'Expecting numeric in G1877 / R1877C7: got '#N/A'Expecting numeric in B1878 / R1878C2: got '#N/A'Expecting numeric in E1878 / R1878C5: got '#N/A'Expecting numeric in G1878 / R1878C7: got '#N/A'Expecting numeric in B1879 / R1879C2: got '#N/A'Expecting numeric in E1879 / R1879C5: got '#N/A'Expecting numeric in G1879 / R1879C7: got '#N/A'Expecting numeric in B1880 / R1880C2: got '#N/A'Expecting numeric in E1880 / R1880C5: got '#N/A'Expecting numeric in G1880 / R1880C7: got '#N/A'Expecting numeric in B1881 / R1881C2: got '#N/A'Expecting numeric in E1881 / R1881C5: got '#N/A'Expecting numeric in G1881 / R1881C7: got '#N/A'Expecting numeric in B1882 / R1882C2: got '#N/A'Expecting numeric in E1882 / R1882C5: got '#N/A'Expecting numeric in G1882 / R1882C7: got '#N/A'Expecting numeric in B1883 / R1883C2: got '#N/A'Expecting numeric in E1883 / R1883C5: got '#N/A'Expecting numeric in G1883 / R1883C7: got '#N/A'Expecting numeric in B1884 / R1884C2: got '#N/A'Expecting numeric in E1884 / R1884C5: got '#N/A'Expecting numeric in G1884 / R1884C7: got '#N/A'Expecting numeric in B1885 / R1885C2: got '#N/A'Expecting numeric in E1885 / R1885C5: got '#N/A'Expecting numeric in G1885 / R1885C7: got '#N/A'Expecting numeric in B1886 / R1886C2: got '#N/A'Expecting numeric in E1886 / R1886C5: got '#N/A'Expecting numeric in G1886 / R1886C7: got '#N/A'Expecting numeric in B1887 / R1887C2: got '#N/A'Expecting numeric in E1887 / R1887C5: got '#N/A'Expecting numeric in G1887 / R1887C7: got '#N/A'Expecting numeric in B1888 / R1888C2: got '#N/A'Expecting numeric in E1888 / R1888C5: got '#N/A'Expecting numeric in G1888 / R1888C7: got '#N/A'Expecting numeric in B1889 / R1889C2: got '#N/A'Expecting numeric in E1889 / R1889C5: got '#N/A'Expecting numeric in G1889 / R1889C7: got '#N/A'Expecting numeric in B1890 / R1890C2: got '#N/A'Expecting numeric in E1890 / R1890C5: got '#N/A'Expecting numeric in G1890 / R1890C7: got '#N/A'Expecting numeric in B1891 / R1891C2: got '#N/A'Expecting numeric in E1891 / R1891C5: got '#N/A'Expecting numeric in G1891 / R1891C7: got '#N/A'Expecting numeric in B1892 / R1892C2: got '#N/A'Expecting numeric in E1892 / R1892C5: got '#N/A'Expecting numeric in G1892 / R1892C7: got '#N/A'Expecting numeric in B1893 / R1893C2: got '#N/A'Expecting numeric in E1893 / R1893C5: got '#N/A'Expecting numeric in G1893 / R1893C7: got '#N/A'Expecting numeric in B1894 / R1894C2: got '#N/A'Expecting numeric in E1894 / R1894C5: got '#N/A'Expecting numeric in G1894 / R1894C7: got '#N/A'Expecting numeric in B1895 / R1895C2: got '#N/A'Expecting numeric in E1895 / R1895C5: got '#N/A'Expecting numeric in G1895 / R1895C7: got '#N/A'Expecting numeric in B1896 / R1896C2: got '#N/A'Expecting numeric in E1896 / R1896C5: got '#N/A'Expecting numeric in G1896 / R1896C7: got '#N/A'Expecting numeric in B1897 / R1897C2: got '#N/A'Expecting numeric in E1897 / R1897C5: got '#N/A'Expecting numeric in G1897 / R1897C7: got '#N/A'Expecting numeric in B1898 / R1898C2: got '#N/A'Expecting numeric in E1898 / R1898C5: got '#N/A'Expecting numeric in G1898 / R1898C7: got '#N/A'Expecting numeric in B1899 / R1899C2: got '#N/A'Expecting numeric in E1899 / R1899C5: got '#N/A'Expecting numeric in G1899 / R1899C7: got '#N/A'Expecting numeric in B1900 / R1900C2: got '#N/A'Expecting numeric in E1900 / R1900C5: got '#N/A'Expecting numeric in G1900 / R1900C7: got '#N/A'Expecting numeric in B1901 / R1901C2: got '#N/A'Expecting numeric in E1901 / R1901C5: got '#N/A'Expecting numeric in G1901 / R1901C7: got '#N/A'Expecting numeric in B1902 / R1902C2: got '#N/A'Expecting numeric in E1902 / R1902C5: got '#N/A'Expecting numeric in G1902 / R1902C7: got '#N/A'Expecting numeric in B1903 / R1903C2: got '#N/A'Expecting numeric in E1903 / R1903C5: got '#N/A'Expecting numeric in G1903 / R1903C7: got '#N/A'Expecting numeric in B1904 / R1904C2: got '#N/A'Expecting numeric in E1904 / R1904C5: got '#N/A'Expecting numeric in G1904 / R1904C7: got '#N/A'Expecting numeric in B1905 / R1905C2: got '#N/A'Expecting numeric in E1905 / R1905C5: got '#N/A'Expecting numeric in G1905 / R1905C7: got '#N/A'Expecting numeric in B1906 / R1906C2: got '#N/A'Expecting numeric in E1906 / R1906C5: got '#N/A'Expecting numeric in G1906 / R1906C7: got '#N/A'Expecting numeric in B1907 / R1907C2: got '#N/A'Expecting numeric in E1907 / R1907C5: got '#N/A'Expecting numeric in G1907 / R1907C7: got '#N/A'Expecting numeric in B1908 / R1908C2: got '#N/A'Expecting numeric in E1908 / R1908C5: got '#N/A'Expecting numeric in G1908 / R1908C7: got '#N/A'Expecting numeric in B1909 / R1909C2: got '#N/A'Expecting numeric in E1909 / R1909C5: got '#N/A'Expecting numeric in G1909 / R1909C7: got '#N/A'Expecting numeric in B1910 / R1910C2: got '#N/A'Expecting numeric in E1910 / R1910C5: got '#N/A'Expecting numeric in G1910 / R1910C7: got '#N/A'Expecting numeric in B1911 / R1911C2: got '#N/A'Expecting numeric in E1911 / R1911C5: got '#N/A'Expecting numeric in G1911 / R1911C7: got '#N/A'Expecting numeric in B1912 / R1912C2: got '#N/A'Expecting numeric in E1912 / R1912C5: got '#N/A'Expecting numeric in G1912 / R1912C7: got '#N/A'Expecting numeric in B1913 / R1913C2: got '#N/A'Expecting numeric in E1913 / R1913C5: got '#N/A'Expecting numeric in G1913 / R1913C7: got '#N/A'Expecting numeric in B1914 / R1914C2: got '#N/A'Expecting numeric in E1914 / R1914C5: got '#N/A'Expecting numeric in G1914 / R1914C7: got '#N/A'Expecting numeric in B1915 / R1915C2: got '#N/A'Expecting numeric in E1915 / R1915C5: got '#N/A'Expecting numeric in G1915 / R1915C7: got '#N/A'Expecting numeric in B1916 / R1916C2: got '#N/A'Expecting numeric in E1916 / R1916C5: got '#N/A'Expecting numeric in G1916 / R1916C7: got '#N/A'Expecting numeric in B1917 / R1917C2: got '#N/A'Expecting numeric in E1917 / R1917C5: got '#N/A'Expecting numeric in G1917 / R1917C7: got '#N/A'Expecting numeric in B1918 / R1918C2: got '#N/A'Expecting numeric in E1918 / R1918C5: got '#N/A'Expecting numeric in G1918 / R1918C7: got '#N/A'Expecting numeric in B1919 / R1919C2: got '#N/A'Expecting numeric in E1919 / R1919C5: got '#N/A'Expecting numeric in G1919 / R1919C7: got '#N/A'Expecting numeric in B1920 / R1920C2: got '#N/A'Expecting numeric in E1920 / R1920C5: got '#N/A'Expecting numeric in G1920 / R1920C7: got '#N/A'Expecting numeric in B1921 / R1921C2: got '#N/A'Expecting numeric in E1921 / R1921C5: got '#N/A'Expecting numeric in G1921 / R1921C7: got '#N/A'Expecting numeric in B1922 / R1922C2: got '#N/A'Expecting numeric in E1922 / R1922C5: got '#N/A'Expecting numeric in G1922 / R1922C7: got '#N/A'Expecting numeric in B1923 / R1923C2: got '#N/A'Expecting numeric in E1923 / R1923C5: got '#N/A'Expecting numeric in G1923 / R1923C7: got '#N/A'Expecting numeric in B1924 / R1924C2: got '#N/A'Expecting numeric in E1924 / R1924C5: got '#N/A'Expecting numeric in G1924 / R1924C7: got '#N/A'Expecting numeric in B1925 / R1925C2: got '#N/A'Expecting numeric in E1925 / R1925C5: got '#N/A'Expecting numeric in G1925 / R1925C7: got '#N/A'Expecting numeric in B1926 / R1926C2: got '#N/A'Expecting numeric in E1926 / R1926C5: got '#N/A'Expecting numeric in G1926 / R1926C7: got '#N/A'Expecting numeric in B1927 / R1927C2: got '#N/A'Expecting numeric in E1927 / R1927C5: got '#N/A'Expecting numeric in G1927 / R1927C7: got '#N/A'Expecting numeric in B1928 / R1928C2: got '#N/A'Expecting numeric in E1928 / R1928C5: got '#N/A'Expecting numeric in G1928 / R1928C7: got '#N/A'Expecting numeric in B1929 / R1929C2: got '#N/A'Expecting numeric in E1929 / R1929C5: got '#N/A'Expecting numeric in G1929 / R1929C7: got '#N/A'Expecting numeric in B1930 / R1930C2: got '#N/A'Expecting numeric in E1930 / R1930C5: got '#N/A'Expecting numeric in G1930 / R1930C7: got '#N/A'Expecting numeric in B1931 / R1931C2: got '#N/A'Expecting numeric in E1931 / R1931C5: got '#N/A'Expecting numeric in G1931 / R1931C7: got '#N/A'Expecting numeric in B1932 / R1932C2: got '#N/A'Expecting numeric in E1932 / R1932C5: got '#N/A'Expecting numeric in G1932 / R1932C7: got '#N/A'Expecting numeric in B1933 / R1933C2: got '#N/A'Expecting numeric in E1933 / R1933C5: got '#N/A'Expecting numeric in G1933 / R1933C7: got '#N/A'Expecting numeric in B1934 / R1934C2: got '#N/A'Expecting numeric in E1934 / R1934C5: got '#N/A'Expecting numeric in G1934 / R1934C7: got '#N/A'Expecting numeric in B1935 / R1935C2: got '#N/A'Expecting numeric in E1935 / R1935C5: got '#N/A'Expecting numeric in G1935 / R1935C7: got '#N/A'Expecting numeric in B1936 / R1936C2: got '#N/A'Expecting numeric in E1936 / R1936C5: got '#N/A'Expecting numeric in G1936 / R1936C7: got '#N/A'Expecting numeric in B1937 / R1937C2: got '#N/A'Expecting numeric in E1937 / R1937C5: got '#N/A'Expecting numeric in G1937 / R1937C7: got '#N/A'Expecting numeric in B1938 / R1938C2: got '#N/A'Expecting numeric in E1938 / R1938C5: got '#N/A'Expecting numeric in G1938 / R1938C7: got '#N/A'Expecting numeric in B1939 / R1939C2: got '#N/A'Expecting numeric in E1939 / R1939C5: got '#N/A'Expecting numeric in G1939 / R1939C7: got '#N/A'Expecting numeric in B1940 / R1940C2: got '#N/A'Expecting numeric in E1940 / R1940C5: got '#N/A'Expecting numeric in G1940 / R1940C7: got '#N/A'Expecting numeric in B1941 / R1941C2: got '#N/A'Expecting numeric in E1941 / R1941C5: got '#N/A'Expecting numeric in G1941 / R1941C7: got '#N/A'Expecting numeric in B1942 / R1942C2: got '#N/A'Expecting numeric in E1942 / R1942C5: got '#N/A'Expecting numeric in G1942 / R1942C7: got '#N/A'Expecting numeric in B1943 / R1943C2: got '#N/A'Expecting numeric in E1943 / R1943C5: got '#N/A'Expecting numeric in G1943 / R1943C7: got '#N/A'Expecting numeric in B1944 / R1944C2: got '#N/A'Expecting numeric in E1944 / R1944C5: got '#N/A'Expecting numeric in G1944 / R1944C7: got '#N/A'Expecting numeric in B1945 / R1945C2: got '#N/A'Expecting numeric in E1945 / R1945C5: got '#N/A'Expecting numeric in G1945 / R1945C7: got '#N/A'Expecting numeric in B1946 / R1946C2: got '#N/A'Expecting numeric in E1946 / R1946C5: got '#N/A'Expecting numeric in G1946 / R1946C7: got '#N/A'Expecting numeric in B1947 / R1947C2: got '#N/A'Expecting numeric in E1947 / R1947C5: got '#N/A'Expecting numeric in G1947 / R1947C7: got '#N/A'Expecting numeric in B1948 / R1948C2: got '#N/A'Expecting numeric in E1948 / R1948C5: got '#N/A'Expecting numeric in G1948 / R1948C7: got '#N/A'Expecting numeric in B1949 / R1949C2: got '#N/A'Expecting numeric in E1949 / R1949C5: got '#N/A'Expecting numeric in G1949 / R1949C7: got '#N/A'Expecting numeric in B1950 / R1950C2: got '#N/A'Expecting numeric in E1950 / R1950C5: got '#N/A'Expecting numeric in G1950 / R1950C7: got '#N/A'Expecting numeric in B1951 / R1951C2: got '#N/A'Expecting numeric in E1951 / R1951C5: got '#N/A'Expecting numeric in G1951 / R1951C7: got '#N/A'Expecting numeric in B1952 / R1952C2: got '#N/A'Expecting numeric in E1952 / R1952C5: got '#N/A'Expecting numeric in G1952 / R1952C7: got '#N/A'Expecting numeric in B1953 / R1953C2: got '#N/A'Expecting numeric in E1953 / R1953C5: got '#N/A'Expecting numeric in G1953 / R1953C7: got '#N/A'Expecting numeric in B1954 / R1954C2: got '#N/A'Expecting numeric in E1954 / R1954C5: got '#N/A'Expecting numeric in G1954 / R1954C7: got '#N/A'Expecting numeric in B1955 / R1955C2: got '#N/A'Expecting numeric in E1955 / R1955C5: got '#N/A'Expecting numeric in G1955 / R1955C7: got '#N/A'Expecting numeric in B1956 / R1956C2: got '#N/A'Expecting numeric in E1956 / R1956C5: got '#N/A'Expecting numeric in G1956 / R1956C7: got '#N/A'Expecting numeric in B1957 / R1957C2: got '#N/A'Expecting numeric in E1957 / R1957C5: got '#N/A'Expecting numeric in G1957 / R1957C7: got '#N/A'Expecting numeric in B1958 / R1958C2: got '#N/A'Expecting numeric in E1958 / R1958C5: got '#N/A'Expecting numeric in G1958 / R1958C7: got '#N/A'Expecting numeric in B1959 / R1959C2: got '#N/A'Expecting numeric in E1959 / R1959C5: got '#N/A'Expecting numeric in G1959 / R1959C7: got '#N/A'Expecting numeric in B1960 / R1960C2: got '#N/A'Expecting numeric in E1960 / R1960C5: got '#N/A'Expecting numeric in G1960 / R1960C7: got '#N/A'Expecting numeric in B1961 / R1961C2: got '#N/A'Expecting numeric in E1961 / R1961C5: got '#N/A'Expecting numeric in G1961 / R1961C7: got '#N/A'Expecting numeric in B1962 / R1962C2: got '#N/A'Expecting numeric in E1962 / R1962C5: got '#N/A'Expecting numeric in G1962 / R1962C7: got '#N/A'Expecting numeric in B1963 / R1963C2: got '#N/A'Expecting numeric in E1963 / R1963C5: got '#N/A'Expecting numeric in G1963 / R1963C7: got '#N/A'Expecting numeric in B1964 / R1964C2: got '#N/A'Expecting numeric in E1964 / R1964C5: got '#N/A'Expecting numeric in G1964 / R1964C7: got '#N/A'Expecting numeric in B1965 / R1965C2: got '#N/A'Expecting numeric in E1965 / R1965C5: got '#N/A'Expecting numeric in G1965 / R1965C7: got '#N/A'Expecting numeric in B1966 / R1966C2: got '#N/A'Expecting numeric in E1966 / R1966C5: got '#N/A'Expecting numeric in G1966 / R1966C7: got '#N/A'Expecting numeric in B1967 / R1967C2: got '#N/A'Expecting numeric in E1967 / R1967C5: got '#N/A'Expecting numeric in G1967 / R1967C7: got '#N/A'Expecting numeric in B1968 / R1968C2: got '#N/A'Expecting numeric in E1968 / R1968C5: got '#N/A'Expecting numeric in G1968 / R1968C7: got '#N/A'Expecting numeric in B1969 / R1969C2: got '#N/A'Expecting numeric in E1969 / R1969C5: got '#N/A'Expecting numeric in G1969 / R1969C7: got '#N/A'Expecting numeric in B1970 / R1970C2: got '#N/A'Expecting numeric in E1970 / R1970C5: got '#N/A'Expecting numeric in G1970 / R1970C7: got '#N/A'Expecting numeric in B1971 / R1971C2: got '#N/A'Expecting numeric in E1971 / R1971C5: got '#N/A'Expecting numeric in G1971 / R1971C7: got '#N/A'Expecting numeric in B1972 / R1972C2: got '#N/A'Expecting numeric in E1972 / R1972C5: got '#N/A'Expecting numeric in G1972 / R1972C7: got '#N/A'Expecting numeric in B1973 / R1973C2: got '#N/A'Expecting numeric in E1973 / R1973C5: got '#N/A'Expecting numeric in G1973 / R1973C7: got '#N/A'Expecting numeric in B1974 / R1974C2: got '#N/A'Expecting numeric in E1974 / R1974C5: got '#N/A'Expecting numeric in G1974 / R1974C7: got '#N/A'Expecting numeric in B1975 / R1975C2: got '#N/A'Expecting numeric in E1975 / R1975C5: got '#N/A'Expecting numeric in G1975 / R1975C7: got '#N/A'Expecting numeric in B1976 / R1976C2: got '#N/A'Expecting numeric in E1976 / R1976C5: got '#N/A'Expecting numeric in G1976 / R1976C7: got '#N/A'Expecting numeric in B1977 / R1977C2: got '#N/A'Expecting numeric in E1977 / R1977C5: got '#N/A'Expecting numeric in G1977 / R1977C7: got '#N/A'Expecting numeric in B1978 / R1978C2: got '#N/A'Expecting numeric in E1978 / R1978C5: got '#N/A'Expecting numeric in G1978 / R1978C7: got '#N/A'Expecting numeric in B1979 / R1979C2: got '#N/A'Expecting numeric in E1979 / R1979C5: got '#N/A'Expecting numeric in G1979 / R1979C7: got '#N/A'Expecting numeric in B1980 / R1980C2: got '#N/A'Expecting numeric in E1980 / R1980C5: got '#N/A'Expecting numeric in G1980 / R1980C7: got '#N/A'Expecting numeric in B1981 / R1981C2: got '#N/A'Expecting numeric in E1981 / R1981C5: got '#N/A'Expecting numeric in G1981 / R1981C7: got '#N/A'Expecting numeric in B1982 / R1982C2: got '#N/A'Expecting numeric in E1982 / R1982C5: got '#N/A'Expecting numeric in G1982 / R1982C7: got '#N/A'Expecting numeric in B1983 / R1983C2: got '#N/A'Expecting numeric in E1983 / R1983C5: got '#N/A'Expecting numeric in G1983 / R1983C7: got '#N/A'Expecting numeric in B1984 / R1984C2: got '#N/A'Expecting numeric in E1984 / R1984C5: got '#N/A'Expecting numeric in G1984 / R1984C7: got '#N/A'Expecting numeric in B1985 / R1985C2: got '#N/A'Expecting numeric in E1985 / R1985C5: got '#N/A'Expecting numeric in G1985 / R1985C7: got '#N/A'Expecting numeric in B1986 / R1986C2: got '#N/A'Expecting numeric in E1986 / R1986C5: got '#N/A'Expecting numeric in G1986 / R1986C7: got '#N/A'Expecting numeric in B1987 / R1987C2: got '#N/A'Expecting numeric in E1987 / R1987C5: got '#N/A'Expecting numeric in G1987 / R1987C7: got '#N/A'Expecting numeric in B1988 / R1988C2: got '#N/A'Expecting numeric in E1988 / R1988C5: got '#N/A'Expecting numeric in G1988 / R1988C7: got '#N/A'Expecting numeric in B1989 / R1989C2: got '#N/A'Expecting numeric in E1989 / R1989C5: got '#N/A'Expecting numeric in G1989 / R1989C7: got '#N/A'Expecting numeric in B1990 / R1990C2: got '#N/A'Expecting numeric in E1990 / R1990C5: got '#N/A'Expecting numeric in G1990 / R1990C7: got '#N/A'Expecting numeric in B1991 / R1991C2: got '#N/A'Expecting numeric in E1991 / R1991C5: got '#N/A'Expecting numeric in G1991 / R1991C7: got '#N/A'Expecting numeric in B1992 / R1992C2: got '#N/A'Expecting numeric in E1992 / R1992C5: got '#N/A'Expecting numeric in G1992 / R1992C7: got '#N/A'Expecting numeric in B1993 / R1993C2: got '#N/A'Expecting numeric in E1993 / R1993C5: got '#N/A'Expecting numeric in G1993 / R1993C7: got '#N/A'Expecting numeric in B1994 / R1994C2: got '#N/A'Expecting numeric in E1994 / R1994C5: got '#N/A'Expecting numeric in G1994 / R1994C7: got '#N/A'Expecting numeric in B1995 / R1995C2: got '#N/A'Expecting numeric in E1995 / R1995C5: got '#N/A'Expecting numeric in G1995 / R1995C7: got '#N/A'Expecting numeric in B1996 / R1996C2: got '#N/A'Expecting numeric in E1996 / R1996C5: got '#N/A'Expecting numeric in G1996 / R1996C7: got '#N/A'Expecting numeric in B1997 / R1997C2: got '#N/A'Expecting numeric in E1997 / R1997C5: got '#N/A'Expecting numeric in G1997 / R1997C7: got '#N/A'Expecting numeric in B1998 / R1998C2: got '#N/A'Expecting numeric in E1998 / R1998C5: got '#N/A'Expecting numeric in G1998 / R1998C7: got '#N/A'Expecting numeric in B1999 / R1999C2: got '#N/A'Expecting numeric in E1999 / R1999C5: got '#N/A'Expecting numeric in G1999 / R1999C7: got '#N/A'Expecting numeric in B2000 / R2000C2: got '#N/A'Expecting numeric in E2000 / R2000C5: got '#N/A'Expecting numeric in G2000 / R2000C7: got '#N/A'Expecting numeric in B2001 / R2001C2: got '#N/A'Expecting numeric in E2001 / R2001C5: got '#N/A'Expecting numeric in G2001 / R2001C7: got '#N/A'Expecting numeric in B2002 / R2002C2: got '#N/A'Expecting numeric in E2002 / R2002C5: got '#N/A'Expecting numeric in G2002 / R2002C7: got '#N/A'Expecting numeric in B2003 / R2003C2: got '#N/A'Expecting numeric in E2003 / R2003C5: got '#N/A'Expecting numeric in G2003 / R2003C7: got '#N/A'Expecting numeric in B2004 / R2004C2: got '#N/A'Expecting numeric in E2004 / R2004C5: got '#N/A'Expecting numeric in G2004 / R2004C7: got '#N/A'Expecting numeric in B2005 / R2005C2: got '#N/A'Expecting numeric in E2005 / R2005C5: got '#N/A'Expecting numeric in G2005 / R2005C7: got '#N/A'Expecting numeric in B2006 / R2006C2: got '#N/A'Expecting numeric in E2006 / R2006C5: got '#N/A'Expecting numeric in G2006 / R2006C7: got '#N/A'Expecting numeric in B2007 / R2007C2: got '#N/A'Expecting numeric in E2007 / R2007C5: got '#N/A'Expecting numeric in G2007 / R2007C7: got '#N/A'Expecting numeric in B2008 / R2008C2: got '#N/A'Expecting numeric in E2008 / R2008C5: got '#N/A'Expecting numeric in G2008 / R2008C7: got '#N/A'Expecting numeric in B2009 / R2009C2: got '#N/A'Expecting numeric in E2009 / R2009C5: got '#N/A'Expecting numeric in G2009 / R2009C7: got '#N/A'Expecting numeric in B2010 / R2010C2: got '#N/A'Expecting numeric in E2010 / R2010C5: got '#N/A'Expecting numeric in G2010 / R2010C7: got '#N/A'Expecting numeric in B2011 / R2011C2: got '#N/A'Expecting numeric in E2011 / R2011C5: got '#N/A'Expecting numeric in G2011 / R2011C7: got '#N/A'Expecting numeric in B2012 / R2012C2: got '#N/A'Expecting numeric in E2012 / R2012C5: got '#N/A'Expecting numeric in G2012 / R2012C7: got '#N/A'Expecting numeric in B2013 / R2013C2: got '#N/A'Expecting numeric in E2013 / R2013C5: got '#N/A'Expecting numeric in G2013 / R2013C7: got '#N/A'Expecting numeric in B2014 / R2014C2: got '#N/A'Expecting numeric in E2014 / R2014C5: got '#N/A'Expecting numeric in G2014 / R2014C7: got '#N/A'Expecting numeric in B2015 / R2015C2: got '#N/A'Expecting numeric in E2015 / R2015C5: got '#N/A'Expecting numeric in G2015 / R2015C7: got '#N/A'Expecting numeric in B2016 / R2016C2: got '#N/A'Expecting numeric in E2016 / R2016C5: got '#N/A'Expecting numeric in G2016 / R2016C7: got '#N/A'Expecting numeric in B2017 / R2017C2: got '#N/A'Expecting numeric in E2017 / R2017C5: got '#N/A'Expecting numeric in G2017 / R2017C7: got '#N/A'Expecting numeric in B2018 / R2018C2: got '#N/A'Expecting numeric in E2018 / R2018C5: got '#N/A'Expecting numeric in G2018 / R2018C7: got '#N/A'Expecting numeric in B2019 / R2019C2: got '#N/A'Expecting numeric in E2019 / R2019C5: got '#N/A'Expecting numeric in G2019 / R2019C7: got '#N/A'Expecting numeric in B2020 / R2020C2: got '#N/A'Expecting numeric in E2020 / R2020C5: got '#N/A'Expecting numeric in G2020 / R2020C7: got '#N/A'Expecting numeric in B2021 / R2021C2: got '#N/A'Expecting numeric in E2021 / R2021C5: got '#N/A'Expecting numeric in G2021 / R2021C7: got '#N/A'Expecting numeric in B2022 / R2022C2: got '#N/A'Expecting numeric in E2022 / R2022C5: got '#N/A'Expecting numeric in G2022 / R2022C7: got '#N/A'Expecting numeric in B2023 / R2023C2: got '#N/A'Expecting numeric in E2023 / R2023C5: got '#N/A'Expecting numeric in G2023 / R2023C7: got '#N/A'Expecting numeric in B2024 / R2024C2: got '#N/A'Expecting numeric in E2024 / R2024C5: got '#N/A'Expecting numeric in G2024 / R2024C7: got '#N/A'Expecting numeric in B2025 / R2025C2: got '#N/A'Expecting numeric in E2025 / R2025C5: got '#N/A'Expecting numeric in G2025 / R2025C7: got '#N/A'Expecting numeric in B2026 / R2026C2: got '#N/A'Expecting numeric in E2026 / R2026C5: got '#N/A'Expecting numeric in G2026 / R2026C7: got '#N/A'Expecting numeric in B2027 / R2027C2: got '#N/A'Expecting numeric in E2027 / R2027C5: got '#N/A'Expecting numeric in G2027 / R2027C7: got '#N/A'Expecting numeric in B2028 / R2028C2: got '#N/A'Expecting numeric in E2028 / R2028C5: got '#N/A'Expecting numeric in G2028 / R2028C7: got '#N/A'Expecting numeric in B2029 / R2029C2: got '#N/A'Expecting numeric in E2029 / R2029C5: got '#N/A'Expecting numeric in G2029 / R2029C7: got '#N/A'Expecting numeric in B2030 / R2030C2: got '#N/A'Expecting numeric in E2030 / R2030C5: got '#N/A'Expecting numeric in G2030 / R2030C7: got '#N/A'Expecting numeric in B2031 / R2031C2: got '#N/A'Expecting numeric in E2031 / R2031C5: got '#N/A'Expecting numeric in G2031 / R2031C7: got '#N/A'Expecting numeric in B2032 / R2032C2: got '#N/A'Expecting numeric in E2032 / R2032C5: got '#N/A'Expecting numeric in G2032 / R2032C7: got '#N/A'Expecting numeric in B2033 / R2033C2: got '#N/A'Expecting numeric in E2033 / R2033C5: got '#N/A'Expecting numeric in G2033 / R2033C7: got '#N/A'Expecting numeric in B2034 / R2034C2: got '#N/A'Expecting numeric in E2034 / R2034C5: got '#N/A'Expecting numeric in G2034 / R2034C7: got '#N/A'Expecting numeric in B2035 / R2035C2: got '#N/A'Expecting numeric in E2035 / R2035C5: got '#N/A'Expecting numeric in G2035 / R2035C7: got '#N/A'Expecting numeric in B2036 / R2036C2: got '#N/A'Expecting numeric in E2036 / R2036C5: got '#N/A'Expecting numeric in G2036 / R2036C7: got '#N/A'Expecting numeric in B2037 / R2037C2: got '#N/A'Expecting numeric in E2037 / R2037C5: got '#N/A'Expecting numeric in G2037 / R2037C7: got '#N/A'Expecting numeric in B2038 / R2038C2: got '#N/A'Expecting numeric in E2038 / R2038C5: got '#N/A'Expecting numeric in G2038 / R2038C7: got '#N/A'Expecting numeric in B2039 / R2039C2: got '#N/A'Expecting numeric in E2039 / R2039C5: got '#N/A'Expecting numeric in G2039 / R2039C7: got '#N/A'Expecting numeric in B2040 / R2040C2: got '#N/A'Expecting numeric in E2040 / R2040C5: got '#N/A'Expecting numeric in G2040 / R2040C7: got '#N/A'Expecting numeric in B2041 / R2041C2: got '#N/A'Expecting numeric in E2041 / R2041C5: got '#N/A'Expecting numeric in G2041 / R2041C7: got '#N/A'Expecting numeric in B2042 / R2042C2: got '#N/A'Expecting numeric in E2042 / R2042C5: got '#N/A'Expecting numeric in G2042 / R2042C7: got '#N/A'Expecting numeric in B2043 / R2043C2: got '#N/A'Expecting numeric in E2043 / R2043C5: got '#N/A'Expecting numeric in G2043 / R2043C7: got '#N/A'Expecting numeric in B2044 / R2044C2: got '#N/A'Expecting numeric in E2044 / R2044C5: got '#N/A'Expecting numeric in G2044 / R2044C7: got '#N/A'Expecting numeric in B2045 / R2045C2: got '#N/A'Expecting numeric in E2045 / R2045C5: got '#N/A'Expecting numeric in G2045 / R2045C7: got '#N/A'Expecting numeric in B2046 / R2046C2: got '#N/A'Expecting numeric in E2046 / R2046C5: got '#N/A'Expecting numeric in G2046 / R2046C7: got '#N/A'Expecting numeric in B2047 / R2047C2: got '#N/A'Expecting numeric in E2047 / R2047C5: got '#N/A'Expecting numeric in G2047 / R2047C7: got '#N/A'Expecting numeric in B2048 / R2048C2: got '#N/A'Expecting numeric in E2048 / R2048C5: got '#N/A'Expecting numeric in G2048 / R2048C7: got '#N/A'Expecting numeric in B2049 / R2049C2: got '#N/A'Expecting numeric in E2049 / R2049C5: got '#N/A'Expecting numeric in G2049 / R2049C7: got '#N/A'Expecting numeric in B2050 / R2050C2: got '#N/A'Expecting numeric in E2050 / R2050C5: got '#N/A'Expecting numeric in G2050 / R2050C7: got '#N/A'Expecting numeric in B2051 / R2051C2: got '#N/A'Expecting numeric in E2051 / R2051C5: got '#N/A'Expecting numeric in G2051 / R2051C7: got '#N/A'Expecting numeric in B2052 / R2052C2: got '#N/A'Expecting numeric in E2052 / R2052C5: got '#N/A'Expecting numeric in G2052 / R2052C7: got '#N/A'Expecting numeric in B2053 / R2053C2: got '#N/A'Expecting numeric in E2053 / R2053C5: got '#N/A'Expecting numeric in G2053 / R2053C7: got '#N/A'Expecting numeric in B2054 / R2054C2: got '#N/A'Expecting numeric in E2054 / R2054C5: got '#N/A'Expecting numeric in G2054 / R2054C7: got '#N/A'Expecting numeric in B2055 / R2055C2: got '#N/A'Expecting numeric in E2055 / R2055C5: got '#N/A'Expecting numeric in G2055 / R2055C7: got '#N/A'Expecting numeric in B2056 / R2056C2: got '#N/A'Expecting numeric in E2056 / R2056C5: got '#N/A'Expecting numeric in G2056 / R2056C7: got '#N/A'Expecting numeric in B2057 / R2057C2: got '#N/A'Expecting numeric in E2057 / R2057C5: got '#N/A'Expecting numeric in G2057 / R2057C7: got '#N/A'Expecting numeric in B2058 / R2058C2: got '#N/A'Expecting numeric in E2058 / R2058C5: got '#N/A'Expecting numeric in G2058 / R2058C7: got '#N/A'Expecting numeric in B2059 / R2059C2: got '#N/A'Expecting numeric in E2059 / R2059C5: got '#N/A'Expecting numeric in G2059 / R2059C7: got '#N/A'Expecting numeric in B2060 / R2060C2: got '#N/A'Expecting numeric in E2060 / R2060C5: got '#N/A'Expecting numeric in G2060 / R2060C7: got '#N/A'Expecting numeric in B2061 / R2061C2: got '#N/A'Expecting numeric in E2061 / R2061C5: got '#N/A'Expecting numeric in G2061 / R2061C7: got '#N/A'Expecting numeric in B2062 / R2062C2: got '#N/A'Expecting numeric in E2062 / R2062C5: got '#N/A'Expecting numeric in G2062 / R2062C7: got '#N/A'Expecting numeric in B2063 / R2063C2: got '#N/A'Expecting numeric in E2063 / R2063C5: got '#N/A'Expecting numeric in G2063 / R2063C7: got '#N/A'Expecting numeric in B2064 / R2064C2: got '#N/A'Expecting numeric in E2064 / R2064C5: got '#N/A'Expecting numeric in G2064 / R2064C7: got '#N/A'Expecting numeric in B2065 / R2065C2: got '#N/A'Expecting numeric in E2065 / R2065C5: got '#N/A'Expecting numeric in G2065 / R2065C7: got '#N/A'Expecting numeric in B2066 / R2066C2: got '#N/A'Expecting numeric in E2066 / R2066C5: got '#N/A'Expecting numeric in G2066 / R2066C7: got '#N/A'Expecting numeric in B2067 / R2067C2: got '#N/A'Expecting numeric in E2067 / R2067C5: got '#N/A'Expecting numeric in G2067 / R2067C7: got '#N/A'Expecting numeric in B2068 / R2068C2: got '#N/A'Expecting numeric in E2068 / R2068C5: got '#N/A'Expecting numeric in G2068 / R2068C7: got '#N/A'Expecting numeric in B2069 / R2069C2: got '#N/A'Expecting numeric in E2069 / R2069C5: got '#N/A'Expecting numeric in G2069 / R2069C7: got '#N/A'Expecting numeric in B2070 / R2070C2: got '#N/A'Expecting numeric in E2070 / R2070C5: got '#N/A'Expecting numeric in G2070 / R2070C7: got '#N/A'Expecting numeric in B2071 / R2071C2: got '#N/A'Expecting numeric in E2071 / R2071C5: got '#N/A'Expecting numeric in G2071 / R2071C7: got '#N/A'Expecting numeric in B2072 / R2072C2: got '#N/A'Expecting numeric in E2072 / R2072C5: got '#N/A'Expecting numeric in G2072 / R2072C7: got '#N/A'Expecting numeric in B2073 / R2073C2: got '#N/A'Expecting numeric in E2073 / R2073C5: got '#N/A'Expecting numeric in G2073 / R2073C7: got '#N/A'Expecting numeric in B2074 / R2074C2: got '#N/A'Expecting numeric in E2074 / R2074C5: got '#N/A'Expecting numeric in G2074 / R2074C7: got '#N/A'Expecting numeric in B2075 / R2075C2: got '#N/A'Expecting numeric in E2075 / R2075C5: got '#N/A'Expecting numeric in G2075 / R2075C7: got '#N/A'Expecting numeric in B2076 / R2076C2: got '#N/A'Expecting numeric in E2076 / R2076C5: got '#N/A'Expecting numeric in G2076 / R2076C7: got '#N/A'Expecting numeric in B2077 / R2077C2: got '#N/A'Expecting numeric in E2077 / R2077C5: got '#N/A'Expecting numeric in G2077 / R2077C7: got '#N/A'Expecting numeric in B2078 / R2078C2: got '#N/A'Expecting numeric in E2078 / R2078C5: got '#N/A'Expecting numeric in G2078 / R2078C7: got '#N/A'Expecting numeric in B2079 / R2079C2: got '#N/A'Expecting numeric in E2079 / R2079C5: got '#N/A'Expecting numeric in G2079 / R2079C7: got '#N/A'Expecting numeric in B2080 / R2080C2: got '#N/A'Expecting numeric in E2080 / R2080C5: got '#N/A'Expecting numeric in G2080 / R2080C7: got '#N/A'Expecting numeric in B2081 / R2081C2: got '#N/A'Expecting numeric in E2081 / R2081C5: got '#N/A'Expecting numeric in G2081 / R2081C7: got '#N/A'Expecting numeric in B2082 / R2082C2: got '#N/A'Expecting numeric in E2082 / R2082C5: got '#N/A'Expecting numeric in G2082 / R2082C7: got '#N/A'Expecting numeric in B2083 / R2083C2: got '#N/A'Expecting numeric in E2083 / R2083C5: got '#N/A'Expecting numeric in G2083 / R2083C7: got '#N/A'Expecting numeric in B2084 / R2084C2: got '#N/A'Expecting numeric in E2084 / R2084C5: got '#N/A'Expecting numeric in G2084 / R2084C7: got '#N/A'Expecting numeric in B2085 / R2085C2: got '#N/A'Expecting numeric in E2085 / R2085C5: got '#N/A'Expecting numeric in G2085 / R2085C7: got '#N/A'Expecting numeric in B2086 / R2086C2: got '#N/A'Expecting numeric in E2086 / R2086C5: got '#N/A'Expecting numeric in G2086 / R2086C7: got '#N/A'Expecting numeric in B2087 / R2087C2: got '#N/A'Expecting numeric in E2087 / R2087C5: got '#N/A'Expecting numeric in G2087 / R2087C7: got '#N/A'Expecting numeric in B2088 / R2088C2: got '#N/A'Expecting numeric in E2088 / R2088C5: got '#N/A'Expecting numeric in G2088 / R2088C7: got '#N/A'Expecting numeric in B2089 / R2089C2: got '#N/A'Expecting numeric in E2089 / R2089C5: got '#N/A'Expecting numeric in G2089 / R2089C7: got '#N/A'Expecting numeric in B2090 / R2090C2: got '#N/A'Expecting numeric in E2090 / R2090C5: got '#N/A'Expecting numeric in G2090 / R2090C7: got '#N/A'Expecting numeric in B2091 / R2091C2: got '#N/A'Expecting numeric in E2091 / R2091C5: got '#N/A'Expecting numeric in G2091 / R2091C7: got '#N/A'Expecting numeric in B2092 / R2092C2: got '#N/A'Expecting numeric in E2092 / R2092C5: got '#N/A'Expecting numeric in G2092 / R2092C7: got '#N/A'Expecting numeric in B2093 / R2093C2: got '#N/A'Expecting numeric in E2093 / R2093C5: got '#N/A'Expecting numeric in G2093 / R2093C7: got '#N/A'Expecting numeric in B2094 / R2094C2: got '#N/A'Expecting numeric in E2094 / R2094C5: got '#N/A'Expecting numeric in G2094 / R2094C7: got '#N/A'Expecting numeric in B2095 / R2095C2: got '#N/A'Expecting numeric in E2095 / R2095C5: got '#N/A'Expecting numeric in G2095 / R2095C7: got '#N/A'Expecting numeric in B2096 / R2096C2: got '#N/A'Expecting numeric in E2096 / R2096C5: got '#N/A'Expecting numeric in G2096 / R2096C7: got '#N/A'Expecting numeric in B2097 / R2097C2: got '#N/A'Expecting numeric in E2097 / R2097C5: got '#N/A'Expecting numeric in G2097 / R2097C7: got '#N/A'Expecting numeric in B2098 / R2098C2: got '#N/A'Expecting numeric in E2098 / R2098C5: got '#N/A'Expecting numeric in G2098 / R2098C7: got '#N/A'Expecting numeric in B2099 / R2099C2: got '#N/A'Expecting numeric in E2099 / R2099C5: got '#N/A'Expecting numeric in G2099 / R2099C7: got '#N/A'Expecting numeric in B2100 / R2100C2: got '#N/A'Expecting numeric in E2100 / R2100C5: got '#N/A'Expecting numeric in G2100 / R2100C7: got '#N/A'Expecting numeric in B2101 / R2101C2: got '#N/A'Expecting numeric in E2101 / R2101C5: got '#N/A'Expecting numeric in G2101 / R2101C7: got '#N/A'Expecting numeric in B2102 / R2102C2: got '#N/A'Expecting numeric in E2102 / R2102C5: got '#N/A'Expecting numeric in G2102 / R2102C7: got '#N/A'Expecting numeric in B2103 / R2103C2: got '#N/A'Expecting numeric in E2103 / R2103C5: got '#N/A'Expecting numeric in G2103 / R2103C7: got '#N/A'Expecting numeric in B2104 / R2104C2: got '#N/A'Expecting numeric in E2104 / R2104C5: got '#N/A'Expecting numeric in G2104 / R2104C7: got '#N/A'Expecting numeric in B2105 / R2105C2: got '#N/A'Expecting numeric in E2105 / R2105C5: got '#N/A'Expecting numeric in G2105 / R2105C7: got '#N/A'Expecting numeric in B2106 / R2106C2: got '#N/A'Expecting numeric in E2106 / R2106C5: got '#N/A'Expecting numeric in G2106 / R2106C7: got '#N/A'Expecting numeric in B2107 / R2107C2: got '#N/A'Expecting numeric in E2107 / R2107C5: got '#N/A'Expecting numeric in G2107 / R2107C7: got '#N/A'Expecting numeric in B2108 / R2108C2: got '#N/A'Expecting numeric in E2108 / R2108C5: got '#N/A'Expecting numeric in G2108 / R2108C7: got '#N/A'Expecting numeric in B2109 / R2109C2: got '#N/A'Expecting numeric in E2109 / R2109C5: got '#N/A'Expecting numeric in G2109 / R2109C7: got '#N/A'Expecting numeric in B2110 / R2110C2: got '#N/A'Expecting numeric in E2110 / R2110C5: got '#N/A'Expecting numeric in G2110 / R2110C7: got '#N/A'Expecting numeric in B2111 / R2111C2: got '#N/A'Expecting numeric in E2111 / R2111C5: got '#N/A'Expecting numeric in G2111 / R2111C7: got '#N/A'Expecting numeric in B2112 / R2112C2: got '#N/A'Expecting numeric in E2112 / R2112C5: got '#N/A'Expecting numeric in G2112 / R2112C7: got '#N/A'Expecting numeric in B2113 / R2113C2: got '#N/A'Expecting numeric in E2113 / R2113C5: got '#N/A'Expecting numeric in G2113 / R2113C7: got '#N/A'Expecting numeric in B2114 / R2114C2: got '#N/A'Expecting numeric in E2114 / R2114C5: got '#N/A'Expecting numeric in G2114 / R2114C7: got '#N/A'Expecting numeric in B2115 / R2115C2: got '#N/A'Expecting numeric in E2115 / R2115C5: got '#N/A'Expecting numeric in G2115 / R2115C7: got '#N/A'Expecting numeric in B2116 / R2116C2: got '#N/A'Expecting numeric in E2116 / R2116C5: got '#N/A'Expecting numeric in G2116 / R2116C7: got '#N/A'Expecting numeric in B2117 / R2117C2: got '#N/A'Expecting numeric in E2117 / R2117C5: got '#N/A'Expecting numeric in G2117 / R2117C7: got '#N/A'Expecting numeric in B2118 / R2118C2: got '#N/A'Expecting numeric in E2118 / R2118C5: got '#N/A'Expecting numeric in G2118 / R2118C7: got '#N/A'Expecting numeric in B2119 / R2119C2: got '#N/A'Expecting numeric in E2119 / R2119C5: got '#N/A'Expecting numeric in G2119 / R2119C7: got '#N/A'Expecting numeric in B2120 / R2120C2: got '#N/A'Expecting numeric in E2120 / R2120C5: got '#N/A'Expecting numeric in G2120 / R2120C7: got '#N/A'Expecting numeric in B2121 / R2121C2: got '#N/A'Expecting numeric in E2121 / R2121C5: got '#N/A'Expecting numeric in G2121 / R2121C7: got '#N/A'Expecting numeric in B2122 / R2122C2: got '#N/A'Expecting numeric in E2122 / R2122C5: got '#N/A'Expecting numeric in G2122 / R2122C7: got '#N/A'Expecting numeric in B2123 / R2123C2: got '#N/A'Expecting numeric in E2123 / R2123C5: got '#N/A'Expecting numeric in G2123 / R2123C7: got '#N/A'Expecting numeric in B2124 / R2124C2: got '#N/A'Expecting numeric in E2124 / R2124C5: got '#N/A'Expecting numeric in G2124 / R2124C7: got '#N/A'Expecting numeric in B2125 / R2125C2: got '#N/A'Expecting numeric in E2125 / R2125C5: got '#N/A'Expecting numeric in G2125 / R2125C7: got '#N/A'Expecting numeric in B2126 / R2126C2: got '#N/A'Expecting numeric in E2126 / R2126C5: got '#N/A'Expecting numeric in G2126 / R2126C7: got '#N/A'Expecting numeric in B2127 / R2127C2: got '#N/A'Expecting numeric in E2127 / R2127C5: got '#N/A'Expecting numeric in G2127 / R2127C7: got '#N/A'Expecting numeric in B2128 / R2128C2: got '#N/A'Expecting numeric in E2128 / R2128C5: got '#N/A'Expecting numeric in G2128 / R2128C7: got '#N/A'Expecting numeric in B2129 / R2129C2: got '#N/A'Expecting numeric in E2129 / R2129C5: got '#N/A'Expecting numeric in G2129 / R2129C7: got '#N/A'Expecting numeric in B2130 / R2130C2: got '#N/A'Expecting numeric in E2130 / R2130C5: got '#N/A'Expecting numeric in G2130 / R2130C7: got '#N/A'Expecting numeric in B2131 / R2131C2: got '#N/A'Expecting numeric in E2131 / R2131C5: got '#N/A'Expecting numeric in G2131 / R2131C7: got '#N/A'Expecting numeric in B2132 / R2132C2: got '#N/A'Expecting numeric in E2132 / R2132C5: got '#N/A'Expecting numeric in G2132 / R2132C7: got '#N/A'Expecting numeric in B2133 / R2133C2: got '#N/A'Expecting numeric in E2133 / R2133C5: got '#N/A'Expecting numeric in G2133 / R2133C7: got '#N/A'Expecting numeric in B2134 / R2134C2: got '#N/A'Expecting numeric in E2134 / R2134C5: got '#N/A'Expecting numeric in G2134 / R2134C7: got '#N/A'Expecting numeric in B2135 / R2135C2: got '#N/A'Expecting numeric in E2135 / R2135C5: got '#N/A'Expecting numeric in G2135 / R2135C7: got '#N/A'Expecting numeric in B2136 / R2136C2: got '#N/A'Expecting numeric in E2136 / R2136C5: got '#N/A'Expecting numeric in G2136 / R2136C7: got '#N/A'Expecting numeric in B2137 / R2137C2: got '#N/A'Expecting numeric in E2137 / R2137C5: got '#N/A'Expecting numeric in G2137 / R2137C7: got '#N/A'Expecting numeric in B2138 / R2138C2: got '#N/A'Expecting numeric in E2138 / R2138C5: got '#N/A'Expecting numeric in G2138 / R2138C7: got '#N/A'Expecting numeric in B2139 / R2139C2: got '#N/A'Expecting numeric in E2139 / R2139C5: got '#N/A'Expecting numeric in G2139 / R2139C7: got '#N/A'Expecting numeric in B2140 / R2140C2: got '#N/A'Expecting numeric in E2140 / R2140C5: got '#N/A'Expecting numeric in G2140 / R2140C7: got '#N/A'Expecting numeric in B2141 / R2141C2: got '#N/A'Expecting numeric in E2141 / R2141C5: got '#N/A'Expecting numeric in G2141 / R2141C7: got '#N/A'Expecting numeric in B2142 / R2142C2: got '#N/A'Expecting numeric in E2142 / R2142C5: got '#N/A'Expecting numeric in G2142 / R2142C7: got '#N/A'Expecting numeric in B2143 / R2143C2: got '#N/A'Expecting numeric in E2143 / R2143C5: got '#N/A'Expecting numeric in G2143 / R2143C7: got '#N/A'Expecting numeric in B2144 / R2144C2: got '#N/A'Expecting numeric in E2144 / R2144C5: got '#N/A'Expecting numeric in G2144 / R2144C7: got '#N/A'Expecting numeric in B2145 / R2145C2: got '#N/A'Expecting numeric in E2145 / R2145C5: got '#N/A'Expecting numeric in G2145 / R2145C7: got '#N/A'Expecting numeric in B2146 / R2146C2: got '#N/A'Expecting numeric in E2146 / R2146C5: got '#N/A'Expecting numeric in G2146 / R2146C7: got '#N/A'Expecting numeric in B2147 / R2147C2: got '#N/A'Expecting numeric in E2147 / R2147C5: got '#N/A'Expecting numeric in G2147 / R2147C7: got '#N/A'Expecting numeric in B2148 / R2148C2: got '#N/A'Expecting numeric in E2148 / R2148C5: got '#N/A'Expecting numeric in G2148 / R2148C7: got '#N/A'Expecting numeric in B2149 / R2149C2: got '#N/A'Expecting numeric in E2149 / R2149C5: got '#N/A'Expecting numeric in G2149 / R2149C7: got '#N/A'Expecting numeric in B2150 / R2150C2: got '#N/A'Expecting numeric in E2150 / R2150C5: got '#N/A'Expecting numeric in G2150 / R2150C7: got '#N/A'Expecting numeric in B2151 / R2151C2: got '#N/A'Expecting numeric in E2151 / R2151C5: got '#N/A'Expecting numeric in G2151 / R2151C7: got '#N/A'Expecting numeric in B2152 / R2152C2: got '#N/A'Expecting numeric in E2152 / R2152C5: got '#N/A'Expecting numeric in G2152 / R2152C7: got '#N/A'Expecting numeric in B2153 / R2153C2: got '#N/A'Expecting numeric in E2153 / R2153C5: got '#N/A'Expecting numeric in G2153 / R2153C7: got '#N/A'Expecting numeric in B2154 / R2154C2: got '#N/A'Expecting numeric in E2154 / R2154C5: got '#N/A'Expecting numeric in G2154 / R2154C7: got '#N/A'Expecting numeric in B2155 / R2155C2: got '#N/A'Expecting numeric in E2155 / R2155C5: got '#N/A'Expecting numeric in G2155 / R2155C7: got '#N/A'Expecting numeric in B2156 / R2156C2: got '#N/A'Expecting numeric in E2156 / R2156C5: got '#N/A'Expecting numeric in G2156 / R2156C7: got '#N/A'Expecting numeric in B2157 / R2157C2: got '#N/A'Expecting numeric in E2157 / R2157C5: got '#N/A'Expecting numeric in G2157 / R2157C7: got '#N/A'Expecting numeric in B2158 / R2158C2: got '#N/A'Expecting numeric in E2158 / R2158C5: got '#N/A'Expecting numeric in G2158 / R2158C7: got '#N/A'Expecting numeric in B2159 / R2159C2: got '#N/A'Expecting numeric in E2159 / R2159C5: got '#N/A'Expecting numeric in G2159 / R2159C7: got '#N/A'Expecting numeric in B2160 / R2160C2: got '#N/A'Expecting numeric in E2160 / R2160C5: got '#N/A'Expecting numeric in G2160 / R2160C7: got '#N/A'Expecting numeric in B2161 / R2161C2: got '#N/A'Expecting numeric in E2161 / R2161C5: got '#N/A'Expecting numeric in G2161 / R2161C7: got '#N/A'Expecting numeric in B2162 / R2162C2: got '#N/A'Expecting numeric in E2162 / R2162C5: got '#N/A'Expecting numeric in G2162 / R2162C7: got '#N/A'Expecting numeric in B2163 / R2163C2: got '#N/A'Expecting numeric in E2163 / R2163C5: got '#N/A'Expecting numeric in G2163 / R2163C7: got '#N/A'Expecting numeric in B2164 / R2164C2: got '#N/A'Expecting numeric in E2164 / R2164C5: got '#N/A'Expecting numeric in G2164 / R2164C7: got '#N/A'Expecting numeric in B2165 / R2165C2: got '#N/A'Expecting numeric in E2165 / R2165C5: got '#N/A'Expecting numeric in G2165 / R2165C7: got '#N/A'Expecting numeric in B2166 / R2166C2: got '#N/A'Expecting numeric in E2166 / R2166C5: got '#N/A'Expecting numeric in G2166 / R2166C7: got '#N/A'Expecting numeric in B2167 / R2167C2: got '#N/A'Expecting numeric in E2167 / R2167C5: got '#N/A'Expecting numeric in G2167 / R2167C7: got '#N/A'Expecting numeric in B2168 / R2168C2: got '#N/A'Expecting numeric in E2168 / R2168C5: got '#N/A'Expecting numeric in G2168 / R2168C7: got '#N/A'Expecting numeric in B2169 / R2169C2: got '#N/A'Expecting numeric in E2169 / R2169C5: got '#N/A'Expecting numeric in G2169 / R2169C7: got '#N/A'Expecting numeric in B2170 / R2170C2: got '#N/A'Expecting numeric in E2170 / R2170C5: got '#N/A'Expecting numeric in G2170 / R2170C7: got '#N/A'Expecting numeric in B2171 / R2171C2: got '#N/A'Expecting numeric in E2171 / R2171C5: got '#N/A'Expecting numeric in G2171 / R2171C7: got '#N/A'Expecting numeric in B2172 / R2172C2: got '#N/A'Expecting numeric in E2172 / R2172C5: got '#N/A'Expecting numeric in G2172 / R2172C7: got '#N/A'Expecting numeric in B2173 / R2173C2: got '#N/A'Expecting numeric in E2173 / R2173C5: got '#N/A'Expecting numeric in G2173 / R2173C7: got '#N/A'Expecting numeric in B2174 / R2174C2: got '#N/A'Expecting numeric in E2174 / R2174C5: got '#N/A'Expecting numeric in G2174 / R2174C7: got '#N/A'Expecting numeric in B2175 / R2175C2: got '#N/A'Expecting numeric in E2175 / R2175C5: got '#N/A'Expecting numeric in G2175 / R2175C7: got '#N/A'Expecting numeric in B2176 / R2176C2: got '#N/A'Expecting numeric in E2176 / R2176C5: got '#N/A'Expecting numeric in G2176 / R2176C7: got '#N/A'Expecting numeric in B2177 / R2177C2: got '#N/A'Expecting numeric in E2177 / R2177C5: got '#N/A'Expecting numeric in G2177 / R2177C7: got '#N/A'Expecting numeric in B2178 / R2178C2: got '#N/A'Expecting numeric in E2178 / R2178C5: got '#N/A'Expecting numeric in G2178 / R2178C7: got '#N/A'Expecting numeric in B2179 / R2179C2: got '#N/A'Expecting numeric in E2179 / R2179C5: got '#N/A'Expecting numeric in G2179 / R2179C7: got '#N/A'Expecting numeric in B2180 / R2180C2: got '#N/A'Expecting numeric in E2180 / R2180C5: got '#N/A'Expecting numeric in G2180 / R2180C7: got '#N/A'Expecting numeric in B2181 / R2181C2: got '#N/A'Expecting numeric in E2181 / R2181C5: got '#N/A'Expecting numeric in G2181 / R2181C7: got '#N/A'Expecting numeric in B2182 / R2182C2: got '#N/A'Expecting numeric in E2182 / R2182C5: got '#N/A'Expecting numeric in G2182 / R2182C7: got '#N/A'Expecting numeric in B2183 / R2183C2: got '#N/A'Expecting numeric in E2183 / R2183C5: got '#N/A'Expecting numeric in G2183 / R2183C7: got '#N/A'Expecting numeric in B2184 / R2184C2: got '#N/A'Expecting numeric in E2184 / R2184C5: got '#N/A'Expecting numeric in G2184 / R2184C7: got '#N/A'Expecting numeric in B2185 / R2185C2: got '#N/A'Expecting numeric in E2185 / R2185C5: got '#N/A'Expecting numeric in G2185 / R2185C7: got '#N/A'Expecting numeric in B2186 / R2186C2: got '#N/A'Expecting numeric in E2186 / R2186C5: got '#N/A'Expecting numeric in G2186 / R2186C7: got '#N/A'Expecting numeric in B2187 / R2187C2: got '#N/A'Expecting numeric in E2187 / R2187C5: got '#N/A'Expecting numeric in G2187 / R2187C7: got '#N/A'Expecting numeric in B2188 / R2188C2: got '#N/A'Expecting numeric in E2188 / R2188C5: got '#N/A'Expecting numeric in G2188 / R2188C7: got '#N/A'Expecting numeric in B2189 / R2189C2: got '#N/A'Expecting numeric in E2189 / R2189C5: got '#N/A'Expecting numeric in G2189 / R2189C7: got '#N/A'Expecting numeric in B2190 / R2190C2: got '#N/A'Expecting numeric in E2190 / R2190C5: got '#N/A'Expecting numeric in G2190 / R2190C7: got '#N/A'Expecting numeric in B2191 / R2191C2: got '#N/A'Expecting numeric in E2191 / R2191C5: got '#N/A'Expecting numeric in G2191 / R2191C7: got '#N/A'Expecting numeric in B2192 / R2192C2: got '#N/A'Expecting numeric in E2192 / R2192C5: got '#N/A'Expecting numeric in G2192 / R2192C7: got '#N/A'Expecting numeric in B2193 / R2193C2: got '#N/A'Expecting numeric in E2193 / R2193C5: got '#N/A'Expecting numeric in G2193 / R2193C7: got '#N/A'Expecting numeric in B2194 / R2194C2: got '#N/A'Expecting numeric in E2194 / R2194C5: got '#N/A'Expecting numeric in G2194 / R2194C7: got '#N/A'Expecting numeric in B2195 / R2195C2: got '#N/A'Expecting numeric in E2195 / R2195C5: got '#N/A'Expecting numeric in G2195 / R2195C7: got '#N/A'Expecting numeric in B2196 / R2196C2: got '#N/A'Expecting numeric in E2196 / R2196C5: got '#N/A'Expecting numeric in G2196 / R2196C7: got '#N/A'Expecting numeric in B2197 / R2197C2: got '#N/A'Expecting numeric in E2197 / R2197C5: got '#N/A'Expecting numeric in G2197 / R2197C7: got '#N/A'Expecting numeric in B2198 / R2198C2: got '#N/A'Expecting numeric in E2198 / R2198C5: got '#N/A'Expecting numeric in G2198 / R2198C7: got '#N/A'Expecting numeric in B2199 / R2199C2: got '#N/A'Expecting numeric in E2199 / R2199C5: got '#N/A'Expecting numeric in G2199 / R2199C7: got '#N/A'Expecting numeric in B2200 / R2200C2: got '#N/A'Expecting numeric in E2200 / R2200C5: got '#N/A'Expecting numeric in G2200 / R2200C7: got '#N/A'Expecting numeric in B2201 / R2201C2: got '#N/A'Expecting numeric in E2201 / R2201C5: got '#N/A'Expecting numeric in G2201 / R2201C7: got '#N/A'Expecting numeric in B2202 / R2202C2: got '#N/A'Expecting numeric in E2202 / R2202C5: got '#N/A'Expecting numeric in G2202 / R2202C7: got '#N/A'Expecting numeric in B2203 / R2203C2: got '#N/A'Expecting numeric in E2203 / R2203C5: got '#N/A'Expecting numeric in G2203 / R2203C7: got '#N/A'Expecting numeric in B2204 / R2204C2: got '#N/A'Expecting numeric in E2204 / R2204C5: got '#N/A'Expecting numeric in G2204 / R2204C7: got '#N/A'Expecting numeric in B2205 / R2205C2: got '#N/A'Expecting numeric in E2205 / R2205C5: got '#N/A'Expecting numeric in G2205 / R2205C7: got '#N/A'Expecting numeric in B2206 / R2206C2: got '#N/A'Expecting numeric in E2206 / R2206C5: got '#N/A'Expecting numeric in G2206 / R2206C7: got '#N/A'Expecting numeric in B2207 / R2207C2: got '#N/A'Expecting numeric in E2207 / R2207C5: got '#N/A'Expecting numeric in G2207 / R2207C7: got '#N/A'Expecting numeric in B2208 / R2208C2: got '#N/A'Expecting numeric in E2208 / R2208C5: got '#N/A'Expecting numeric in G2208 / R2208C7: got '#N/A'Expecting numeric in B2209 / R2209C2: got '#N/A'Expecting numeric in E2209 / R2209C5: got '#N/A'Expecting numeric in G2209 / R2209C7: got '#N/A'Expecting numeric in B2210 / R2210C2: got '#N/A'Expecting numeric in E2210 / R2210C5: got '#N/A'Expecting numeric in G2210 / R2210C7: got '#N/A'Expecting numeric in B2211 / R2211C2: got '#N/A'Expecting numeric in E2211 / R2211C5: got '#N/A'Expecting numeric in G2211 / R2211C7: got '#N/A'Expecting numeric in B2212 / R2212C2: got '#N/A'Expecting numeric in E2212 / R2212C5: got '#N/A'Expecting numeric in G2212 / R2212C7: got '#N/A'Expecting numeric in B2213 / R2213C2: got '#N/A'Expecting numeric in E2213 / R2213C5: got '#N/A'Expecting numeric in G2213 / R2213C7: got '#N/A'Expecting numeric in B2214 / R2214C2: got '#N/A'Expecting numeric in E2214 / R2214C5: got '#N/A'Expecting numeric in G2214 / R2214C7: got '#N/A'Expecting numeric in B2215 / R2215C2: got '#N/A'Expecting numeric in E2215 / R2215C5: got '#N/A'Expecting numeric in G2215 / R2215C7: got '#N/A'Expecting numeric in B2216 / R2216C2: got '#N/A'Expecting numeric in E2216 / R2216C5: got '#N/A'Expecting numeric in G2216 / R2216C7: got '#N/A'Expecting numeric in B2217 / R2217C2: got '#N/A'Expecting numeric in E2217 / R2217C5: got '#N/A'Expecting numeric in G2217 / R2217C7: got '#N/A'Expecting numeric in B2218 / R2218C2: got '#N/A'Expecting numeric in E2218 / R2218C5: got '#N/A'Expecting numeric in G2218 / R2218C7: got '#N/A'Expecting numeric in B2219 / R2219C2: got '#N/A'Expecting numeric in E2219 / R2219C5: got '#N/A'Expecting numeric in G2219 / R2219C7: got '#N/A'Expecting numeric in B2220 / R2220C2: got '#N/A'Expecting numeric in E2220 / R2220C5: got '#N/A'Expecting numeric in G2220 / R2220C7: got '#N/A'Expecting numeric in B2221 / R2221C2: got '#N/A'Expecting numeric in E2221 / R2221C5: got '#N/A'Expecting numeric in G2221 / R2221C7: got '#N/A'Expecting numeric in B2222 / R2222C2: got '#N/A'Expecting numeric in E2222 / R2222C5: got '#N/A'Expecting numeric in G2222 / R2222C7: got '#N/A'Expecting numeric in B2223 / R2223C2: got '#N/A'Expecting numeric in E2223 / R2223C5: got '#N/A'Expecting numeric in G2223 / R2223C7: got '#N/A'Expecting numeric in B2224 / R2224C2: got '#N/A'Expecting numeric in E2224 / R2224C5: got '#N/A'Expecting numeric in G2224 / R2224C7: got '#N/A'Expecting numeric in B2225 / R2225C2: got '#N/A'Expecting numeric in E2225 / R2225C5: got '#N/A'Expecting numeric in G2225 / R2225C7: got '#N/A'Expecting numeric in B2226 / R2226C2: got '#N/A'Expecting numeric in E2226 / R2226C5: got '#N/A'Expecting numeric in G2226 / R2226C7: got '#N/A'Expecting numeric in B2227 / R2227C2: got '#N/A'Expecting numeric in E2227 / R2227C5: got '#N/A'Expecting numeric in G2227 / R2227C7: got '#N/A'Expecting numeric in B2228 / R2228C2: got '#N/A'Expecting numeric in E2228 / R2228C5: got '#N/A'Expecting numeric in G2228 / R2228C7: got '#N/A'Expecting numeric in B2229 / R2229C2: got '#N/A'Expecting numeric in E2229 / R2229C5: got '#N/A'Expecting numeric in G2229 / R2229C7: got '#N/A'Expecting numeric in B2230 / R2230C2: got '#N/A'Expecting numeric in E2230 / R2230C5: got '#N/A'Expecting numeric in G2230 / R2230C7: got '#N/A'Expecting numeric in B2231 / R2231C2: got '#N/A'Expecting numeric in E2231 / R2231C5: got '#N/A'Expecting numeric in G2231 / R2231C7: got '#N/A'Expecting numeric in B2232 / R2232C2: got '#N/A'Expecting numeric in E2232 / R2232C5: got '#N/A'Expecting numeric in G2232 / R2232C7: got '#N/A'Expecting numeric in B2233 / R2233C2: got '#N/A'Expecting numeric in E2233 / R2233C5: got '#N/A'Expecting numeric in G2233 / R2233C7: got '#N/A'Expecting numeric in B2234 / R2234C2: got '#N/A'Expecting numeric in E2234 / R2234C5: got '#N/A'Expecting numeric in G2234 / R2234C7: got '#N/A'Expecting numeric in B2235 / R2235C2: got '#N/A'Expecting numeric in E2235 / R2235C5: got '#N/A'Expecting numeric in G2235 / R2235C7: got '#N/A'Expecting numeric in B2236 / R2236C2: got '#N/A'Expecting numeric in E2236 / R2236C5: got '#N/A'Expecting numeric in G2236 / R2236C7: got '#N/A'Expecting numeric in B2237 / R2237C2: got '#N/A'Expecting numeric in E2237 / R2237C5: got '#N/A'Expecting numeric in G2237 / R2237C7: got '#N/A'Expecting numeric in B2238 / R2238C2: got '#N/A'Expecting numeric in E2238 / R2238C5: got '#N/A'Expecting numeric in G2238 / R2238C7: got '#N/A'Expecting numeric in B2239 / R2239C2: got '#N/A'Expecting numeric in E2239 / R2239C5: got '#N/A'Expecting numeric in G2239 / R2239C7: got '#N/A'Expecting numeric in B2240 / R2240C2: got '#N/A'Expecting numeric in E2240 / R2240C5: got '#N/A'Expecting numeric in G2240 / R2240C7: got '#N/A'Expecting numeric in B2241 / R2241C2: got '#N/A'Expecting numeric in E2241 / R2241C5: got '#N/A'Expecting numeric in G2241 / R2241C7: got '#N/A'Expecting numeric in B2242 / R2242C2: got '#N/A'Expecting numeric in E2242 / R2242C5: got '#N/A'Expecting numeric in G2242 / R2242C7: got '#N/A'Expecting numeric in B2243 / R2243C2: got '#N/A'Expecting numeric in E2243 / R2243C5: got '#N/A'Expecting numeric in G2243 / R2243C7: got '#N/A'Expecting numeric in B2244 / R2244C2: got '#N/A'Expecting numeric in E2244 / R2244C5: got '#N/A'Expecting numeric in G2244 / R2244C7: got '#N/A'Expecting numeric in B2245 / R2245C2: got '#N/A'Expecting numeric in E2245 / R2245C5: got '#N/A'Expecting numeric in G2245 / R2245C7: got '#N/A'Expecting numeric in B2246 / R2246C2: got '#N/A'Expecting numeric in E2246 / R2246C5: got '#N/A'Expecting numeric in G2246 / R2246C7: got '#N/A'Expecting numeric in B2247 / R2247C2: got '#N/A'Expecting numeric in E2247 / R2247C5: got '#N/A'Expecting numeric in G2247 / R2247C7: got '#N/A'Expecting numeric in B2248 / R2248C2: got '#N/A'Expecting numeric in E2248 / R2248C5: got '#N/A'Expecting numeric in G2248 / R2248C7: got '#N/A'Expecting numeric in B2249 / R2249C2: got '#N/A'Expecting numeric in E2249 / R2249C5: got '#N/A'Expecting numeric in G2249 / R2249C7: got '#N/A'Expecting numeric in B2250 / R2250C2: got '#N/A'Expecting numeric in E2250 / R2250C5: got '#N/A'Expecting numeric in G2250 / R2250C7: got '#N/A'Expecting numeric in B2251 / R2251C2: got '#N/A'Expecting numeric in E2251 / R2251C5: got '#N/A'Expecting numeric in G2251 / R2251C7: got '#N/A'Expecting numeric in B2252 / R2252C2: got '#N/A'Expecting numeric in E2252 / R2252C5: got '#N/A'Expecting numeric in G2252 / R2252C7: got '#N/A'Expecting numeric in B2253 / R2253C2: got '#N/A'Expecting numeric in E2253 / R2253C5: got '#N/A'Expecting numeric in G2253 / R2253C7: got '#N/A'Expecting numeric in B2254 / R2254C2: got '#N/A'Expecting numeric in E2254 / R2254C5: got '#N/A'Expecting numeric in G2254 / R2254C7: got '#N/A'Expecting numeric in B2255 / R2255C2: got '#N/A'Expecting numeric in E2255 / R2255C5: got '#N/A'Expecting numeric in G2255 / R2255C7: got '#N/A'Expecting numeric in B2256 / R2256C2: got '#N/A'Expecting numeric in E2256 / R2256C5: got '#N/A'Expecting numeric in G2256 / R2256C7: got '#N/A'Expecting numeric in B2257 / R2257C2: got '#N/A'Expecting numeric in E2257 / R2257C5: got '#N/A'Expecting numeric in G2257 / R2257C7: got '#N/A'Expecting numeric in B2258 / R2258C2: got '#N/A'Expecting numeric in E2258 / R2258C5: got '#N/A'Expecting numeric in G2258 / R2258C7: got '#N/A'Expecting numeric in B2259 / R2259C2: got '#N/A'Expecting numeric in E2259 / R2259C5: got '#N/A'Expecting numeric in G2259 / R2259C7: got '#N/A'Expecting numeric in B2260 / R2260C2: got '#N/A'Expecting numeric in E2260 / R2260C5: got '#N/A'Expecting numeric in G2260 / R2260C7: got '#N/A'Expecting numeric in B2261 / R2261C2: got '#N/A'Expecting numeric in E2261 / R2261C5: got '#N/A'Expecting numeric in G2261 / R2261C7: got '#N/A'Expecting numeric in B2262 / R2262C2: got '#N/A'Expecting numeric in E2262 / R2262C5: got '#N/A'Expecting numeric in G2262 / R2262C7: got '#N/A'Expecting numeric in B2263 / R2263C2: got '#N/A'Expecting numeric in E2263 / R2263C5: got '#N/A'Expecting numeric in G2263 / R2263C7: got '#N/A'Expecting numeric in B2264 / R2264C2: got '#N/A'Expecting numeric in E2264 / R2264C5: got '#N/A'Expecting numeric in G2264 / R2264C7: got '#N/A'Expecting numeric in B2265 / R2265C2: got '#N/A'Expecting numeric in E2265 / R2265C5: got '#N/A'Expecting numeric in G2265 / R2265C7: got '#N/A'Expecting numeric in B2266 / R2266C2: got '#N/A'Expecting numeric in E2266 / R2266C5: got '#N/A'Expecting numeric in G2266 / R2266C7: got '#N/A'Expecting numeric in B2267 / R2267C2: got '#N/A'Expecting numeric in E2267 / R2267C5: got '#N/A'Expecting numeric in G2267 / R2267C7: got '#N/A'Expecting numeric in B2268 / R2268C2: got '#N/A'Expecting numeric in E2268 / R2268C5: got '#N/A'Expecting numeric in G2268 / R2268C7: got '#N/A'Expecting numeric in B2269 / R2269C2: got '#N/A'Expecting numeric in E2269 / R2269C5: got '#N/A'Expecting numeric in G2269 / R2269C7: got '#N/A'Expecting numeric in B2270 / R2270C2: got '#N/A'Expecting numeric in E2270 / R2270C5: got '#N/A'Expecting numeric in G2270 / R2270C7: got '#N/A'Expecting numeric in B2271 / R2271C2: got '#N/A'Expecting numeric in E2271 / R2271C5: got '#N/A'Expecting numeric in G2271 / R2271C7: got '#N/A'Expecting numeric in B2272 / R2272C2: got '#N/A'Expecting numeric in E2272 / R2272C5: got '#N/A'Expecting numeric in G2272 / R2272C7: got '#N/A'Expecting numeric in B2273 / R2273C2: got '#N/A'Expecting numeric in E2273 / R2273C5: got '#N/A'Expecting numeric in G2273 / R2273C7: got '#N/A'Expecting numeric in B2274 / R2274C2: got '#N/A'Expecting numeric in E2274 / R2274C5: got '#N/A'Expecting numeric in G2274 / R2274C7: got '#N/A'Expecting numeric in B2275 / R2275C2: got '#N/A'Expecting numeric in E2275 / R2275C5: got '#N/A'Expecting numeric in G2275 / R2275C7: got '#N/A'Expecting numeric in B2276 / R2276C2: got '#N/A'Expecting numeric in E2276 / R2276C5: got '#N/A'Expecting numeric in G2276 / R2276C7: got '#N/A'Expecting numeric in B2277 / R2277C2: got '#N/A'Expecting numeric in E2277 / R2277C5: got '#N/A'Expecting numeric in G2277 / R2277C7: got '#N/A'Expecting numeric in B2278 / R2278C2: got '#N/A'Expecting numeric in E2278 / R2278C5: got '#N/A'Expecting numeric in G2278 / R2278C7: got '#N/A'Expecting numeric in B2279 / R2279C2: got '#N/A'Expecting numeric in E2279 / R2279C5: got '#N/A'Expecting numeric in G2279 / R2279C7: got '#N/A'Expecting numeric in B2280 / R2280C2: got '#N/A'Expecting numeric in E2280 / R2280C5: got '#N/A'Expecting numeric in G2280 / R2280C7: got '#N/A'Expecting numeric in B2281 / R2281C2: got '#N/A'Expecting numeric in E2281 / R2281C5: got '#N/A'Expecting numeric in G2281 / R2281C7: got '#N/A'Expecting numeric in B2282 / R2282C2: got '#N/A'Expecting numeric in E2282 / R2282C5: got '#N/A'Expecting numeric in G2282 / R2282C7: got '#N/A'Expecting numeric in B2283 / R2283C2: got '#N/A'Expecting numeric in E2283 / R2283C5: got '#N/A'Expecting numeric in G2283 / R2283C7: got '#N/A'Expecting numeric in B2284 / R2284C2: got '#N/A'Expecting numeric in E2284 / R2284C5: got '#N/A'Expecting numeric in G2284 / R2284C7: got '#N/A'Expecting numeric in B2285 / R2285C2: got '#N/A'Expecting numeric in E2285 / R2285C5: got '#N/A'Expecting numeric in G2285 / R2285C7: got '#N/A'Expecting numeric in B2286 / R2286C2: got '#N/A'Expecting numeric in E2286 / R2286C5: got '#N/A'Expecting numeric in G2286 / R2286C7: got '#N/A'Expecting numeric in B2287 / R2287C2: got '#N/A'Expecting numeric in E2287 / R2287C5: got '#N/A'Expecting numeric in G2287 / R2287C7: got '#N/A'Expecting numeric in B2288 / R2288C2: got '#N/A'Expecting numeric in E2288 / R2288C5: got '#N/A'Expecting numeric in G2288 / R2288C7: got '#N/A'Expecting numeric in B2289 / R2289C2: got '#N/A'Expecting numeric in E2289 / R2289C5: got '#N/A'Expecting numeric in G2289 / R2289C7: got '#N/A'Expecting numeric in B2290 / R2290C2: got '#N/A'Expecting numeric in E2290 / R2290C5: got '#N/A'Expecting numeric in G2290 / R2290C7: got '#N/A'Expecting numeric in B2291 / R2291C2: got '#N/A'Expecting numeric in E2291 / R2291C5: got '#N/A'Expecting numeric in G2291 / R2291C7: got '#N/A'Expecting numeric in B2292 / R2292C2: got '#N/A'Expecting numeric in E2292 / R2292C5: got '#N/A'Expecting numeric in G2292 / R2292C7: got '#N/A'Expecting numeric in B2293 / R2293C2: got '#N/A'Expecting numeric in E2293 / R2293C5: got '#N/A'Expecting numeric in G2293 / R2293C7: got '#N/A'Expecting numeric in B2294 / R2294C2: got '#N/A'Expecting numeric in E2294 / R2294C5: got '#N/A'Expecting numeric in G2294 / R2294C7: got '#N/A'Expecting numeric in B2295 / R2295C2: got '#N/A'Expecting numeric in E2295 / R2295C5: got '#N/A'Expecting numeric in G2295 / R2295C7: got '#N/A'Expecting numeric in B2296 / R2296C2: got '#N/A'Expecting numeric in E2296 / R2296C5: got '#N/A'Expecting numeric in G2296 / R2296C7: got '#N/A'Expecting numeric in B2297 / R2297C2: got '#N/A'Expecting numeric in E2297 / R2297C5: got '#N/A'Expecting numeric in G2297 / R2297C7: got '#N/A'Expecting numeric in B2298 / R2298C2: got '#N/A'Expecting numeric in E2298 / R2298C5: got '#N/A'Expecting numeric in G2298 / R2298C7: got '#N/A'Expecting numeric in B2299 / R2299C2: got '#N/A'Expecting numeric in E2299 / R2299C5: got '#N/A'Expecting numeric in G2299 / R2299C7: got '#N/A'Expecting numeric in B2300 / R2300C2: got '#N/A'Expecting numeric in E2300 / R2300C5: got '#N/A'Expecting numeric in G2300 / R2300C7: got '#N/A'Expecting numeric in B2301 / R2301C2: got '#N/A'Expecting numeric in E2301 / R2301C5: got '#N/A'Expecting numeric in G2301 / R2301C7: got '#N/A'Expecting numeric in B2302 / R2302C2: got '#N/A'Expecting numeric in E2302 / R2302C5: got '#N/A'Expecting numeric in G2302 / R2302C7: got '#N/A'Expecting numeric in B2303 / R2303C2: got '#N/A'Expecting numeric in E2303 / R2303C5: got '#N/A'Expecting numeric in G2303 / R2303C7: got '#N/A'Expecting numeric in B2304 / R2304C2: got '#N/A'Expecting numeric in E2304 / R2304C5: got '#N/A'Expecting numeric in G2304 / R2304C7: got '#N/A'Expecting numeric in B2305 / R2305C2: got '#N/A'Expecting numeric in E2305 / R2305C5: got '#N/A'Expecting numeric in G2305 / R2305C7: got '#N/A'Expecting numeric in B2306 / R2306C2: got '#N/A'Expecting numeric in E2306 / R2306C5: got '#N/A'Expecting numeric in G2306 / R2306C7: got '#N/A'Expecting numeric in B2307 / R2307C2: got '#N/A'Expecting numeric in E2307 / R2307C5: got '#N/A'Expecting numeric in G2307 / R2307C7: got '#N/A'Expecting numeric in B2308 / R2308C2: got '#N/A'Expecting numeric in E2308 / R2308C5: got '#N/A'Expecting numeric in G2308 / R2308C7: got '#N/A'Expecting numeric in B2309 / R2309C2: got '#N/A'Expecting numeric in E2309 / R2309C5: got '#N/A'Expecting numeric in G2309 / R2309C7: got '#N/A'Expecting numeric in B2310 / R2310C2: got '#N/A'Expecting numeric in E2310 / R2310C5: got '#N/A'Expecting numeric in G2310 / R2310C7: got '#N/A'Expecting numeric in B2311 / R2311C2: got '#N/A'Expecting numeric in E2311 / R2311C5: got '#N/A'Expecting numeric in G2311 / R2311C7: got '#N/A'Expecting numeric in B2312 / R2312C2: got '#N/A'Expecting numeric in E2312 / R2312C5: got '#N/A'Expecting numeric in G2312 / R2312C7: got '#N/A'Expecting numeric in B2313 / R2313C2: got '#N/A'Expecting numeric in E2313 / R2313C5: got '#N/A'Expecting numeric in G2313 / R2313C7: got '#N/A'Expecting numeric in B2314 / R2314C2: got '#N/A'Expecting numeric in E2314 / R2314C5: got '#N/A'Expecting numeric in G2314 / R2314C7: got '#N/A'Expecting numeric in B2315 / R2315C2: got '#N/A'Expecting numeric in E2315 / R2315C5: got '#N/A'Expecting numeric in G2315 / R2315C7: got '#N/A'Expecting numeric in B2316 / R2316C2: got '#N/A'Expecting numeric in E2316 / R2316C5: got '#N/A'Expecting numeric in G2316 / R2316C7: got '#N/A'Expecting numeric in B2317 / R2317C2: got '#N/A'Expecting numeric in E2317 / R2317C5: got '#N/A'Expecting numeric in G2317 / R2317C7: got '#N/A'Expecting numeric in B2318 / R2318C2: got '#N/A'Expecting numeric in E2318 / R2318C5: got '#N/A'Expecting numeric in G2318 / R2318C7: got '#N/A'Expecting numeric in B2319 / R2319C2: got '#N/A'Expecting numeric in E2319 / R2319C5: got '#N/A'Expecting numeric in G2319 / R2319C7: got '#N/A'Expecting numeric in B2320 / R2320C2: got '#N/A'Expecting numeric in E2320 / R2320C5: got '#N/A'Expecting numeric in G2320 / R2320C7: got '#N/A'Expecting numeric in B2321 / R2321C2: got '#N/A'Expecting numeric in E2321 / R2321C5: got '#N/A'Expecting numeric in G2321 / R2321C7: got '#N/A'Expecting numeric in B2322 / R2322C2: got '#N/A'Expecting numeric in E2322 / R2322C5: got '#N/A'Expecting numeric in G2322 / R2322C7: got '#N/A'Expecting numeric in B2323 / R2323C2: got '#N/A'Expecting numeric in E2323 / R2323C5: got '#N/A'Expecting numeric in G2323 / R2323C7: got '#N/A'Expecting numeric in B2324 / R2324C2: got '#N/A'Expecting numeric in E2324 / R2324C5: got '#N/A'Expecting numeric in G2324 / R2324C7: got '#N/A'Expecting numeric in B2325 / R2325C2: got '#N/A'Expecting numeric in E2325 / R2325C5: got '#N/A'Expecting numeric in G2325 / R2325C7: got '#N/A'Expecting numeric in B2326 / R2326C2: got '#N/A'Expecting numeric in E2326 / R2326C5: got '#N/A'Expecting numeric in G2326 / R2326C7: got '#N/A'Expecting numeric in B2327 / R2327C2: got '#N/A'Expecting numeric in E2327 / R2327C5: got '#N/A'Expecting numeric in G2327 / R2327C7: got '#N/A'Expecting numeric in B2328 / R2328C2: got '#N/A'Expecting numeric in E2328 / R2328C5: got '#N/A'Expecting numeric in G2328 / R2328C7: got '#N/A'Expecting numeric in B2329 / R2329C2: got '#N/A'Expecting numeric in E2329 / R2329C5: got '#N/A'Expecting numeric in G2329 / R2329C7: got '#N/A'Expecting numeric in B2330 / R2330C2: got '#N/A'Expecting numeric in E2330 / R2330C5: got '#N/A'Expecting numeric in G2330 / R2330C7: got '#N/A'Expecting numeric in B2331 / R2331C2: got '#N/A'Expecting numeric in E2331 / R2331C5: got '#N/A'Expecting numeric in G2331 / R2331C7: got '#N/A'Expecting numeric in B2332 / R2332C2: got '#N/A'Expecting numeric in E2332 / R2332C5: got '#N/A'Expecting numeric in G2332 / R2332C7: got '#N/A'Expecting numeric in B2333 / R2333C2: got '#N/A'Expecting numeric in E2333 / R2333C5: got '#N/A'Expecting numeric in G2333 / R2333C7: got '#N/A'Expecting numeric in B2334 / R2334C2: got '#N/A'Expecting numeric in E2334 / R2334C5: got '#N/A'Expecting numeric in G2334 / R2334C7: got '#N/A'Expecting numeric in B2335 / R2335C2: got '#N/A'Expecting numeric in E2335 / R2335C5: got '#N/A'Expecting numeric in G2335 / R2335C7: got '#N/A'Expecting numeric in B2336 / R2336C2: got '#N/A'Expecting numeric in E2336 / R2336C5: got '#N/A'Expecting numeric in G2336 / R2336C7: got '#N/A'Expecting numeric in B2337 / R2337C2: got '#N/A'Expecting numeric in E2337 / R2337C5: got '#N/A'Expecting numeric in G2337 / R2337C7: got '#N/A'Expecting numeric in B2338 / R2338C2: got '#N/A'Expecting numeric in E2338 / R2338C5: got '#N/A'Expecting numeric in G2338 / R2338C7: got '#N/A'Expecting numeric in B2339 / R2339C2: got '#N/A'Expecting numeric in E2339 / R2339C5: got '#N/A'Expecting numeric in G2339 / R2339C7: got '#N/A'Expecting numeric in B2340 / R2340C2: got '#N/A'Expecting numeric in E2340 / R2340C5: got '#N/A'Expecting numeric in G2340 / R2340C7: got '#N/A'Expecting numeric in B2341 / R2341C2: got '#N/A'Expecting numeric in E2341 / R2341C5: got '#N/A'Expecting numeric in G2341 / R2341C7: got '#N/A'Expecting numeric in B2342 / R2342C2: got '#N/A'Expecting numeric in E2342 / R2342C5: got '#N/A'Expecting numeric in G2342 / R2342C7: got '#N/A'Expecting numeric in B2343 / R2343C2: got '#N/A'Expecting numeric in E2343 / R2343C5: got '#N/A'Expecting numeric in G2343 / R2343C7: got '#N/A'Expecting numeric in B2344 / R2344C2: got '#N/A'Expecting numeric in E2344 / R2344C5: got '#N/A'Expecting numeric in G2344 / R2344C7: got '#N/A'Expecting numeric in B2345 / R2345C2: got '#N/A'Expecting numeric in E2345 / R2345C5: got '#N/A'Expecting numeric in G2345 / R2345C7: got '#N/A'Expecting numeric in B2346 / R2346C2: got '#N/A'Expecting numeric in E2346 / R2346C5: got '#N/A'Expecting numeric in G2346 / R2346C7: got '#N/A'Expecting numeric in B2347 / R2347C2: got '#N/A'Expecting numeric in E2347 / R2347C5: got '#N/A'Expecting numeric in G2347 / R2347C7: got '#N/A'Expecting numeric in B2348 / R2348C2: got '#N/A'Expecting numeric in E2348 / R2348C5: got '#N/A'Expecting numeric in G2348 / R2348C7: got '#N/A'Expecting numeric in B2349 / R2349C2: got '#N/A'Expecting numeric in E2349 / R2349C5: got '#N/A'Expecting numeric in G2349 / R2349C7: got '#N/A'Expecting numeric in B2350 / R2350C2: got '#N/A'Expecting numeric in E2350 / R2350C5: got '#N/A'Expecting numeric in G2350 / R2350C7: got '#N/A'Expecting numeric in B2351 / R2351C2: got '#N/A'Expecting numeric in E2351 / R2351C5: got '#N/A'Expecting numeric in G2351 / R2351C7: got '#N/A'Expecting numeric in B2352 / R2352C2: got '#N/A'Expecting numeric in E2352 / R2352C5: got '#N/A'Expecting numeric in G2352 / R2352C7: got '#N/A'Expecting numeric in B2353 / R2353C2: got '#N/A'Expecting numeric in E2353 / R2353C5: got '#N/A'Expecting numeric in G2353 / R2353C7: got '#N/A'Expecting numeric in B2354 / R2354C2: got '#N/A'Expecting numeric in E2354 / R2354C5: got '#N/A'Expecting numeric in G2354 / R2354C7: got '#N/A'Expecting numeric in B2355 / R2355C2: got '#N/A'Expecting numeric in E2355 / R2355C5: got '#N/A'Expecting numeric in G2355 / R2355C7: got '#N/A'Expecting numeric in B2356 / R2356C2: got '#N/A'Expecting numeric in E2356 / R2356C5: got '#N/A'Expecting numeric in G2356 / R2356C7: got '#N/A'Expecting numeric in B2357 / R2357C2: got '#N/A'Expecting numeric in E2357 / R2357C5: got '#N/A'Expecting numeric in G2357 / R2357C7: got '#N/A'Expecting numeric in B2358 / R2358C2: got '#N/A'Expecting numeric in E2358 / R2358C5: got '#N/A'Expecting numeric in G2358 / R2358C7: got '#N/A'Expecting numeric in B2359 / R2359C2: got '#N/A'Expecting numeric in E2359 / R2359C5: got '#N/A'Expecting numeric in G2359 / R2359C7: got '#N/A'Expecting numeric in B2360 / R2360C2: got '#N/A'Expecting numeric in E2360 / R2360C5: got '#N/A'Expecting numeric in G2360 / R2360C7: got '#N/A'Expecting numeric in B2361 / R2361C2: got '#N/A'Expecting numeric in E2361 / R2361C5: got '#N/A'Expecting numeric in G2361 / R2361C7: got '#N/A'Expecting numeric in B2362 / R2362C2: got '#N/A'Expecting numeric in E2362 / R2362C5: got '#N/A'Expecting numeric in G2362 / R2362C7: got '#N/A'Expecting numeric in B2363 / R2363C2: got '#N/A'Expecting numeric in E2363 / R2363C5: got '#N/A'Expecting numeric in G2363 / R2363C7: got '#N/A'Expecting numeric in B2364 / R2364C2: got '#N/A'Expecting numeric in E2364 / R2364C5: got '#N/A'Expecting numeric in G2364 / R2364C7: got '#N/A'Expecting numeric in B2365 / R2365C2: got '#N/A'Expecting numeric in E2365 / R2365C5: got '#N/A'Expecting numeric in G2365 / R2365C7: got '#N/A'Expecting numeric in B2366 / R2366C2: got '#N/A'Expecting numeric in E2366 / R2366C5: got '#N/A'Expecting numeric in G2366 / R2366C7: got '#N/A'Expecting numeric in B2367 / R2367C2: got '#N/A'Expecting numeric in E2367 / R2367C5: got '#N/A'Expecting numeric in G2367 / R2367C7: got '#N/A'Expecting numeric in B2368 / R2368C2: got '#N/A'Expecting numeric in E2368 / R2368C5: got '#N/A'Expecting numeric in G2368 / R2368C7: got '#N/A'Expecting numeric in B2369 / R2369C2: got '#N/A'Expecting numeric in E2369 / R2369C5: got '#N/A'Expecting numeric in G2369 / R2369C7: got '#N/A'Expecting numeric in B2370 / R2370C2: got '#N/A'Expecting numeric in E2370 / R2370C5: got '#N/A'Expecting numeric in G2370 / R2370C7: got '#N/A'Expecting numeric in B2371 / R2371C2: got '#N/A'Expecting numeric in E2371 / R2371C5: got '#N/A'Expecting numeric in G2371 / R2371C7: got '#N/A'Expecting numeric in B2372 / R2372C2: got '#N/A'Expecting numeric in E2372 / R2372C5: got '#N/A'Expecting numeric in G2372 / R2372C7: got '#N/A'Expecting numeric in B2373 / R2373C2: got '#N/A'Expecting numeric in E2373 / R2373C5: got '#N/A'Expecting numeric in G2373 / R2373C7: got '#N/A'Expecting numeric in B2374 / R2374C2: got '#N/A'Expecting numeric in E2374 / R2374C5: got '#N/A'Expecting numeric in G2374 / R2374C7: got '#N/A'Expecting numeric in B2375 / R2375C2: got '#N/A'Expecting numeric in E2375 / R2375C5: got '#N/A'Expecting numeric in G2375 / R2375C7: got '#N/A'Expecting numeric in B2376 / R2376C2: got '#N/A'Expecting numeric in E2376 / R2376C5: got '#N/A'Expecting numeric in G2376 / R2376C7: got '#N/A'Expecting numeric in B2377 / R2377C2: got '#N/A'Expecting numeric in E2377 / R2377C5: got '#N/A'Expecting numeric in G2377 / R2377C7: got '#N/A'Expecting numeric in B2378 / R2378C2: got '#N/A'Expecting numeric in E2378 / R2378C5: got '#N/A'Expecting numeric in G2378 / R2378C7: got '#N/A'Expecting numeric in B2379 / R2379C2: got '#N/A'Expecting numeric in E2379 / R2379C5: got '#N/A'Expecting numeric in G2379 / R2379C7: got '#N/A'Expecting numeric in B2380 / R2380C2: got '#N/A'Expecting numeric in E2380 / R2380C5: got '#N/A'Expecting numeric in G2380 / R2380C7: got '#N/A'Expecting numeric in B2381 / R2381C2: got '#N/A'Expecting numeric in E2381 / R2381C5: got '#N/A'Expecting numeric in G2381 / R2381C7: got '#N/A'Expecting numeric in B2382 / R2382C2: got '#N/A'Expecting numeric in E2382 / R2382C5: got '#N/A'Expecting numeric in G2382 / R2382C7: got '#N/A'Expecting numeric in B2383 / R2383C2: got '#N/A'Expecting numeric in E2383 / R2383C5: got '#N/A'Expecting numeric in G2383 / R2383C7: got '#N/A'Expecting numeric in B2384 / R2384C2: got '#N/A'Expecting numeric in E2384 / R2384C5: got '#N/A'Expecting numeric in G2384 / R2384C7: got '#N/A'Expecting numeric in B2385 / R2385C2: got '#N/A'Expecting numeric in E2385 / R2385C5: got '#N/A'Expecting numeric in G2385 / R2385C7: got '#N/A'Expecting numeric in B2386 / R2386C2: got '#N/A'Expecting numeric in E2386 / R2386C5: got '#N/A'Expecting numeric in G2386 / R2386C7: got '#N/A'Expecting numeric in B2387 / R2387C2: got '#N/A'Expecting numeric in E2387 / R2387C5: got '#N/A'Expecting numeric in G2387 / R2387C7: got '#N/A'Expecting numeric in B2388 / R2388C2: got '#N/A'Expecting numeric in E2388 / R2388C5: got '#N/A'Expecting numeric in G2388 / R2388C7: got '#N/A'Expecting numeric in B2389 / R2389C2: got '#N/A'Expecting numeric in E2389 / R2389C5: got '#N/A'Expecting numeric in G2389 / R2389C7: got '#N/A'Expecting numeric in B2390 / R2390C2: got '#N/A'Expecting numeric in E2390 / R2390C5: got '#N/A'Expecting numeric in G2390 / R2390C7: got '#N/A'Expecting numeric in B2391 / R2391C2: got '#N/A'Expecting numeric in E2391 / R2391C5: got '#N/A'Expecting numeric in G2391 / R2391C7: got '#N/A'Expecting numeric in B2392 / R2392C2: got '#N/A'Expecting numeric in E2392 / R2392C5: got '#N/A'Expecting numeric in G2392 / R2392C7: got '#N/A'Expecting numeric in B2393 / R2393C2: got '#N/A'Expecting numeric in E2393 / R2393C5: got '#N/A'Expecting numeric in G2393 / R2393C7: got '#N/A'Expecting numeric in B2394 / R2394C2: got '#N/A'Expecting numeric in E2394 / R2394C5: got '#N/A'Expecting numeric in G2394 / R2394C7: got '#N/A'Expecting numeric in B2395 / R2395C2: got '#N/A'Expecting numeric in E2395 / R2395C5: got '#N/A'Expecting numeric in G2395 / R2395C7: got '#N/A'Expecting numeric in B2396 / R2396C2: got '#N/A'Expecting numeric in E2396 / R2396C5: got '#N/A'Expecting numeric in G2396 / R2396C7: got '#N/A'Expecting numeric in B2397 / R2397C2: got '#N/A'Expecting numeric in E2397 / R2397C5: got '#N/A'Expecting numeric in G2397 / R2397C7: got '#N/A'Expecting numeric in B2398 / R2398C2: got '#N/A'Expecting numeric in E2398 / R2398C5: got '#N/A'Expecting numeric in G2398 / R2398C7: got '#N/A'Expecting numeric in B2399 / R2399C2: got '#N/A'Expecting numeric in E2399 / R2399C5: got '#N/A'Expecting numeric in G2399 / R2399C7: got '#N/A'Expecting numeric in B2400 / R2400C2: got '#N/A'Expecting numeric in E2400 / R2400C5: got '#N/A'Expecting numeric in G2400 / R2400C7: got '#N/A'Expecting numeric in B2401 / R2401C2: got '#N/A'Expecting numeric in E2401 / R2401C5: got '#N/A'Expecting numeric in G2401 / R2401C7: got '#N/A'Expecting numeric in B2402 / R2402C2: got '#N/A'Expecting numeric in E2402 / R2402C5: got '#N/A'Expecting numeric in G2402 / R2402C7: got '#N/A'Expecting numeric in B2403 / R2403C2: got '#N/A'Expecting numeric in E2403 / R2403C5: got '#N/A'Expecting numeric in G2403 / R2403C7: got '#N/A'Expecting numeric in B2404 / R2404C2: got '#N/A'Expecting numeric in E2404 / R2404C5: got '#N/A'Expecting numeric in G2404 / R2404C7: got '#N/A'Expecting numeric in B2405 / R2405C2: got '#N/A'Expecting numeric in E2405 / R2405C5: got '#N/A'Expecting numeric in G2405 / R2405C7: got '#N/A'Expecting numeric in B2406 / R2406C2: got '#N/A'Expecting numeric in E2406 / R2406C5: got '#N/A'Expecting numeric in G2406 / R2406C7: got '#N/A'Expecting numeric in B2407 / R2407C2: got '#N/A'Expecting numeric in E2407 / R2407C5: got '#N/A'Expecting numeric in G2407 / R2407C7: got '#N/A'Expecting numeric in B2408 / R2408C2: got '#N/A'Expecting numeric in E2408 / R2408C5: got '#N/A'Expecting numeric in G2408 / R2408C7: got '#N/A'Expecting numeric in B2409 / R2409C2: got '#N/A'Expecting numeric in E2409 / R2409C5: got '#N/A'Expecting numeric in G2409 / R2409C7: got '#N/A'Expecting numeric in B2410 / R2410C2: got '#N/A'Expecting numeric in E2410 / R2410C5: got '#N/A'Expecting numeric in G2410 / R2410C7: got '#N/A'Expecting numeric in B2411 / R2411C2: got '#N/A'Expecting numeric in E2411 / R2411C5: got '#N/A'Expecting numeric in G2411 / R2411C7: got '#N/A'Expecting numeric in B2412 / R2412C2: got '#N/A'Expecting numeric in E2412 / R2412C5: got '#N/A'Expecting numeric in G2412 / R2412C7: got '#N/A'Expecting numeric in B2413 / R2413C2: got '#N/A'Expecting numeric in E2413 / R2413C5: got '#N/A'Expecting numeric in G2413 / R2413C7: got '#N/A'Expecting numeric in B2414 / R2414C2: got '#N/A'Expecting numeric in E2414 / R2414C5: got '#N/A'Expecting numeric in G2414 / R2414C7: got '#N/A'Expecting numeric in B2415 / R2415C2: got '#N/A'Expecting numeric in E2415 / R2415C5: got '#N/A'Expecting numeric in G2415 / R2415C7: got '#N/A'Expecting numeric in B2416 / R2416C2: got '#N/A'Expecting numeric in E2416 / R2416C5: got '#N/A'Expecting numeric in G2416 / R2416C7: got '#N/A'Expecting numeric in B2417 / R2417C2: got '#N/A'Expecting numeric in E2417 / R2417C5: got '#N/A'Expecting numeric in G2417 / R2417C7: got '#N/A'Expecting numeric in B2418 / R2418C2: got '#N/A'Expecting numeric in E2418 / R2418C5: got '#N/A'Expecting numeric in G2418 / R2418C7: got '#N/A'Expecting numeric in B2419 / R2419C2: got '#N/A'Expecting numeric in E2419 / R2419C5: got '#N/A'Expecting numeric in G2419 / R2419C7: got '#N/A'Expecting numeric in B2420 / R2420C2: got '#N/A'Expecting numeric in E2420 / R2420C5: got '#N/A'Expecting numeric in G2420 / R2420C7: got '#N/A'Expecting numeric in B2421 / R2421C2: got '#N/A'Expecting numeric in E2421 / R2421C5: got '#N/A'Expecting numeric in G2421 / R2421C7: got '#N/A'Expecting numeric in B2422 / R2422C2: got '#N/A'Expecting numeric in E2422 / R2422C5: got '#N/A'Expecting numeric in G2422 / R2422C7: got '#N/A'Expecting numeric in B2423 / R2423C2: got '#N/A'Expecting numeric in E2423 / R2423C5: got '#N/A'Expecting numeric in G2423 / R2423C7: got '#N/A'Expecting numeric in B2424 / R2424C2: got '#N/A'Expecting numeric in E2424 / R2424C5: got '#N/A'Expecting numeric in G2424 / R2424C7: got '#N/A'Expecting numeric in B2425 / R2425C2: got '#N/A'Expecting numeric in E2425 / R2425C5: got '#N/A'Expecting numeric in G2425 / R2425C7: got '#N/A'Expecting numeric in B2426 / R2426C2: got '#N/A'Expecting numeric in E2426 / R2426C5: got '#N/A'Expecting numeric in G2426 / R2426C7: got '#N/A'Expecting numeric in B2427 / R2427C2: got '#N/A'Expecting numeric in E2427 / R2427C5: got '#N/A'Expecting numeric in G2427 / R2427C7: got '#N/A'Expecting numeric in B2428 / R2428C2: got '#N/A'Expecting numeric in E2428 / R2428C5: got '#N/A'Expecting numeric in G2428 / R2428C7: got '#N/A'Expecting numeric in B2429 / R2429C2: got '#N/A'Expecting numeric in E2429 / R2429C5: got '#N/A'Expecting numeric in G2429 / R2429C7: got '#N/A'Expecting numeric in B2430 / R2430C2: got '#N/A'Expecting numeric in E2430 / R2430C5: got '#N/A'Expecting numeric in G2430 / R2430C7: got '#N/A'Expecting numeric in B2431 / R2431C2: got '#N/A'Expecting numeric in E2431 / R2431C5: got '#N/A'Expecting numeric in G2431 / R2431C7: got '#N/A'Expecting numeric in B2432 / R2432C2: got '#N/A'Expecting numeric in E2432 / R2432C5: got '#N/A'Expecting numeric in G2432 / R2432C7: got '#N/A'Expecting numeric in B2433 / R2433C2: got '#N/A'Expecting numeric in E2433 / R2433C5: got '#N/A'Expecting numeric in G2433 / R2433C7: got '#N/A'Expecting numeric in B2434 / R2434C2: got '#N/A'Expecting numeric in E2434 / R2434C5: got '#N/A'Expecting numeric in G2434 / R2434C7: got '#N/A'Expecting numeric in B2435 / R2435C2: got '#N/A'Expecting numeric in E2435 / R2435C5: got '#N/A'Expecting numeric in G2435 / R2435C7: got '#N/A'Expecting numeric in B2436 / R2436C2: got '#N/A'Expecting numeric in E2436 / R2436C5: got '#N/A'Expecting numeric in G2436 / R2436C7: got '#N/A'Expecting numeric in B2437 / R2437C2: got '#N/A'Expecting numeric in E2437 / R2437C5: got '#N/A'Expecting numeric in G2437 / R2437C7: got '#N/A'Expecting numeric in B2438 / R2438C2: got '#N/A'Expecting numeric in E2438 / R2438C5: got '#N/A'Expecting numeric in G2438 / R2438C7: got '#N/A'Expecting numeric in B2439 / R2439C2: got '#N/A'Expecting numeric in E2439 / R2439C5: got '#N/A'Expecting numeric in G2439 / R2439C7: got '#N/A'Expecting numeric in B2440 / R2440C2: got '#N/A'Expecting numeric in E2440 / R2440C5: got '#N/A'Expecting numeric in G2440 / R2440C7: got '#N/A'Expecting numeric in B2441 / R2441C2: got '#N/A'Expecting numeric in E2441 / R2441C5: got '#N/A'Expecting numeric in G2441 / R2441C7: got '#N/A'Expecting numeric in B2442 / R2442C2: got '#N/A'Expecting numeric in E2442 / R2442C5: got '#N/A'Expecting numeric in G2442 / R2442C7: got '#N/A'Expecting numeric in B2443 / R2443C2: got '#N/A'Expecting numeric in E2443 / R2443C5: got '#N/A'Expecting numeric in G2443 / R2443C7: got '#N/A'Expecting numeric in B2444 / R2444C2: got '#N/A'Expecting numeric in E2444 / R2444C5: got '#N/A'Expecting numeric in G2444 / R2444C7: got '#N/A'Expecting numeric in B2445 / R2445C2: got '#N/A'Expecting numeric in E2445 / R2445C5: got '#N/A'Expecting numeric in G2445 / R2445C7: got '#N/A'Expecting numeric in B2446 / R2446C2: got '#N/A'Expecting numeric in E2446 / R2446C5: got '#N/A'Expecting numeric in G2446 / R2446C7: got '#N/A'Expecting numeric in B2447 / R2447C2: got '#N/A'Expecting numeric in E2447 / R2447C5: got '#N/A'Expecting numeric in G2447 / R2447C7: got '#N/A'Expecting numeric in B2448 / R2448C2: got '#N/A'Expecting numeric in E2448 / R2448C5: got '#N/A'Expecting numeric in G2448 / R2448C7: got '#N/A'Expecting numeric in B2449 / R2449C2: got '#N/A'Expecting numeric in E2449 / R2449C5: got '#N/A'Expecting numeric in G2449 / R2449C7: got '#N/A'Expecting numeric in B2450 / R2450C2: got '#N/A'Expecting numeric in E2450 / R2450C5: got '#N/A'Expecting numeric in G2450 / R2450C7: got '#N/A'Expecting numeric in B2451 / R2451C2: got '#N/A'Expecting numeric in E2451 / R2451C5: got '#N/A'Expecting numeric in G2451 / R2451C7: got '#N/A'Expecting numeric in B2452 / R2452C2: got '#N/A'Expecting numeric in E2452 / R2452C5: got '#N/A'Expecting numeric in G2452 / R2452C7: got '#N/A'Expecting numeric in B2453 / R2453C2: got '#N/A'Expecting numeric in E2453 / R2453C5: got '#N/A'Expecting numeric in G2453 / R2453C7: got '#N/A'Expecting numeric in B2454 / R2454C2: got '#N/A'Expecting numeric in E2454 / R2454C5: got '#N/A'Expecting numeric in G2454 / R2454C7: got '#N/A'Expecting numeric in B2455 / R2455C2: got '#N/A'Expecting numeric in E2455 / R2455C5: got '#N/A'Expecting numeric in G2455 / R2455C7: got '#N/A'Expecting numeric in B2456 / R2456C2: got '#N/A'Expecting numeric in E2456 / R2456C5: got '#N/A'Expecting numeric in G2456 / R2456C7: got '#N/A'Expecting numeric in B2457 / R2457C2: got '#N/A'Expecting numeric in E2457 / R2457C5: got '#N/A'Expecting numeric in G2457 / R2457C7: got '#N/A'Expecting numeric in B2458 / R2458C2: got '#N/A'Expecting numeric in E2458 / R2458C5: got '#N/A'Expecting numeric in G2458 / R2458C7: got '#N/A'Expecting numeric in B2459 / R2459C2: got '#N/A'Expecting numeric in E2459 / R2459C5: got '#N/A'Expecting numeric in G2459 / R2459C7: got '#N/A'Expecting numeric in B2460 / R2460C2: got '#N/A'Expecting numeric in E2460 / R2460C5: got '#N/A'Expecting numeric in G2460 / R2460C7: got '#N/A'Expecting numeric in B2461 / R2461C2: got '#N/A'Expecting numeric in E2461 / R2461C5: got '#N/A'Expecting numeric in G2461 / R2461C7: got '#N/A'Expecting numeric in B2462 / R2462C2: got '#N/A'Expecting numeric in E2462 / R2462C5: got '#N/A'Expecting numeric in G2462 / R2462C7: got '#N/A'Expecting numeric in B2463 / R2463C2: got '#N/A'Expecting numeric in E2463 / R2463C5: got '#N/A'Expecting numeric in G2463 / R2463C7: got '#N/A'Expecting numeric in B2464 / R2464C2: got '#N/A'Expecting numeric in E2464 / R2464C5: got '#N/A'Expecting numeric in G2464 / R2464C7: got '#N/A'Expecting numeric in B2465 / R2465C2: got '#N/A'Expecting numeric in E2465 / R2465C5: got '#N/A'Expecting numeric in G2465 / R2465C7: got '#N/A'Expecting numeric in B2466 / R2466C2: got '#N/A'Expecting numeric in E2466 / R2466C5: got '#N/A'Expecting numeric in G2466 / R2466C7: got '#N/A'Expecting numeric in B2467 / R2467C2: got '#N/A'Expecting numeric in E2467 / R2467C5: got '#N/A'Expecting numeric in G2467 / R2467C7: got '#N/A'Expecting numeric in B2468 / R2468C2: got '#N/A'Expecting numeric in E2468 / R2468C5: got '#N/A'Expecting numeric in G2468 / R2468C7: got '#N/A'Expecting numeric in B2469 / R2469C2: got '#N/A'Expecting numeric in E2469 / R2469C5: got '#N/A'Expecting numeric in G2469 / R2469C7: got '#N/A'Expecting numeric in B2470 / R2470C2: got '#N/A'Expecting numeric in E2470 / R2470C5: got '#N/A'Expecting numeric in G2470 / R2470C7: got '#N/A'Expecting numeric in B2471 / R2471C2: got '#N/A'Expecting numeric in E2471 / R2471C5: got '#N/A'Expecting numeric in G2471 / R2471C7: got '#N/A'Expecting numeric in B2472 / R2472C2: got '#N/A'Expecting numeric in E2472 / R2472C5: got '#N/A'Expecting numeric in G2472 / R2472C7: got '#N/A'Expecting numeric in B2473 / R2473C2: got '#N/A'Expecting numeric in E2473 / R2473C5: got '#N/A'Expecting numeric in G2473 / R2473C7: got '#N/A'Expecting numeric in B2474 / R2474C2: got '#N/A'Expecting numeric in E2474 / R2474C5: got '#N/A'Expecting numeric in G2474 / R2474C7: got '#N/A'Expecting numeric in B2475 / R2475C2: got '#N/A'Expecting numeric in E2475 / R2475C5: got '#N/A'Expecting numeric in G2475 / R2475C7: got '#N/A'Expecting numeric in B2476 / R2476C2: got '#N/A'Expecting numeric in E2476 / R2476C5: got '#N/A'Expecting numeric in G2476 / R2476C7: got '#N/A'Expecting numeric in B2477 / R2477C2: got '#N/A'Expecting numeric in E2477 / R2477C5: got '#N/A'Expecting numeric in G2477 / R2477C7: got '#N/A'Expecting numeric in B2478 / R2478C2: got '#N/A'Expecting numeric in E2478 / R2478C5: got '#N/A'Expecting numeric in G2478 / R2478C7: got '#N/A'Expecting numeric in B2479 / R2479C2: got '#N/A'Expecting numeric in E2479 / R2479C5: got '#N/A'Expecting numeric in G2479 / R2479C7: got '#N/A'Expecting numeric in B2480 / R2480C2: got '#N/A'Expecting numeric in E2480 / R2480C5: got '#N/A'Expecting numeric in G2480 / R2480C7: got '#N/A'Expecting numeric in B2481 / R2481C2: got '#N/A'Expecting numeric in E2481 / R2481C5: got '#N/A'Expecting numeric in G2481 / R2481C7: got '#N/A'Expecting numeric in B2482 / R2482C2: got '#N/A'Expecting numeric in E2482 / R2482C5: got '#N/A'Expecting numeric in G2482 / R2482C7: got '#N/A'Expecting numeric in B2483 / R2483C2: got '#N/A'Expecting numeric in E2483 / R2483C5: got '#N/A'Expecting numeric in G2483 / R2483C7: got '#N/A'Expecting numeric in B2484 / R2484C2: got '#N/A'Expecting numeric in E2484 / R2484C5: got '#N/A'Expecting numeric in G2484 / R2484C7: got '#N/A'Expecting numeric in B2485 / R2485C2: got '#N/A'Expecting numeric in E2485 / R2485C5: got '#N/A'Expecting numeric in G2485 / R2485C7: got '#N/A'Expecting numeric in B2486 / R2486C2: got '#N/A'Expecting numeric in E2486 / R2486C5: got '#N/A'Expecting numeric in G2486 / R2486C7: got '#N/A'Expecting numeric in B2487 / R2487C2: got '#N/A'Expecting numeric in E2487 / R2487C5: got '#N/A'Expecting numeric in G2487 / R2487C7: got '#N/A'Expecting numeric in B2488 / R2488C2: got '#N/A'Expecting numeric in E2488 / R2488C5: got '#N/A'Expecting numeric in G2488 / R2488C7: got '#N/A'Expecting numeric in B2489 / R2489C2: got '#N/A'Expecting numeric in E2489 / R2489C5: got '#N/A'Expecting numeric in G2489 / R2489C7: got '#N/A'Expecting numeric in B2490 / R2490C2: got '#N/A'Expecting numeric in E2490 / R2490C5: got '#N/A'Expecting numeric in G2490 / R2490C7: got '#N/A'Expecting numeric in B2491 / R2491C2: got '#N/A'Expecting numeric in E2491 / R2491C5: got '#N/A'Expecting numeric in G2491 / R2491C7: got '#N/A'Expecting numeric in B2492 / R2492C2: got '#N/A'Expecting numeric in E2492 / R2492C5: got '#N/A'Expecting numeric in G2492 / R2492C7: got '#N/A'Expecting numeric in B2493 / R2493C2: got '#N/A'Expecting numeric in E2493 / R2493C5: got '#N/A'Expecting numeric in G2493 / R2493C7: got '#N/A'Expecting numeric in B2494 / R2494C2: got '#N/A'Expecting numeric in E2494 / R2494C5: got '#N/A'Expecting numeric in G2494 / R2494C7: got '#N/A'Expecting numeric in B2495 / R2495C2: got '#N/A'Expecting numeric in E2495 / R2495C5: got '#N/A'Expecting numeric in G2495 / R2495C7: got '#N/A'Expecting numeric in B2496 / R2496C2: got '#N/A'Expecting numeric in E2496 / R2496C5: got '#N/A'Expecting numeric in G2496 / R2496C7: got '#N/A'Expecting numeric in B2497 / R2497C2: got '#N/A'Expecting numeric in E2497 / R2497C5: got '#N/A'Expecting numeric in G2497 / R2497C7: got '#N/A'Expecting numeric in B2498 / R2498C2: got '#N/A'Expecting numeric in E2498 / R2498C5: got '#N/A'Expecting numeric in G2498 / R2498C7: got '#N/A'Expecting numeric in B2499 / R2499C2: got '#N/A'Expecting numeric in E2499 / R2499C5: got '#N/A'Expecting numeric in G2499 / R2499C7: got '#N/A'Expecting numeric in B2500 / R2500C2: got '#N/A'Expecting numeric in E2500 / R2500C5: got '#N/A'Expecting numeric in G2500 / R2500C7: got '#N/A'Expecting numeric in B2501 / R2501C2: got '#N/A'Expecting numeric in E2501 / R2501C5: got '#N/A'Expecting numeric in G2501 / R2501C7: got '#N/A'Expecting numeric in B2502 / R2502C2: got '#N/A'Expecting numeric in E2502 / R2502C5: got '#N/A'Expecting numeric in G2502 / R2502C7: got '#N/A'Expecting numeric in B2503 / R2503C2: got '#N/A'Expecting numeric in E2503 / R2503C5: got '#N/A'Expecting numeric in G2503 / R2503C7: got '#N/A'Expecting numeric in B2504 / R2504C2: got '#N/A'Expecting numeric in E2504 / R2504C5: got '#N/A'Expecting numeric in G2504 / R2504C7: got '#N/A'Expecting numeric in B2505 / R2505C2: got '#N/A'Expecting numeric in E2505 / R2505C5: got '#N/A'Expecting numeric in G2505 / R2505C7: got '#N/A'Expecting numeric in B2506 / R2506C2: got '#N/A'Expecting numeric in E2506 / R2506C5: got '#N/A'Expecting numeric in G2506 / R2506C7: got '#N/A'Expecting numeric in B2507 / R2507C2: got '#N/A'Expecting numeric in E2507 / R2507C5: got '#N/A'Expecting numeric in G2507 / R2507C7: got '#N/A'Expecting numeric in B2508 / R2508C2: got '#N/A'Expecting numeric in E2508 / R2508C5: got '#N/A'Expecting numeric in G2508 / R2508C7: got '#N/A'Expecting numeric in B2509 / R2509C2: got '#N/A'Expecting numeric in E2509 / R2509C5: got '#N/A'Expecting numeric in G2509 / R2509C7: got '#N/A'Expecting numeric in B2510 / R2510C2: got '#N/A'Expecting numeric in E2510 / R2510C5: got '#N/A'Expecting numeric in G2510 / R2510C7: got '#N/A'Expecting numeric in B2511 / R2511C2: got '#N/A'Expecting numeric in E2511 / R2511C5: got '#N/A'Expecting numeric in G2511 / R2511C7: got '#N/A'Expecting numeric in B2512 / R2512C2: got '#N/A'Expecting numeric in E2512 / R2512C5: got '#N/A'Expecting numeric in G2512 / R2512C7: got '#N/A'Expecting numeric in B2513 / R2513C2: got '#N/A'Expecting numeric in E2513 / R2513C5: got '#N/A'Expecting numeric in G2513 / R2513C7: got '#N/A'Expecting numeric in B2514 / R2514C2: got '#N/A'Expecting numeric in E2514 / R2514C5: got '#N/A'Expecting numeric in G2514 / R2514C7: got '#N/A'Expecting numeric in B2515 / R2515C2: got '#N/A'Expecting numeric in E2515 / R2515C5: got '#N/A'Expecting numeric in G2515 / R2515C7: got '#N/A'Expecting numeric in B2516 / R2516C2: got '#N/A'Expecting numeric in E2516 / R2516C5: got '#N/A'Expecting numeric in G2516 / R2516C7: got '#N/A'Expecting numeric in B2517 / R2517C2: got '#N/A'Expecting numeric in E2517 / R2517C5: got '#N/A'Expecting numeric in G2517 / R2517C7: got '#N/A'Expecting numeric in B2518 / R2518C2: got '#N/A'Expecting numeric in E2518 / R2518C5: got '#N/A'Expecting numeric in G2518 / R2518C7: got '#N/A'Expecting numeric in B2519 / R2519C2: got '#N/A'Expecting numeric in E2519 / R2519C5: got '#N/A'Expecting numeric in G2519 / R2519C7: got '#N/A'Expecting numeric in B2520 / R2520C2: got '#N/A'Expecting numeric in E2520 / R2520C5: got '#N/A'Expecting numeric in G2520 / R2520C7: got '#N/A'Expecting numeric in B2521 / R2521C2: got '#N/A'Expecting numeric in E2521 / R2521C5: got '#N/A'Expecting numeric in G2521 / R2521C7: got '#N/A'Expecting numeric in B2522 / R2522C2: got '#N/A'Expecting numeric in E2522 / R2522C5: got '#N/A'Expecting numeric in G2522 / R2522C7: got '#N/A'Expecting numeric in B2523 / R2523C2: got '#N/A'Expecting numeric in E2523 / R2523C5: got '#N/A'Expecting numeric in G2523 / R2523C7: got '#N/A'Expecting numeric in B2524 / R2524C2: got '#N/A'Expecting numeric in E2524 / R2524C5: got '#N/A'Expecting numeric in G2524 / R2524C7: got '#N/A'Expecting numeric in B2525 / R2525C2: got '#N/A'Expecting numeric in E2525 / R2525C5: got '#N/A'Expecting numeric in G2525 / R2525C7: got '#N/A'Expecting numeric in B2526 / R2526C2: got '#N/A'Expecting numeric in E2526 / R2526C5: got '#N/A'Expecting numeric in G2526 / R2526C7: got '#N/A'Expecting numeric in B2527 / R2527C2: got '#N/A'Expecting numeric in E2527 / R2527C5: got '#N/A'Expecting numeric in G2527 / R2527C7: got '#N/A'Expecting numeric in B2528 / R2528C2: got '#N/A'Expecting numeric in E2528 / R2528C5: got '#N/A'Expecting numeric in G2528 / R2528C7: got '#N/A'Expecting numeric in B2529 / R2529C2: got '#N/A'Expecting numeric in E2529 / R2529C5: got '#N/A'Expecting numeric in G2529 / R2529C7: got '#N/A'Expecting numeric in B2530 / R2530C2: got '#N/A'Expecting numeric in E2530 / R2530C5: got '#N/A'Expecting numeric in G2530 / R2530C7: got '#N/A'Expecting numeric in B2531 / R2531C2: got '#N/A'Expecting numeric in E2531 / R2531C5: got '#N/A'Expecting numeric in G2531 / R2531C7: got '#N/A'Expecting numeric in B2532 / R2532C2: got '#N/A'Expecting numeric in E2532 / R2532C5: got '#N/A'Expecting numeric in G2532 / R2532C7: got '#N/A'Expecting numeric in B2533 / R2533C2: got '#N/A'Expecting numeric in E2533 / R2533C5: got '#N/A'Expecting numeric in G2533 / R2533C7: got '#N/A'Expecting numeric in B2534 / R2534C2: got '#N/A'Expecting numeric in E2534 / R2534C5: got '#N/A'Expecting numeric in G2534 / R2534C7: got '#N/A'Expecting numeric in B2535 / R2535C2: got '#N/A'Expecting numeric in E2535 / R2535C5: got '#N/A'Expecting numeric in G2535 / R2535C7: got '#N/A'Expecting numeric in B2536 / R2536C2: got '#N/A'Expecting numeric in E2536 / R2536C5: got '#N/A'Expecting numeric in G2536 / R2536C7: got '#N/A'Expecting numeric in B2537 / R2537C2: got '#N/A'Expecting numeric in E2537 / R2537C5: got '#N/A'Expecting numeric in G2537 / R2537C7: got '#N/A'Expecting numeric in B2538 / R2538C2: got '#N/A'Expecting numeric in E2538 / R2538C5: got '#N/A'Expecting numeric in G2538 / R2538C7: got '#N/A'Expecting numeric in B2539 / R2539C2: got '#N/A'Expecting numeric in E2539 / R2539C5: got '#N/A'Expecting numeric in G2539 / R2539C7: got '#N/A'Expecting numeric in B2540 / R2540C2: got '#N/A'Expecting numeric in E2540 / R2540C5: got '#N/A'Expecting numeric in G2540 / R2540C7: got '#N/A'Expecting numeric in B2541 / R2541C2: got '#N/A'Expecting numeric in E2541 / R2541C5: got '#N/A'Expecting numeric in G2541 / R2541C7: got '#N/A'Expecting numeric in B2542 / R2542C2: got '#N/A'Expecting numeric in E2542 / R2542C5: got '#N/A'Expecting numeric in G2542 / R2542C7: got '#N/A'Expecting numeric in B2543 / R2543C2: got '#N/A'Expecting numeric in E2543 / R2543C5: got '#N/A'Expecting numeric in G2543 / R2543C7: got '#N/A'Expecting numeric in B2544 / R2544C2: got '#N/A'Expecting numeric in E2544 / R2544C5: got '#N/A'Expecting numeric in G2544 / R2544C7: got '#N/A'Expecting numeric in B2545 / R2545C2: got '#N/A'Expecting numeric in E2545 / R2545C5: got '#N/A'Expecting numeric in G2545 / R2545C7: got '#N/A'Expecting numeric in B2546 / R2546C2: got '#N/A'Expecting numeric in E2546 / R2546C5: got '#N/A'Expecting numeric in G2546 / R2546C7: got '#N/A'Expecting numeric in B2547 / R2547C2: got '#N/A'Expecting numeric in E2547 / R2547C5: got '#N/A'Expecting numeric in G2547 / R2547C7: got '#N/A'Expecting numeric in B2548 / R2548C2: got '#N/A'Expecting numeric in E2548 / R2548C5: got '#N/A'Expecting numeric in G2548 / R2548C7: got '#N/A'Expecting numeric in B2549 / R2549C2: got '#N/A'Expecting numeric in E2549 / R2549C5: got '#N/A'Expecting numeric in G2549 / R2549C7: got '#N/A'Expecting numeric in B2550 / R2550C2: got '#N/A'Expecting numeric in E2550 / R2550C5: got '#N/A'Expecting numeric in G2550 / R2550C7: got '#N/A'Expecting numeric in B2551 / R2551C2: got '#N/A'Expecting numeric in E2551 / R2551C5: got '#N/A'Expecting numeric in G2551 / R2551C7: got '#N/A'Expecting numeric in B2552 / R2552C2: got '#N/A'Expecting numeric in E2552 / R2552C5: got '#N/A'Expecting numeric in G2552 / R2552C7: got '#N/A'Expecting numeric in B2553 / R2553C2: got '#N/A'Expecting numeric in E2553 / R2553C5: got '#N/A'Expecting numeric in G2553 / R2553C7: got '#N/A'Expecting numeric in B2554 / R2554C2: got '#N/A'Expecting numeric in E2554 / R2554C5: got '#N/A'Expecting numeric in G2554 / R2554C7: got '#N/A'Expecting numeric in B2555 / R2555C2: got '#N/A'Expecting numeric in E2555 / R2555C5: got '#N/A'Expecting numeric in G2555 / R2555C7: got '#N/A'Expecting numeric in B2556 / R2556C2: got '#N/A'Expecting numeric in E2556 / R2556C5: got '#N/A'Expecting numeric in G2556 / R2556C7: got '#N/A'Expecting numeric in B2557 / R2557C2: got '#N/A'Expecting numeric in E2557 / R2557C5: got '#N/A'Expecting numeric in G2557 / R2557C7: got '#N/A'Expecting numeric in B2558 / R2558C2: got '#N/A'Expecting numeric in E2558 / R2558C5: got '#N/A'Expecting numeric in G2558 / R2558C7: got '#N/A'Expecting numeric in B2559 / R2559C2: got '#N/A'Expecting numeric in E2559 / R2559C5: got '#N/A'Expecting numeric in G2559 / R2559C7: got '#N/A'Expecting numeric in B2560 / R2560C2: got '#N/A'Expecting numeric in E2560 / R2560C5: got '#N/A'Expecting numeric in G2560 / R2560C7: got '#N/A'Expecting numeric in B2561 / R2561C2: got '#N/A'Expecting numeric in E2561 / R2561C5: got '#N/A'Expecting numeric in G2561 / R2561C7: got '#N/A'Expecting numeric in B2562 / R2562C2: got '#N/A'Expecting numeric in E2562 / R2562C5: got '#N/A'Expecting numeric in G2562 / R2562C7: got '#N/A'Expecting numeric in B2563 / R2563C2: got '#N/A'Expecting numeric in E2563 / R2563C5: got '#N/A'Expecting numeric in G2563 / R2563C7: got '#N/A'Expecting numeric in B2564 / R2564C2: got '#N/A'Expecting numeric in E2564 / R2564C5: got '#N/A'Expecting numeric in G2564 / R2564C7: got '#N/A'Expecting numeric in B2565 / R2565C2: got '#N/A'Expecting numeric in E2565 / R2565C5: got '#N/A'Expecting numeric in G2565 / R2565C7: got '#N/A'Expecting numeric in B2566 / R2566C2: got '#N/A'Expecting numeric in E2566 / R2566C5: got '#N/A'Expecting numeric in G2566 / R2566C7: got '#N/A'Expecting numeric in B2567 / R2567C2: got '#N/A'Expecting numeric in E2567 / R2567C5: got '#N/A'Expecting numeric in G2567 / R2567C7: got '#N/A'Expecting numeric in B2568 / R2568C2: got '#N/A'Expecting numeric in E2568 / R2568C5: got '#N/A'Expecting numeric in G2568 / R2568C7: got '#N/A'Expecting numeric in B2569 / R2569C2: got '#N/A'Expecting numeric in E2569 / R2569C5: got '#N/A'Expecting numeric in G2569 / R2569C7: got '#N/A'Expecting numeric in B2570 / R2570C2: got '#N/A'Expecting numeric in E2570 / R2570C5: got '#N/A'Expecting numeric in G2570 / R2570C7: got '#N/A'Expecting numeric in B2571 / R2571C2: got '#N/A'Expecting numeric in E2571 / R2571C5: got '#N/A'Expecting numeric in G2571 / R2571C7: got '#N/A'Expecting numeric in B2572 / R2572C2: got '#N/A'Expecting numeric in E2572 / R2572C5: got '#N/A'Expecting numeric in G2572 / R2572C7: got '#N/A'Expecting numeric in B2573 / R2573C2: got '#N/A'Expecting numeric in E2573 / R2573C5: got '#N/A'Expecting numeric in G2573 / R2573C7: got '#N/A'Expecting numeric in B2574 / R2574C2: got '#N/A'Expecting numeric in E2574 / R2574C5: got '#N/A'Expecting numeric in G2574 / R2574C7: got '#N/A'Expecting numeric in B2575 / R2575C2: got '#N/A'Expecting numeric in E2575 / R2575C5: got '#N/A'Expecting numeric in G2575 / R2575C7: got '#N/A'Expecting numeric in B2576 / R2576C2: got '#N/A'Expecting numeric in E2576 / R2576C5: got '#N/A'Expecting numeric in G2576 / R2576C7: got '#N/A'Expecting numeric in B2577 / R2577C2: got '#N/A'Expecting numeric in E2577 / R2577C5: got '#N/A'Expecting numeric in G2577 / R2577C7: got '#N/A'Expecting numeric in B2578 / R2578C2: got '#N/A'Expecting numeric in E2578 / R2578C5: got '#N/A'Expecting numeric in G2578 / R2578C7: got '#N/A'Expecting numeric in B2579 / R2579C2: got '#N/A'Expecting numeric in E2579 / R2579C5: got '#N/A'Expecting numeric in G2579 / R2579C7: got '#N/A'Expecting numeric in B2580 / R2580C2: got '#N/A'Expecting numeric in E2580 / R2580C5: got '#N/A'Expecting numeric in G2580 / R2580C7: got '#N/A'Expecting numeric in B2581 / R2581C2: got '#N/A'Expecting numeric in E2581 / R2581C5: got '#N/A'Expecting numeric in G2581 / R2581C7: got '#N/A'Expecting numeric in B2582 / R2582C2: got '#N/A'Expecting numeric in E2582 / R2582C5: got '#N/A'Expecting numeric in G2582 / R2582C7: got '#N/A'Expecting numeric in B2583 / R2583C2: got '#N/A'Expecting numeric in E2583 / R2583C5: got '#N/A'Expecting numeric in G2583 / R2583C7: got '#N/A'Expecting numeric in B2584 / R2584C2: got '#N/A'Expecting numeric in E2584 / R2584C5: got '#N/A'Expecting numeric in G2584 / R2584C7: got '#N/A'Expecting numeric in B2585 / R2585C2: got '#N/A'Expecting numeric in E2585 / R2585C5: got '#N/A'Expecting numeric in G2585 / R2585C7: got '#N/A'Expecting numeric in B2586 / R2586C2: got '#N/A'Expecting numeric in E2586 / R2586C5: got '#N/A'Expecting numeric in G2586 / R2586C7: got '#N/A'Expecting numeric in B2587 / R2587C2: got '#N/A'Expecting numeric in E2587 / R2587C5: got '#N/A'Expecting numeric in G2587 / R2587C7: got '#N/A'Expecting numeric in B2588 / R2588C2: got '#N/A'Expecting numeric in E2588 / R2588C5: got '#N/A'Expecting numeric in G2588 / R2588C7: got '#N/A'Expecting numeric in B2589 / R2589C2: got '#N/A'Expecting numeric in E2589 / R2589C5: got '#N/A'Expecting numeric in G2589 / R2589C7: got '#N/A'Expecting numeric in B2590 / R2590C2: got '#N/A'Expecting numeric in E2590 / R2590C5: got '#N/A'Expecting numeric in G2590 / R2590C7: got '#N/A'Expecting numeric in B2591 / R2591C2: got '#N/A'Expecting numeric in E2591 / R2591C5: got '#N/A'Expecting numeric in G2591 / R2591C7: got '#N/A'Expecting numeric in B2592 / R2592C2: got '#N/A'Expecting numeric in E2592 / R2592C5: got '#N/A'Expecting numeric in G2592 / R2592C7: got '#N/A'Expecting numeric in B2593 / R2593C2: got '#N/A'Expecting numeric in E2593 / R2593C5: got '#N/A'Expecting numeric in G2593 / R2593C7: got '#N/A'Expecting numeric in B2594 / R2594C2: got '#N/A'Expecting numeric in E2594 / R2594C5: got '#N/A'Expecting numeric in G2594 / R2594C7: got '#N/A'Expecting numeric in B2595 / R2595C2: got '#N/A'Expecting numeric in E2595 / R2595C5: got '#N/A'Expecting numeric in G2595 / R2595C7: got '#N/A'Expecting numeric in B2596 / R2596C2: got '#N/A'Expecting numeric in E2596 / R2596C5: got '#N/A'Expecting numeric in G2596 / R2596C7: got '#N/A'Expecting numeric in B2597 / R2597C2: got '#N/A'Expecting numeric in E2597 / R2597C5: got '#N/A'Expecting numeric in G2597 / R2597C7: got '#N/A'Expecting numeric in B2598 / R2598C2: got '#N/A'Expecting numeric in E2598 / R2598C5: got '#N/A'Expecting numeric in G2598 / R2598C7: got '#N/A'Expecting numeric in B2599 / R2599C2: got '#N/A'Expecting numeric in E2599 / R2599C5: got '#N/A'Expecting numeric in G2599 / R2599C7: got '#N/A'Expecting numeric in B2600 / R2600C2: got '#N/A'Expecting numeric in E2600 / R2600C5: got '#N/A'Expecting numeric in G2600 / R2600C7: got '#N/A'Expecting numeric in B2601 / R2601C2: got '#N/A'Expecting numeric in E2601 / R2601C5: got '#N/A'Expecting numeric in G2601 / R2601C7: got '#N/A'Expecting numeric in B2602 / R2602C2: got '#N/A'Expecting numeric in E2602 / R2602C5: got '#N/A'Expecting numeric in G2602 / R2602C7: got '#N/A'Expecting numeric in B2603 / R2603C2: got '#N/A'Expecting numeric in E2603 / R2603C5: got '#N/A'Expecting numeric in G2603 / R2603C7: got '#N/A'Expecting numeric in B2604 / R2604C2: got '#N/A'Expecting numeric in E2604 / R2604C5: got '#N/A'Expecting numeric in G2604 / R2604C7: got '#N/A'Expecting numeric in B2605 / R2605C2: got '#N/A'Expecting numeric in E2605 / R2605C5: got '#N/A'Expecting numeric in G2605 / R2605C7: got '#N/A'Expecting numeric in B2606 / R2606C2: got '#N/A'Expecting numeric in E2606 / R2606C5: got '#N/A'Expecting numeric in G2606 / R2606C7: got '#N/A'Expecting numeric in B2607 / R2607C2: got '#N/A'Expecting numeric in E2607 / R2607C5: got '#N/A'Expecting numeric in G2607 / R2607C7: got '#N/A'Expecting numeric in B2608 / R2608C2: got '#N/A'Expecting numeric in E2608 / R2608C5: got '#N/A'Expecting numeric in G2608 / R2608C7: got '#N/A'Expecting numeric in B2609 / R2609C2: got '#N/A'Expecting numeric in E2609 / R2609C5: got '#N/A'Expecting numeric in G2609 / R2609C7: got '#N/A'Expecting numeric in B2610 / R2610C2: got '#N/A'Expecting numeric in E2610 / R2610C5: got '#N/A'Expecting numeric in G2610 / R2610C7: got '#N/A'Expecting numeric in B2611 / R2611C2: got '#N/A'Expecting numeric in E2611 / R2611C5: got '#N/A'Expecting numeric in G2611 / R2611C7: got '#N/A'Expecting numeric in B2612 / R2612C2: got '#N/A'Expecting numeric in E2612 / R2612C5: got '#N/A'Expecting numeric in G2612 / R2612C7: got '#N/A'Expecting numeric in B2613 / R2613C2: got '#N/A'Expecting numeric in E2613 / R2613C5: got '#N/A'Expecting numeric in G2613 / R2613C7: got '#N/A'Expecting numeric in B2614 / R2614C2: got '#N/A'Expecting numeric in E2614 / R2614C5: got '#N/A'Expecting numeric in G2614 / R2614C7: got '#N/A'Expecting numeric in B2615 / R2615C2: got '#N/A'Expecting numeric in E2615 / R2615C5: got '#N/A'Expecting numeric in G2615 / R2615C7: got '#N/A'Expecting numeric in B2616 / R2616C2: got '#N/A'Expecting numeric in E2616 / R2616C5: got '#N/A'Expecting numeric in G2616 / R2616C7: got '#N/A'Expecting numeric in B2617 / R2617C2: got '#N/A'Expecting numeric in E2617 / R2617C5: got '#N/A'Expecting numeric in G2617 / R2617C7: got '#N/A'Expecting numeric in B2618 / R2618C2: got '#N/A'Expecting numeric in E2618 / R2618C5: got '#N/A'Expecting numeric in G2618 / R2618C7: got '#N/A'Expecting numeric in B2619 / R2619C2: got '#N/A'Expecting numeric in E2619 / R2619C5: got '#N/A'Expecting numeric in G2619 / R2619C7: got '#N/A'Expecting numeric in B2620 / R2620C2: got '#N/A'Expecting numeric in E2620 / R2620C5: got '#N/A'Expecting numeric in G2620 / R2620C7: got '#N/A'Expecting numeric in B2621 / R2621C2: got '#N/A'Expecting numeric in E2621 / R2621C5: got '#N/A'Expecting numeric in G2621 / R2621C7: got '#N/A'Expecting numeric in B2622 / R2622C2: got '#N/A'Expecting numeric in E2622 / R2622C5: got '#N/A'Expecting numeric in G2622 / R2622C7: got '#N/A'Expecting numeric in B2623 / R2623C2: got '#N/A'Expecting numeric in E2623 / R2623C5: got '#N/A'Expecting numeric in G2623 / R2623C7: got '#N/A'Expecting numeric in B2624 / R2624C2: got '#N/A'Expecting numeric in E2624 / R2624C5: got '#N/A'Expecting numeric in G2624 / R2624C7: got '#N/A'Expecting numeric in B2625 / R2625C2: got '#N/A'Expecting numeric in E2625 / R2625C5: got '#N/A'Expecting numeric in G2625 / R2625C7: got '#N/A'Expecting numeric in B2626 / R2626C2: got '#N/A'Expecting numeric in E2626 / R2626C5: got '#N/A'Expecting numeric in G2626 / R2626C7: got '#N/A'Expecting numeric in B2627 / R2627C2: got '#N/A'Expecting numeric in E2627 / R2627C5: got '#N/A'Expecting numeric in G2627 / R2627C7: got '#N/A'Expecting numeric in B2628 / R2628C2: got '#N/A'Expecting numeric in E2628 / R2628C5: got '#N/A'Expecting numeric in G2628 / R2628C7: got '#N/A'Expecting numeric in B2629 / R2629C2: got '#N/A'Expecting numeric in E2629 / R2629C5: got '#N/A'Expecting numeric in G2629 / R2629C7: got '#N/A'Expecting numeric in B2630 / R2630C2: got '#N/A'Expecting numeric in E2630 / R2630C5: got '#N/A'Expecting numeric in G2630 / R2630C7: got '#N/A'Expecting numeric in B2631 / R2631C2: got '#N/A'Expecting numeric in E2631 / R2631C5: got '#N/A'Expecting numeric in G2631 / R2631C7: got '#N/A'Expecting numeric in B2632 / R2632C2: got '#N/A'Expecting numeric in E2632 / R2632C5: got '#N/A'Expecting numeric in G2632 / R2632C7: got '#N/A'Expecting numeric in B2633 / R2633C2: got '#N/A'Expecting numeric in E2633 / R2633C5: got '#N/A'Expecting numeric in G2633 / R2633C7: got '#N/A'Expecting numeric in B2634 / R2634C2: got '#N/A'Expecting numeric in E2634 / R2634C5: got '#N/A'Expecting numeric in G2634 / R2634C7: got '#N/A'Expecting numeric in B2635 / R2635C2: got '#N/A'Expecting numeric in E2635 / R2635C5: got '#N/A'Expecting numeric in G2635 / R2635C7: got '#N/A'Expecting numeric in B2636 / R2636C2: got '#N/A'Expecting numeric in E2636 / R2636C5: got '#N/A'Expecting numeric in G2636 / R2636C7: got '#N/A'Expecting numeric in B2637 / R2637C2: got '#N/A'Expecting numeric in E2637 / R2637C5: got '#N/A'Expecting numeric in G2637 / R2637C7: got '#N/A'Expecting numeric in B2638 / R2638C2: got '#N/A'Expecting numeric in E2638 / R2638C5: got '#N/A'Expecting numeric in G2638 / R2638C7: got '#N/A'Expecting numeric in B2639 / R2639C2: got '#N/A'Expecting numeric in E2639 / R2639C5: got '#N/A'Expecting numeric in G2639 / R2639C7: got '#N/A'Expecting numeric in B2640 / R2640C2: got '#N/A'Expecting numeric in E2640 / R2640C5: got '#N/A'Expecting numeric in G2640 / R2640C7: got '#N/A'Expecting numeric in B2641 / R2641C2: got '#N/A'Expecting numeric in E2641 / R2641C5: got '#N/A'Expecting numeric in G2641 / R2641C7: got '#N/A'Expecting numeric in B2642 / R2642C2: got '#N/A'Expecting numeric in E2642 / R2642C5: got '#N/A'Expecting numeric in G2642 / R2642C7: got '#N/A'Expecting numeric in B2643 / R2643C2: got '#N/A'Expecting numeric in E2643 / R2643C5: got '#N/A'Expecting numeric in G2643 / R2643C7: got '#N/A'Expecting numeric in B2644 / R2644C2: got '#N/A'Expecting numeric in E2644 / R2644C5: got '#N/A'Expecting numeric in G2644 / R2644C7: got '#N/A'Expecting numeric in B2645 / R2645C2: got '#N/A'Expecting numeric in E2645 / R2645C5: got '#N/A'Expecting numeric in G2645 / R2645C7: got '#N/A'Expecting numeric in B2646 / R2646C2: got '#N/A'Expecting numeric in E2646 / R2646C5: got '#N/A'Expecting numeric in G2646 / R2646C7: got '#N/A'Expecting numeric in B2647 / R2647C2: got '#N/A'Expecting numeric in E2647 / R2647C5: got '#N/A'Expecting numeric in G2647 / R2647C7: got '#N/A'Expecting numeric in B2648 / R2648C2: got '#N/A'Expecting numeric in E2648 / R2648C5: got '#N/A'Expecting numeric in G2648 / R2648C7: got '#N/A'Expecting numeric in B2649 / R2649C2: got '#N/A'Expecting numeric in E2649 / R2649C5: got '#N/A'Expecting numeric in G2649 / R2649C7: got '#N/A'Expecting numeric in B2650 / R2650C2: got '#N/A'Expecting numeric in E2650 / R2650C5: got '#N/A'Expecting numeric in G2650 / R2650C7: got '#N/A'Expecting numeric in B2651 / R2651C2: got '#N/A'Expecting numeric in E2651 / R2651C5: got '#N/A'Expecting numeric in G2651 / R2651C7: got '#N/A'Expecting numeric in B2652 / R2652C2: got '#N/A'Expecting numeric in E2652 / R2652C5: got '#N/A'Expecting numeric in G2652 / R2652C7: got '#N/A'Expecting numeric in B2653 / R2653C2: got '#N/A'Expecting numeric in E2653 / R2653C5: got '#N/A'Expecting numeric in G2653 / R2653C7: got '#N/A'Expecting numeric in B2654 / R2654C2: got '#N/A'Expecting numeric in E2654 / R2654C5: got '#N/A'Expecting numeric in G2654 / R2654C7: got '#N/A'Expecting numeric in B2655 / R2655C2: got '#N/A'Expecting numeric in E2655 / R2655C5: got '#N/A'Expecting numeric in G2655 / R2655C7: got '#N/A'Expecting numeric in B2656 / R2656C2: got '#N/A'Expecting numeric in E2656 / R2656C5: got '#N/A'Expecting numeric in G2656 / R2656C7: got '#N/A'Expecting numeric in B2657 / R2657C2: got '#N/A'Expecting numeric in E2657 / R2657C5: got '#N/A'Expecting numeric in G2657 / R2657C7: got '#N/A'Expecting numeric in B2658 / R2658C2: got '#N/A'Expecting numeric in E2658 / R2658C5: got '#N/A'Expecting numeric in G2658 / R2658C7: got '#N/A'Expecting numeric in B2659 / R2659C2: got '#N/A'Expecting numeric in E2659 / R2659C5: got '#N/A'Expecting numeric in G2659 / R2659C7: got '#N/A'Expecting numeric in B2660 / R2660C2: got '#N/A'Expecting numeric in E2660 / R2660C5: got '#N/A'Expecting numeric in G2660 / R2660C7: got '#N/A'Expecting numeric in B2661 / R2661C2: got '#N/A'Expecting numeric in E2661 / R2661C5: got '#N/A'Expecting numeric in G2661 / R2661C7: got '#N/A'Expecting numeric in B2662 / R2662C2: got '#N/A'Expecting numeric in E2662 / R2662C5: got '#N/A'Expecting numeric in G2662 / R2662C7: got '#N/A'Expecting numeric in B2663 / R2663C2: got '#N/A'Expecting numeric in E2663 / R2663C5: got '#N/A'Expecting numeric in G2663 / R2663C7: got '#N/A'Expecting numeric in B2664 / R2664C2: got '#N/A'Expecting numeric in E2664 / R2664C5: got '#N/A'Expecting numeric in G2664 / R2664C7: got '#N/A'Expecting numeric in B2665 / R2665C2: got '#N/A'Expecting numeric in E2665 / R2665C5: got '#N/A'Expecting numeric in G2665 / R2665C7: got '#N/A'Expecting numeric in B2666 / R2666C2: got '#N/A'Expecting numeric in E2666 / R2666C5: got '#N/A'Expecting numeric in G2666 / R2666C7: got '#N/A'Expecting numeric in B2667 / R2667C2: got '#N/A'Expecting numeric in E2667 / R2667C5: got '#N/A'Expecting numeric in G2667 / R2667C7: got '#N/A'Expecting numeric in B2668 / R2668C2: got '#N/A'Expecting numeric in E2668 / R2668C5: got '#N/A'Expecting numeric in G2668 / R2668C7: got '#N/A'Expecting numeric in B2669 / R2669C2: got '#N/A'Expecting numeric in E2669 / R2669C5: got '#N/A'Expecting numeric in G2669 / R2669C7: got '#N/A'Expecting numeric in B2670 / R2670C2: got '#N/A'Expecting numeric in E2670 / R2670C5: got '#N/A'Expecting numeric in G2670 / R2670C7: got '#N/A'Expecting numeric in B2671 / R2671C2: got '#N/A'Expecting numeric in E2671 / R2671C5: got '#N/A'Expecting numeric in G2671 / R2671C7: got '#N/A'Expecting numeric in B2672 / R2672C2: got '#N/A'Expecting numeric in E2672 / R2672C5: got '#N/A'Expecting numeric in G2672 / R2672C7: got '#N/A'Expecting numeric in B2673 / R2673C2: got '#N/A'Expecting numeric in E2673 / R2673C5: got '#N/A'Expecting numeric in G2673 / R2673C7: got '#N/A'Expecting numeric in B2674 / R2674C2: got '#N/A'Expecting numeric in E2674 / R2674C5: got '#N/A'Expecting numeric in G2674 / R2674C7: got '#N/A'Expecting numeric in B2675 / R2675C2: got '#N/A'Expecting numeric in E2675 / R2675C5: got '#N/A'Expecting numeric in G2675 / R2675C7: got '#N/A'Expecting numeric in B2676 / R2676C2: got '#N/A'Expecting numeric in E2676 / R2676C5: got '#N/A'Expecting numeric in G2676 / R2676C7: got '#N/A'Expecting numeric in B2677 / R2677C2: got '#N/A'Expecting numeric in E2677 / R2677C5: got '#N/A'Expecting numeric in G2677 / R2677C7: got '#N/A'Expecting numeric in B2678 / R2678C2: got '#N/A'Expecting numeric in E2678 / R2678C5: got '#N/A'Expecting numeric in G2678 / R2678C7: got '#N/A'Expecting numeric in B2679 / R2679C2: got '#N/A'Expecting numeric in E2679 / R2679C5: got '#N/A'Expecting numeric in G2679 / R2679C7: got '#N/A'Expecting numeric in B2680 / R2680C2: got '#N/A'Expecting numeric in E2680 / R2680C5: got '#N/A'Expecting numeric in G2680 / R2680C7: got '#N/A'Expecting numeric in B2681 / R2681C2: got '#N/A'Expecting numeric in E2681 / R2681C5: got '#N/A'Expecting numeric in G2681 / R2681C7: got '#N/A'Expecting numeric in B2682 / R2682C2: got '#N/A'Expecting numeric in E2682 / R2682C5: got '#N/A'Expecting numeric in G2682 / R2682C7: got '#N/A'Expecting numeric in B2683 / R2683C2: got '#N/A'Expecting numeric in E2683 / R2683C5: got '#N/A'Expecting numeric in G2683 / R2683C7: got '#N/A'Expecting numeric in B2684 / R2684C2: got '#N/A'Expecting numeric in E2684 / R2684C5: got '#N/A'Expecting numeric in G2684 / R2684C7: got '#N/A'Expecting numeric in B2685 / R2685C2: got '#N/A'Expecting numeric in E2685 / R2685C5: got '#N/A'Expecting numeric in G2685 / R2685C7: got '#N/A'Expecting numeric in B2686 / R2686C2: got '#N/A'Expecting numeric in E2686 / R2686C5: got '#N/A'Expecting numeric in G2686 / R2686C7: got '#N/A'Expecting numeric in B2687 / R2687C2: got '#N/A'Expecting numeric in E2687 / R2687C5: got '#N/A'Expecting numeric in G2687 / R2687C7: got '#N/A'Expecting numeric in B2688 / R2688C2: got '#N/A'Expecting numeric in E2688 / R2688C5: got '#N/A'Expecting numeric in G2688 / R2688C7: got '#N/A'Expecting numeric in B2689 / R2689C2: got '#N/A'Expecting numeric in E2689 / R2689C5: got '#N/A'Expecting numeric in G2689 / R2689C7: got '#N/A'Expecting numeric in B2690 / R2690C2: got '#N/A'Expecting numeric in E2690 / R2690C5: got '#N/A'Expecting numeric in G2690 / R2690C7: got '#N/A'Expecting numeric in B2691 / R2691C2: got '#N/A'Expecting numeric in E2691 / R2691C5: got '#N/A'Expecting numeric in G2691 / R2691C7: got '#N/A'Expecting numeric in B2692 / R2692C2: got '#N/A'Expecting numeric in E2692 / R2692C5: got '#N/A'Expecting numeric in G2692 / R2692C7: got '#N/A'Expecting numeric in B2693 / R2693C2: got '#N/A'Expecting numeric in E2693 / R2693C5: got '#N/A'Expecting numeric in G2693 / R2693C7: got '#N/A'Expecting numeric in B2694 / R2694C2: got '#N/A'Expecting numeric in E2694 / R2694C5: got '#N/A'Expecting numeric in G2694 / R2694C7: got '#N/A'Expecting numeric in B2695 / R2695C2: got '#N/A'Expecting numeric in E2695 / R2695C5: got '#N/A'Expecting numeric in G2695 / R2695C7: got '#N/A'Expecting numeric in B2696 / R2696C2: got '#N/A'Expecting numeric in E2696 / R2696C5: got '#N/A'Expecting numeric in G2696 / R2696C7: got '#N/A'Expecting numeric in B2697 / R2697C2: got '#N/A'Expecting numeric in E2697 / R2697C5: got '#N/A'Expecting numeric in G2697 / R2697C7: got '#N/A'Expecting numeric in B2698 / R2698C2: got '#N/A'Expecting numeric in E2698 / R2698C5: got '#N/A'Expecting numeric in G2698 / R2698C7: got '#N/A'Expecting numeric in B2699 / R2699C2: got '#N/A'Expecting numeric in E2699 / R2699C5: got '#N/A'Expecting numeric in G2699 / R2699C7: got '#N/A'Expecting numeric in B2700 / R2700C2: got '#N/A'Expecting numeric in E2700 / R2700C5: got '#N/A'Expecting numeric in G2700 / R2700C7: got '#N/A'Expecting numeric in B2701 / R2701C2: got '#N/A'Expecting numeric in E2701 / R2701C5: got '#N/A'Expecting numeric in G2701 / R2701C7: got '#N/A'Expecting numeric in B2702 / R2702C2: got '#N/A'Expecting numeric in E2702 / R2702C5: got '#N/A'Expecting numeric in G2702 / R2702C7: got '#N/A'Expecting numeric in B2703 / R2703C2: got '#N/A'Expecting numeric in E2703 / R2703C5: got '#N/A'Expecting numeric in G2703 / R2703C7: got '#N/A'Expecting numeric in B2704 / R2704C2: got '#N/A'Expecting numeric in E2704 / R2704C5: got '#N/A'Expecting numeric in G2704 / R2704C7: got '#N/A'Expecting numeric in B2705 / R2705C2: got '#N/A'Expecting numeric in E2705 / R2705C5: got '#N/A'Expecting numeric in G2705 / R2705C7: got '#N/A'Expecting numeric in B2706 / R2706C2: got '#N/A'Expecting numeric in E2706 / R2706C5: got '#N/A'Expecting numeric in G2706 / R2706C7: got '#N/A'Expecting numeric in B2707 / R2707C2: got '#N/A'Expecting numeric in E2707 / R2707C5: got '#N/A'Expecting numeric in G2707 / R2707C7: got '#N/A'Expecting numeric in B2708 / R2708C2: got '#N/A'Expecting numeric in E2708 / R2708C5: got '#N/A'Expecting numeric in G2708 / R2708C7: got '#N/A'Expecting numeric in B2709 / R2709C2: got '#N/A'Expecting numeric in E2709 / R2709C5: got '#N/A'Expecting numeric in G2709 / R2709C7: got '#N/A'Expecting numeric in B2710 / R2710C2: got '#N/A'Expecting numeric in E2710 / R2710C5: got '#N/A'Expecting numeric in G2710 / R2710C7: got '#N/A'Expecting numeric in B2711 / R2711C2: got '#N/A'Expecting numeric in E2711 / R2711C5: got '#N/A'Expecting numeric in G2711 / R2711C7: got '#N/A'Expecting numeric in B2712 / R2712C2: got '#N/A'Expecting numeric in E2712 / R2712C5: got '#N/A'Expecting numeric in G2712 / R2712C7: got '#N/A'Expecting numeric in B2713 / R2713C2: got '#N/A'Expecting numeric in E2713 / R2713C5: got '#N/A'Expecting numeric in G2713 / R2713C7: got '#N/A'Expecting numeric in B2714 / R2714C2: got '#N/A'Expecting numeric in E2714 / R2714C5: got '#N/A'Expecting numeric in G2714 / R2714C7: got '#N/A'Expecting numeric in B2715 / R2715C2: got '#N/A'Expecting numeric in E2715 / R2715C5: got '#N/A'Expecting numeric in G2715 / R2715C7: got '#N/A'Expecting numeric in B2716 / R2716C2: got '#N/A'Expecting numeric in E2716 / R2716C5: got '#N/A'Expecting numeric in G2716 / R2716C7: got '#N/A'Expecting numeric in B2717 / R2717C2: got '#N/A'Expecting numeric in E2717 / R2717C5: got '#N/A'Expecting numeric in G2717 / R2717C7: got '#N/A'Expecting numeric in B2718 / R2718C2: got '#N/A'Expecting numeric in E2718 / R2718C5: got '#N/A'Expecting numeric in G2718 / R2718C7: got '#N/A'Expecting numeric in B2719 / R2719C2: got '#N/A'Expecting numeric in E2719 / R2719C5: got '#N/A'Expecting numeric in G2719 / R2719C7: got '#N/A'Expecting numeric in B2720 / R2720C2: got '#N/A'Expecting numeric in E2720 / R2720C5: got '#N/A'Expecting numeric in G2720 / R2720C7: got '#N/A'Expecting numeric in B2721 / R2721C2: got '#N/A'Expecting numeric in E2721 / R2721C5: got '#N/A'Expecting numeric in G2721 / R2721C7: got '#N/A'Expecting numeric in B2722 / R2722C2: got '#N/A'Expecting numeric in E2722 / R2722C5: got '#N/A'Expecting numeric in G2722 / R2722C7: got '#N/A'Expecting numeric in B2723 / R2723C2: got '#N/A'Expecting numeric in E2723 / R2723C5: got '#N/A'Expecting numeric in G2723 / R2723C7: got '#N/A'Expecting numeric in B2724 / R2724C2: got '#N/A'Expecting numeric in E2724 / R2724C5: got '#N/A'Expecting numeric in G2724 / R2724C7: got '#N/A'Expecting numeric in B2725 / R2725C2: got '#N/A'Expecting numeric in E2725 / R2725C5: got '#N/A'Expecting numeric in G2725 / R2725C7: got '#N/A'Expecting numeric in B2726 / R2726C2: got '#N/A'Expecting numeric in E2726 / R2726C5: got '#N/A'Expecting numeric in G2726 / R2726C7: got '#N/A'Expecting numeric in B2727 / R2727C2: got '#N/A'Expecting numeric in E2727 / R2727C5: got '#N/A'Expecting numeric in G2727 / R2727C7: got '#N/A'Expecting numeric in B2728 / R2728C2: got '#N/A'Expecting numeric in E2728 / R2728C5: got '#N/A'Expecting numeric in G2728 / R2728C7: got '#N/A'Expecting numeric in B2729 / R2729C2: got '#N/A'Expecting numeric in E2729 / R2729C5: got '#N/A'Expecting numeric in G2729 / R2729C7: got '#N/A'Expecting numeric in B2730 / R2730C2: got '#N/A'Expecting numeric in E2730 / R2730C5: got '#N/A'Expecting numeric in G2730 / R2730C7: got '#N/A'Expecting numeric in B2731 / R2731C2: got '#N/A'Expecting numeric in E2731 / R2731C5: got '#N/A'Expecting numeric in G2731 / R2731C7: got '#N/A'Expecting numeric in B2732 / R2732C2: got '#N/A'Expecting numeric in E2732 / R2732C5: got '#N/A'Expecting numeric in G2732 / R2732C7: got '#N/A'Expecting numeric in B2733 / R2733C2: got '#N/A'Expecting numeric in E2733 / R2733C5: got '#N/A'Expecting numeric in G2733 / R2733C7: got '#N/A'Expecting numeric in B2734 / R2734C2: got '#N/A'Expecting numeric in E2734 / R2734C5: got '#N/A'Expecting numeric in G2734 / R2734C7: got '#N/A'Expecting numeric in B2735 / R2735C2: got '#N/A'Expecting numeric in E2735 / R2735C5: got '#N/A'Expecting numeric in G2735 / R2735C7: got '#N/A'Expecting numeric in B2736 / R2736C2: got '#N/A'Expecting numeric in E2736 / R2736C5: got '#N/A'Expecting numeric in G2736 / R2736C7: got '#N/A'Expecting numeric in B2737 / R2737C2: got '#N/A'Expecting numeric in E2737 / R2737C5: got '#N/A'Expecting numeric in G2737 / R2737C7: got '#N/A'Expecting numeric in B2738 / R2738C2: got '#N/A'Expecting numeric in E2738 / R2738C5: got '#N/A'Expecting numeric in G2738 / R2738C7: got '#N/A'Expecting numeric in B2739 / R2739C2: got '#N/A'Expecting numeric in E2739 / R2739C5: got '#N/A'Expecting numeric in G2739 / R2739C7: got '#N/A'Expecting numeric in B2740 / R2740C2: got '#N/A'Expecting numeric in E2740 / R2740C5: got '#N/A'Expecting numeric in G2740 / R2740C7: got '#N/A'Expecting numeric in B2741 / R2741C2: got '#N/A'Expecting numeric in E2741 / R2741C5: got '#N/A'Expecting numeric in G2741 / R2741C7: got '#N/A'Expecting numeric in B2742 / R2742C2: got '#N/A'Expecting numeric in E2742 / R2742C5: got '#N/A'Expecting numeric in G2742 / R2742C7: got '#N/A'Expecting numeric in B2743 / R2743C2: got '#N/A'Expecting numeric in E2743 / R2743C5: got '#N/A'Expecting numeric in G2743 / R2743C7: got '#N/A'Expecting numeric in B2744 / R2744C2: got '#N/A'Expecting numeric in E2744 / R2744C5: got '#N/A'Expecting numeric in G2744 / R2744C7: got '#N/A'Expecting numeric in B2745 / R2745C2: got '#N/A'Expecting numeric in E2745 / R2745C5: got '#N/A'Expecting numeric in G2745 / R2745C7: got '#N/A'Expecting numeric in B2746 / R2746C2: got '#N/A'Expecting numeric in E2746 / R2746C5: got '#N/A'Expecting numeric in G2746 / R2746C7: got '#N/A'Expecting numeric in B2747 / R2747C2: got '#N/A'Expecting numeric in E2747 / R2747C5: got '#N/A'Expecting numeric in G2747 / R2747C7: got '#N/A'Expecting numeric in B2748 / R2748C2: got '#N/A'Expecting numeric in E2748 / R2748C5: got '#N/A'Expecting numeric in G2748 / R2748C7: got '#N/A'Expecting numeric in B2749 / R2749C2: got '#N/A'Expecting numeric in E2749 / R2749C5: got '#N/A'Expecting numeric in G2749 / R2749C7: got '#N/A'Expecting numeric in B2750 / R2750C2: got '#N/A'Expecting numeric in E2750 / R2750C5: got '#N/A'Expecting numeric in G2750 / R2750C7: got '#N/A'Expecting numeric in B2751 / R2751C2: got '#N/A'Expecting numeric in E2751 / R2751C5: got '#N/A'Expecting numeric in G2751 / R2751C7: got '#N/A'Expecting numeric in B2752 / R2752C2: got '#N/A'Expecting numeric in E2752 / R2752C5: got '#N/A'Expecting numeric in G2752 / R2752C7: got '#N/A'Expecting numeric in B2753 / R2753C2: got '#N/A'Expecting numeric in E2753 / R2753C5: got '#N/A'Expecting numeric in G2753 / R2753C7: got '#N/A'Expecting numeric in B2754 / R2754C2: got '#N/A'Expecting numeric in E2754 / R2754C5: got '#N/A'Expecting numeric in G2754 / R2754C7: got '#N/A'Expecting numeric in B2755 / R2755C2: got '#N/A'Expecting numeric in E2755 / R2755C5: got '#N/A'Expecting numeric in G2755 / R2755C7: got '#N/A'Expecting numeric in B2756 / R2756C2: got '#N/A'Expecting numeric in E2756 / R2756C5: got '#N/A'Expecting numeric in G2756 / R2756C7: got '#N/A'Expecting numeric in B2757 / R2757C2: got '#N/A'Expecting numeric in E2757 / R2757C5: got '#N/A'Expecting numeric in G2757 / R2757C7: got '#N/A'Expecting numeric in B2758 / R2758C2: got '#N/A'Expecting numeric in E2758 / R2758C5: got '#N/A'Expecting numeric in G2758 / R2758C7: got '#N/A'Expecting numeric in B2759 / R2759C2: got '#N/A'Expecting numeric in E2759 / R2759C5: got '#N/A'Expecting numeric in G2759 / R2759C7: got '#N/A'Expecting numeric in B2760 / R2760C2: got '#N/A'Expecting numeric in E2760 / R2760C5: got '#N/A'Expecting numeric in G2760 / R2760C7: got '#N/A'Expecting numeric in B2761 / R2761C2: got '#N/A'Expecting numeric in E2761 / R2761C5: got '#N/A'Expecting numeric in G2761 / R2761C7: got '#N/A'Expecting numeric in B2762 / R2762C2: got '#N/A'Expecting numeric in E2762 / R2762C5: got '#N/A'Expecting numeric in G2762 / R2762C7: got '#N/A'Expecting numeric in B2763 / R2763C2: got '#N/A'Expecting numeric in E2763 / R2763C5: got '#N/A'Expecting numeric in G2763 / R2763C7: got '#N/A'Expecting numeric in B2764 / R2764C2: got '#N/A'Expecting numeric in E2764 / R2764C5: got '#N/A'Expecting numeric in G2764 / R2764C7: got '#N/A'Expecting numeric in B2765 / R2765C2: got '#N/A'Expecting numeric in E2765 / R2765C5: got '#N/A'Expecting numeric in G2765 / R2765C7: got '#N/A'Expecting numeric in B2766 / R2766C2: got '#N/A'Expecting numeric in E2766 / R2766C5: got '#N/A'Expecting numeric in G2766 / R2766C7: got '#N/A'Expecting numeric in B2767 / R2767C2: got '#N/A'Expecting numeric in E2767 / R2767C5: got '#N/A'Expecting numeric in G2767 / R2767C7: got '#N/A'Expecting numeric in B2768 / R2768C2: got '#N/A'Expecting numeric in E2768 / R2768C5: got '#N/A'Expecting numeric in G2768 / R2768C7: got '#N/A'Expecting numeric in B2769 / R2769C2: got '#N/A'Expecting numeric in E2769 / R2769C5: got '#N/A'Expecting numeric in G2769 / R2769C7: got '#N/A'Expecting numeric in B2770 / R2770C2: got '#N/A'Expecting numeric in E2770 / R2770C5: got '#N/A'Expecting numeric in G2770 / R2770C7: got '#N/A'Expecting numeric in B2771 / R2771C2: got '#N/A'Expecting numeric in E2771 / R2771C5: got '#N/A'Expecting numeric in G2771 / R2771C7: got '#N/A'Expecting numeric in B2772 / R2772C2: got '#N/A'Expecting numeric in E2772 / R2772C5: got '#N/A'Expecting numeric in G2772 / R2772C7: got '#N/A'Expecting numeric in B2773 / R2773C2: got '#N/A'Expecting numeric in E2773 / R2773C5: got '#N/A'Expecting numeric in G2773 / R2773C7: got '#N/A'Expecting numeric in B2774 / R2774C2: got '#N/A'Expecting numeric in E2774 / R2774C5: got '#N/A'Expecting numeric in G2774 / R2774C7: got '#N/A'Expecting numeric in B2775 / R2775C2: got '#N/A'Expecting numeric in E2775 / R2775C5: got '#N/A'Expecting numeric in G2775 / R2775C7: got '#N/A'Expecting numeric in B2776 / R2776C2: got '#N/A'Expecting numeric in E2776 / R2776C5: got '#N/A'Expecting numeric in G2776 / R2776C7: got '#N/A'Expecting numeric in B2777 / R2777C2: got '#N/A'Expecting numeric in E2777 / R2777C5: got '#N/A'Expecting numeric in G2777 / R2777C7: got '#N/A'Expecting numeric in B2778 / R2778C2: got '#N/A'Expecting numeric in E2778 / R2778C5: got '#N/A'Expecting numeric in G2778 / R2778C7: got '#N/A'Expecting numeric in B2779 / R2779C2: got '#N/A'Expecting numeric in E2779 / R2779C5: got '#N/A'Expecting numeric in G2779 / R2779C7: got '#N/A'Expecting numeric in B2780 / R2780C2: got '#N/A'Expecting numeric in E2780 / R2780C5: got '#N/A'Expecting numeric in G2780 / R2780C7: got '#N/A'Expecting numeric in B2781 / R2781C2: got '#N/A'Expecting numeric in E2781 / R2781C5: got '#N/A'Expecting numeric in G2781 / R2781C7: got '#N/A'Expecting numeric in B2782 / R2782C2: got '#N/A'Expecting numeric in E2782 / R2782C5: got '#N/A'Expecting numeric in G2782 / R2782C7: got '#N/A'Expecting numeric in B2783 / R2783C2: got '#N/A'Expecting numeric in E2783 / R2783C5: got '#N/A'Expecting numeric in G2783 / R2783C7: got '#N/A'Expecting numeric in B2784 / R2784C2: got '#N/A'Expecting numeric in E2784 / R2784C5: got '#N/A'Expecting numeric in G2784 / R2784C7: got '#N/A'Expecting numeric in B2785 / R2785C2: got '#N/A'Expecting numeric in E2785 / R2785C5: got '#N/A'Expecting numeric in G2785 / R2785C7: got '#N/A'Expecting numeric in B2786 / R2786C2: got '#N/A'Expecting numeric in E2786 / R2786C5: got '#N/A'Expecting numeric in G2786 / R2786C7: got '#N/A'Expecting numeric in B2787 / R2787C2: got '#N/A'Expecting numeric in E2787 / R2787C5: got '#N/A'Expecting numeric in G2787 / R2787C7: got '#N/A'Expecting numeric in B2788 / R2788C2: got '#N/A'Expecting numeric in E2788 / R2788C5: got '#N/A'Expecting numeric in G2788 / R2788C7: got '#N/A'Expecting numeric in B2789 / R2789C2: got '#N/A'Expecting numeric in E2789 / R2789C5: got '#N/A'Expecting numeric in G2789 / R2789C7: got '#N/A'Expecting numeric in B2790 / R2790C2: got '#N/A'Expecting numeric in E2790 / R2790C5: got '#N/A'Expecting numeric in G2790 / R2790C7: got '#N/A'Expecting numeric in B2791 / R2791C2: got '#N/A'Expecting numeric in E2791 / R2791C5: got '#N/A'Expecting numeric in G2791 / R2791C7: got '#N/A'Expecting numeric in B2792 / R2792C2: got '#N/A'Expecting numeric in E2792 / R2792C5: got '#N/A'Expecting numeric in G2792 / R2792C7: got '#N/A'Expecting numeric in B2793 / R2793C2: got '#N/A'Expecting numeric in E2793 / R2793C5: got '#N/A'Expecting numeric in G2793 / R2793C7: got '#N/A'Expecting numeric in B2794 / R2794C2: got '#N/A'Expecting numeric in E2794 / R2794C5: got '#N/A'Expecting numeric in G2794 / R2794C7: got '#N/A'Expecting numeric in B2795 / R2795C2: got '#N/A'Expecting numeric in E2795 / R2795C5: got '#N/A'Expecting numeric in G2795 / R2795C7: got '#N/A'Expecting numeric in B2796 / R2796C2: got '#N/A'Expecting numeric in E2796 / R2796C5: got '#N/A'Expecting numeric in G2796 / R2796C7: got '#N/A'Expecting numeric in B2797 / R2797C2: got '#N/A'Expecting numeric in E2797 / R2797C5: got '#N/A'Expecting numeric in G2797 / R2797C7: got '#N/A'Expecting numeric in B2798 / R2798C2: got '#N/A'Expecting numeric in E2798 / R2798C5: got '#N/A'Expecting numeric in G2798 / R2798C7: got '#N/A'Expecting numeric in B2799 / R2799C2: got '#N/A'Expecting numeric in E2799 / R2799C5: got '#N/A'Expecting numeric in G2799 / R2799C7: got '#N/A'Expecting numeric in B2800 / R2800C2: got '#N/A'Expecting numeric in E2800 / R2800C5: got '#N/A'Expecting numeric in G2800 / R2800C7: got '#N/A'Expecting numeric in B2801 / R2801C2: got '#N/A'Expecting numeric in E2801 / R2801C5: got '#N/A'Expecting numeric in G2801 / R2801C7: got '#N/A'Expecting numeric in B2802 / R2802C2: got '#N/A'Expecting numeric in E2802 / R2802C5: got '#N/A'Expecting numeric in G2802 / R2802C7: got '#N/A'Expecting numeric in B2803 / R2803C2: got '#N/A'Expecting numeric in E2803 / R2803C5: got '#N/A'Expecting numeric in G2803 / R2803C7: got '#N/A'Expecting numeric in B2804 / R2804C2: got '#N/A'Expecting numeric in E2804 / R2804C5: got '#N/A'Expecting numeric in G2804 / R2804C7: got '#N/A'Expecting numeric in B2805 / R2805C2: got '#N/A'Expecting numeric in E2805 / R2805C5: got '#N/A'Expecting numeric in G2805 / R2805C7: got '#N/A'Expecting numeric in B2806 / R2806C2: got '#N/A'Expecting numeric in E2806 / R2806C5: got '#N/A'Expecting numeric in G2806 / R2806C7: got '#N/A'Expecting numeric in B2807 / R2807C2: got '#N/A'Expecting numeric in E2807 / R2807C5: got '#N/A'Expecting numeric in G2807 / R2807C7: got '#N/A'Expecting numeric in B2808 / R2808C2: got '#N/A'Expecting numeric in E2808 / R2808C5: got '#N/A'Expecting numeric in G2808 / R2808C7: got '#N/A'Expecting numeric in B2809 / R2809C2: got '#N/A'Expecting numeric in E2809 / R2809C5: got '#N/A'Expecting numeric in G2809 / R2809C7: got '#N/A'Expecting numeric in B2810 / R2810C2: got '#N/A'Expecting numeric in E2810 / R2810C5: got '#N/A'Expecting numeric in G2810 / R2810C7: got '#N/A'Expecting numeric in B2811 / R2811C2: got '#N/A'Expecting numeric in E2811 / R2811C5: got '#N/A'Expecting numeric in G2811 / R2811C7: got '#N/A'Expecting numeric in B2812 / R2812C2: got '#N/A'Expecting numeric in E2812 / R2812C5: got '#N/A'Expecting numeric in G2812 / R2812C7: got '#N/A'Expecting numeric in B2813 / R2813C2: got '#N/A'Expecting numeric in E2813 / R2813C5: got '#N/A'Expecting numeric in G2813 / R2813C7: got '#N/A'Expecting numeric in B2814 / R2814C2: got '#N/A'Expecting numeric in E2814 / R2814C5: got '#N/A'Expecting numeric in G2814 / R2814C7: got '#N/A'Expecting numeric in B2815 / R2815C2: got '#N/A'Expecting numeric in E2815 / R2815C5: got '#N/A'Expecting numeric in G2815 / R2815C7: got '#N/A'Expecting numeric in B2816 / R2816C2: got '#N/A'Expecting numeric in E2816 / R2816C5: got '#N/A'Expecting numeric in G2816 / R2816C7: got '#N/A'Expecting numeric in B2817 / R2817C2: got '#N/A'Expecting numeric in E2817 / R2817C5: got '#N/A'Expecting numeric in G2817 / R2817C7: got '#N/A'Expecting numeric in B2818 / R2818C2: got '#N/A'Expecting numeric in E2818 / R2818C5: got '#N/A'Expecting numeric in G2818 / R2818C7: got '#N/A'Expecting numeric in B2819 / R2819C2: got '#N/A'Expecting numeric in E2819 / R2819C5: got '#N/A'Expecting numeric in G2819 / R2819C7: got '#N/A'Expecting numeric in B2820 / R2820C2: got '#N/A'Expecting numeric in E2820 / R2820C5: got '#N/A'Expecting numeric in G2820 / R2820C7: got '#N/A'Expecting numeric in B2821 / R2821C2: got '#N/A'Expecting numeric in E2821 / R2821C5: got '#N/A'Expecting numeric in G2821 / R2821C7: got '#N/A'Expecting numeric in B2822 / R2822C2: got '#N/A'Expecting numeric in E2822 / R2822C5: got '#N/A'Expecting numeric in G2822 / R2822C7: got '#N/A'Expecting numeric in B2823 / R2823C2: got '#N/A'Expecting numeric in E2823 / R2823C5: got '#N/A'Expecting numeric in G2823 / R2823C7: got '#N/A'Expecting numeric in B2824 / R2824C2: got '#N/A'Expecting numeric in E2824 / R2824C5: got '#N/A'Expecting numeric in G2824 / R2824C7: got '#N/A'Expecting numeric in B2825 / R2825C2: got '#N/A'Expecting numeric in E2825 / R2825C5: got '#N/A'Expecting numeric in G2825 / R2825C7: got '#N/A'Expecting numeric in B2826 / R2826C2: got '#N/A'Expecting numeric in E2826 / R2826C5: got '#N/A'Expecting numeric in G2826 / R2826C7: got '#N/A'Expecting numeric in B2827 / R2827C2: got '#N/A'Expecting numeric in E2827 / R2827C5: got '#N/A'Expecting numeric in G2827 / R2827C7: got '#N/A'Expecting numeric in B2828 / R2828C2: got '#N/A'Expecting numeric in E2828 / R2828C5: got '#N/A'Expecting numeric in G2828 / R2828C7: got '#N/A'Expecting numeric in B2829 / R2829C2: got '#N/A'Expecting numeric in E2829 / R2829C5: got '#N/A'Expecting numeric in G2829 / R2829C7: got '#N/A'Expecting numeric in B2830 / R2830C2: got '#N/A'Expecting numeric in E2830 / R2830C5: got '#N/A'Expecting numeric in G2830 / R2830C7: got '#N/A'Expecting numeric in B2831 / R2831C2: got '#N/A'Expecting numeric in E2831 / R2831C5: got '#N/A'Expecting numeric in G2831 / R2831C7: got '#N/A'Expecting numeric in B2832 / R2832C2: got '#N/A'Expecting numeric in E2832 / R2832C5: got '#N/A'Expecting numeric in G2832 / R2832C7: got '#N/A'Expecting numeric in B2833 / R2833C2: got '#N/A'Expecting numeric in E2833 / R2833C5: got '#N/A'Expecting numeric in G2833 / R2833C7: got '#N/A'Expecting numeric in B2834 / R2834C2: got '#N/A'Expecting numeric in E2834 / R2834C5: got '#N/A'Expecting numeric in G2834 / R2834C7: got '#N/A'Expecting numeric in B2835 / R2835C2: got '#N/A'Expecting numeric in E2835 / R2835C5: got '#N/A'Expecting numeric in G2835 / R2835C7: got '#N/A'Expecting numeric in B2836 / R2836C2: got '#N/A'Expecting numeric in E2836 / R2836C5: got '#N/A'Expecting numeric in G2836 / R2836C7: got '#N/A'Expecting numeric in B2837 / R2837C2: got '#N/A'Expecting numeric in E2837 / R2837C5: got '#N/A'Expecting numeric in G2837 / R2837C7: got '#N/A'Expecting numeric in B2838 / R2838C2: got '#N/A'Expecting numeric in E2838 / R2838C5: got '#N/A'Expecting numeric in G2838 / R2838C7: got '#N/A'Expecting numeric in B2839 / R2839C2: got '#N/A'Expecting numeric in E2839 / R2839C5: got '#N/A'Expecting numeric in G2839 / R2839C7: got '#N/A'Expecting numeric in B2840 / R2840C2: got '#N/A'Expecting numeric in E2840 / R2840C5: got '#N/A'Expecting numeric in G2840 / R2840C7: got '#N/A'Expecting numeric in B2841 / R2841C2: got '#N/A'Expecting numeric in E2841 / R2841C5: got '#N/A'Expecting numeric in G2841 / R2841C7: got '#N/A'Expecting numeric in B2842 / R2842C2: got '#N/A'Expecting numeric in E2842 / R2842C5: got '#N/A'Expecting numeric in G2842 / R2842C7: got '#N/A'Expecting numeric in B2843 / R2843C2: got '#N/A'Expecting numeric in E2843 / R2843C5: got '#N/A'Expecting numeric in G2843 / R2843C7: got '#N/A'Expecting numeric in B2844 / R2844C2: got '#N/A'Expecting numeric in E2844 / R2844C5: got '#N/A'Expecting numeric in G2844 / R2844C7: got '#N/A'Expecting numeric in B2845 / R2845C2: got '#N/A'Expecting numeric in E2845 / R2845C5: got '#N/A'Expecting numeric in G2845 / R2845C7: got '#N/A'Expecting numeric in B2846 / R2846C2: got '#N/A'Expecting numeric in E2846 / R2846C5: got '#N/A'Expecting numeric in G2846 / R2846C7: got '#N/A'Expecting numeric in B2847 / R2847C2: got '#N/A'Expecting numeric in E2847 / R2847C5: got '#N/A'Expecting numeric in G2847 / R2847C7: got '#N/A'Expecting numeric in B2848 / R2848C2: got '#N/A'Expecting numeric in E2848 / R2848C5: got '#N/A'Expecting numeric in G2848 / R2848C7: got '#N/A'Expecting numeric in B2849 / R2849C2: got '#N/A'Expecting numeric in E2849 / R2849C5: got '#N/A'Expecting numeric in G2849 / R2849C7: got '#N/A'Expecting numeric in B2850 / R2850C2: got '#N/A'Expecting numeric in E2850 / R2850C5: got '#N/A'Expecting numeric in G2850 / R2850C7: got '#N/A'Expecting numeric in B2851 / R2851C2: got '#N/A'Expecting numeric in E2851 / R2851C5: got '#N/A'Expecting numeric in G2851 / R2851C7: got '#N/A'Expecting numeric in B2852 / R2852C2: got '#N/A'Expecting numeric in E2852 / R2852C5: got '#N/A'Expecting numeric in G2852 / R2852C7: got '#N/A'Expecting numeric in B2853 / R2853C2: got '#N/A'Expecting numeric in E2853 / R2853C5: got '#N/A'Expecting numeric in G2853 / R2853C7: got '#N/A'Expecting numeric in B2854 / R2854C2: got '#N/A'Expecting numeric in E2854 / R2854C5: got '#N/A'Expecting numeric in G2854 / R2854C7: got '#N/A'Expecting numeric in B2855 / R2855C2: got '#N/A'Expecting numeric in E2855 / R2855C5: got '#N/A'Expecting numeric in G2855 / R2855C7: got '#N/A'Expecting numeric in B2856 / R2856C2: got '#N/A'Expecting numeric in E2856 / R2856C5: got '#N/A'Expecting numeric in G2856 / R2856C7: got '#N/A'Expecting numeric in B2857 / R2857C2: got '#N/A'Expecting numeric in E2857 / R2857C5: got '#N/A'Expecting numeric in G2857 / R2857C7: got '#N/A'Expecting numeric in B2858 / R2858C2: got '#N/A'Expecting numeric in E2858 / R2858C5: got '#N/A'Expecting numeric in G2858 / R2858C7: got '#N/A'Expecting numeric in B2859 / R2859C2: got '#N/A'Expecting numeric in E2859 / R2859C5: got '#N/A'Expecting numeric in G2859 / R2859C7: got '#N/A'Expecting numeric in B2860 / R2860C2: got '#N/A'Expecting numeric in E2860 / R2860C5: got '#N/A'Expecting numeric in G2860 / R2860C7: got '#N/A'Expecting numeric in B2861 / R2861C2: got '#N/A'Expecting numeric in E2861 / R2861C5: got '#N/A'Expecting numeric in G2861 / R2861C7: got '#N/A'Expecting numeric in B2862 / R2862C2: got '#N/A'Expecting numeric in E2862 / R2862C5: got '#N/A'Expecting numeric in G2862 / R2862C7: got '#N/A'Expecting numeric in B2863 / R2863C2: got '#N/A'Expecting numeric in E2863 / R2863C5: got '#N/A'Expecting numeric in G2863 / R2863C7: got '#N/A'Expecting numeric in B2864 / R2864C2: got '#N/A'Expecting numeric in E2864 / R2864C5: got '#N/A'Expecting numeric in G2864 / R2864C7: got '#N/A'Expecting numeric in B2865 / R2865C2: got '#N/A'Expecting numeric in E2865 / R2865C5: got '#N/A'Expecting numeric in G2865 / R2865C7: got '#N/A'Expecting numeric in B2866 / R2866C2: got '#N/A'Expecting numeric in E2866 / R2866C5: got '#N/A'Expecting numeric in G2866 / R2866C7: got '#N/A'Expecting numeric in B2867 / R2867C2: got '#N/A'Expecting numeric in E2867 / R2867C5: got '#N/A'Expecting numeric in G2867 / R2867C7: got '#N/A'Expecting numeric in B2868 / R2868C2: got '#N/A'Expecting numeric in E2868 / R2868C5: got '#N/A'Expecting numeric in G2868 / R2868C7: got '#N/A'Expecting numeric in B2869 / R2869C2: got '#N/A'Expecting numeric in E2869 / R2869C5: got '#N/A'Expecting numeric in G2869 / R2869C7: got '#N/A'Expecting numeric in B2870 / R2870C2: got '#N/A'Expecting numeric in E2870 / R2870C5: got '#N/A'Expecting numeric in G2870 / R2870C7: got '#N/A'Expecting numeric in B2871 / R2871C2: got '#N/A'Expecting numeric in E2871 / R2871C5: got '#N/A'Expecting numeric in G2871 / R2871C7: got '#N/A'Expecting numeric in B2872 / R2872C2: got '#N/A'Expecting numeric in E2872 / R2872C5: got '#N/A'Expecting numeric in G2872 / R2872C7: got '#N/A'Expecting numeric in B2873 / R2873C2: got '#N/A'Expecting numeric in E2873 / R2873C5: got '#N/A'Expecting numeric in G2873 / R2873C7: got '#N/A'Expecting numeric in B2874 / R2874C2: got '#N/A'Expecting numeric in E2874 / R2874C5: got '#N/A'Expecting numeric in G2874 / R2874C7: got '#N/A'Expecting numeric in B2875 / R2875C2: got '#N/A'Expecting numeric in E2875 / R2875C5: got '#N/A'Expecting numeric in G2875 / R2875C7: got '#N/A'Expecting numeric in B2876 / R2876C2: got '#N/A'Expecting numeric in E2876 / R2876C5: got '#N/A'Expecting numeric in G2876 / R2876C7: got '#N/A'Expecting numeric in B2877 / R2877C2: got '#N/A'Expecting numeric in E2877 / R2877C5: got '#N/A'Expecting numeric in G2877 / R2877C7: got '#N/A'Expecting numeric in B2878 / R2878C2: got '#N/A'Expecting numeric in E2878 / R2878C5: got '#N/A'Expecting numeric in G2878 / R2878C7: got '#N/A'Expecting numeric in B2879 / R2879C2: got '#N/A'Expecting numeric in E2879 / R2879C5: got '#N/A'Expecting numeric in G2879 / R2879C7: got '#N/A'Expecting numeric in B2880 / R2880C2: got '#N/A'Expecting numeric in E2880 / R2880C5: got '#N/A'Expecting numeric in G2880 / R2880C7: got '#N/A'Expecting numeric in B2881 / R2881C2: got '#N/A'Expecting numeric in E2881 / R2881C5: got '#N/A'Expecting numeric in G2881 / R2881C7: got '#N/A'Expecting numeric in B2882 / R2882C2: got '#N/A'Expecting numeric in E2882 / R2882C5: got '#N/A'Expecting numeric in G2882 / R2882C7: got '#N/A'Expecting numeric in B2883 / R2883C2: got '#N/A'Expecting numeric in E2883 / R2883C5: got '#N/A'Expecting numeric in G2883 / R2883C7: got '#N/A'Expecting numeric in B2884 / R2884C2: got '#N/A'Expecting numeric in E2884 / R2884C5: got '#N/A'Expecting numeric in G2884 / R2884C7: got '#N/A'Expecting numeric in B2885 / R2885C2: got '#N/A'Expecting numeric in E2885 / R2885C5: got '#N/A'Expecting numeric in G2885 / R2885C7: got '#N/A'Expecting numeric in B2886 / R2886C2: got '#N/A'Expecting numeric in E2886 / R2886C5: got '#N/A'Expecting numeric in G2886 / R2886C7: got '#N/A'Expecting numeric in B2887 / R2887C2: got '#N/A'Expecting numeric in E2887 / R2887C5: got '#N/A'Expecting numeric in G2887 / R2887C7: got '#N/A'Expecting numeric in B2888 / R2888C2: got '#N/A'Expecting numeric in E2888 / R2888C5: got '#N/A'Expecting numeric in G2888 / R2888C7: got '#N/A'Expecting numeric in B2889 / R2889C2: got '#N/A'Expecting numeric in E2889 / R2889C5: got '#N/A'Expecting numeric in G2889 / R2889C7: got '#N/A'Expecting numeric in B2890 / R2890C2: got '#N/A'Expecting numeric in E2890 / R2890C5: got '#N/A'Expecting numeric in G2890 / R2890C7: got '#N/A'Expecting numeric in B2891 / R2891C2: got '#N/A'Expecting numeric in E2891 / R2891C5: got '#N/A'Expecting numeric in G2891 / R2891C7: got '#N/A'Expecting numeric in B2892 / R2892C2: got '#N/A'Expecting numeric in E2892 / R2892C5: got '#N/A'Expecting numeric in G2892 / R2892C7: got '#N/A'Expecting numeric in B2893 / R2893C2: got '#N/A'Expecting numeric in E2893 / R2893C5: got '#N/A'Expecting numeric in G2893 / R2893C7: got '#N/A'Expecting numeric in B2894 / R2894C2: got '#N/A'Expecting numeric in E2894 / R2894C5: got '#N/A'Expecting numeric in G2894 / R2894C7: got '#N/A'Expecting numeric in B2895 / R2895C2: got '#N/A'Expecting numeric in E2895 / R2895C5: got '#N/A'Expecting numeric in G2895 / R2895C7: got '#N/A'Expecting numeric in B2896 / R2896C2: got '#N/A'Expecting numeric in E2896 / R2896C5: got '#N/A'Expecting numeric in G2896 / R2896C7: got '#N/A'Expecting numeric in B2897 / R2897C2: got '#N/A'Expecting numeric in E2897 / R2897C5: got '#N/A'Expecting numeric in G2897 / R2897C7: got '#N/A'Expecting numeric in B2898 / R2898C2: got '#N/A'Expecting numeric in E2898 / R2898C5: got '#N/A'Expecting numeric in G2898 / R2898C7: got '#N/A'Expecting numeric in B2899 / R2899C2: got '#N/A'Expecting numeric in E2899 / R2899C5: got '#N/A'Expecting numeric in G2899 / R2899C7: got '#N/A'Expecting numeric in B2900 / R2900C2: got '#N/A'Expecting numeric in E2900 / R2900C5: got '#N/A'Expecting numeric in G2900 / R2900C7: got '#N/A'Expecting numeric in B2901 / R2901C2: got '#N/A'Expecting numeric in E2901 / R2901C5: got '#N/A'Expecting numeric in G2901 / R2901C7: got '#N/A'Expecting numeric in B2902 / R2902C2: got '#N/A'Expecting numeric in E2902 / R2902C5: got '#N/A'Expecting numeric in G2902 / R2902C7: got '#N/A'Expecting numeric in B2903 / R2903C2: got '#N/A'Expecting numeric in E2903 / R2903C5: got '#N/A'Expecting numeric in G2903 / R2903C7: got '#N/A'Expecting numeric in B2904 / R2904C2: got '#N/A'Expecting numeric in E2904 / R2904C5: got '#N/A'Expecting numeric in G2904 / R2904C7: got '#N/A'Expecting numeric in B2905 / R2905C2: got '#N/A'Expecting numeric in E2905 / R2905C5: got '#N/A'Expecting numeric in G2905 / R2905C7: got '#N/A'Expecting numeric in B2906 / R2906C2: got '#N/A'Expecting numeric in E2906 / R2906C5: got '#N/A'Expecting numeric in G2906 / R2906C7: got '#N/A'Expecting numeric in B2907 / R2907C2: got '#N/A'Expecting numeric in E2907 / R2907C5: got '#N/A'Expecting numeric in G2907 / R2907C7: got '#N/A'Expecting numeric in B2908 / R2908C2: got '#N/A'Expecting numeric in E2908 / R2908C5: got '#N/A'Expecting numeric in G2908 / R2908C7: got '#N/A'Expecting numeric in B2909 / R2909C2: got '#N/A'Expecting numeric in E2909 / R2909C5: got '#N/A'Expecting numeric in G2909 / R2909C7: got '#N/A'Expecting numeric in B2910 / R2910C2: got '#N/A'Expecting numeric in E2910 / R2910C5: got '#N/A'Expecting numeric in G2910 / R2910C7: got '#N/A'Expecting numeric in B2911 / R2911C2: got '#N/A'Expecting numeric in E2911 / R2911C5: got '#N/A'Expecting numeric in G2911 / R2911C7: got '#N/A'Expecting numeric in B2912 / R2912C2: got '#N/A'Expecting numeric in E2912 / R2912C5: got '#N/A'Expecting numeric in G2912 / R2912C7: got '#N/A'Expecting numeric in B2913 / R2913C2: got '#N/A'Expecting numeric in E2913 / R2913C5: got '#N/A'Expecting numeric in G2913 / R2913C7: got '#N/A'Expecting numeric in B2914 / R2914C2: got '#N/A'Expecting numeric in E2914 / R2914C5: got '#N/A'Expecting numeric in G2914 / R2914C7: got '#N/A'Expecting numeric in B2915 / R2915C2: got '#N/A'Expecting numeric in E2915 / R2915C5: got '#N/A'Expecting numeric in G2915 / R2915C7: got '#N/A'Expecting numeric in B2916 / R2916C2: got '#N/A'Expecting numeric in E2916 / R2916C5: got '#N/A'Expecting numeric in G2916 / R2916C7: got '#N/A'Expecting numeric in B2917 / R2917C2: got '#N/A'Expecting numeric in E2917 / R2917C5: got '#N/A'Expecting numeric in G2917 / R2917C7: got '#N/A'Expecting numeric in B2918 / R2918C2: got '#N/A'Expecting numeric in E2918 / R2918C5: got '#N/A'Expecting numeric in G2918 / R2918C7: got '#N/A'Expecting numeric in B2919 / R2919C2: got '#N/A'Expecting numeric in E2919 / R2919C5: got '#N/A'Expecting numeric in G2919 / R2919C7: got '#N/A'Expecting numeric in B2920 / R2920C2: got '#N/A'Expecting numeric in E2920 / R2920C5: got '#N/A'Expecting numeric in G2920 / R2920C7: got '#N/A'Expecting numeric in B2921 / R2921C2: got '#N/A'Expecting numeric in E2921 / R2921C5: got '#N/A'Expecting numeric in G2921 / R2921C7: got '#N/A'Expecting numeric in B2922 / R2922C2: got '#N/A'Expecting numeric in E2922 / R2922C5: got '#N/A'Expecting numeric in G2922 / R2922C7: got '#N/A'Expecting numeric in B2923 / R2923C2: got '#N/A'Expecting numeric in E2923 / R2923C5: got '#N/A'Expecting numeric in G2923 / R2923C7: got '#N/A'Expecting numeric in B2924 / R2924C2: got '#N/A'Expecting numeric in E2924 / R2924C5: got '#N/A'Expecting numeric in G2924 / R2924C7: got '#N/A'Expecting numeric in B2925 / R2925C2: got '#N/A'Expecting numeric in E2925 / R2925C5: got '#N/A'Expecting numeric in G2925 / R2925C7: got '#N/A'Expecting numeric in B2926 / R2926C2: got '#N/A'Expecting numeric in E2926 / R2926C5: got '#N/A'Expecting numeric in G2926 / R2926C7: got '#N/A'Expecting numeric in B2927 / R2927C2: got '#N/A'Expecting numeric in E2927 / R2927C5: got '#N/A'Expecting numeric in G2927 / R2927C7: got '#N/A'Expecting numeric in B2928 / R2928C2: got '#N/A'Expecting numeric in E2928 / R2928C5: got '#N/A'Expecting numeric in G2928 / R2928C7: got '#N/A'Expecting numeric in B2929 / R2929C2: got '#N/A'Expecting numeric in E2929 / R2929C5: got '#N/A'Expecting numeric in G2929 / R2929C7: got '#N/A'Expecting numeric in B2930 / R2930C2: got '#N/A'Expecting numeric in E2930 / R2930C5: got '#N/A'Expecting numeric in G2930 / R2930C7: got '#N/A'Expecting numeric in B2931 / R2931C2: got '#N/A'Expecting numeric in E2931 / R2931C5: got '#N/A'Expecting numeric in G2931 / R2931C7: got '#N/A'Expecting numeric in B2932 / R2932C2: got '#N/A'Expecting numeric in E2932 / R2932C5: got '#N/A'Expecting numeric in G2932 / R2932C7: got '#N/A'Expecting numeric in B2933 / R2933C2: got '#N/A'Expecting numeric in E2933 / R2933C5: got '#N/A'Expecting numeric in G2933 / R2933C7: got '#N/A'Expecting numeric in B2934 / R2934C2: got '#N/A'Expecting numeric in E2934 / R2934C5: got '#N/A'Expecting numeric in G2934 / R2934C7: got '#N/A'Expecting numeric in B2935 / R2935C2: got '#N/A'Expecting numeric in E2935 / R2935C5: got '#N/A'Expecting numeric in G2935 / R2935C7: got '#N/A'Expecting numeric in B2936 / R2936C2: got '#N/A'Expecting numeric in E2936 / R2936C5: got '#N/A'Expecting numeric in G2936 / R2936C7: got '#N/A'Expecting numeric in B2937 / R2937C2: got '#N/A'Expecting numeric in E2937 / R2937C5: got '#N/A'Expecting numeric in G2937 / R2937C7: got '#N/A'Expecting numeric in B2938 / R2938C2: got '#N/A'Expecting numeric in E2938 / R2938C5: got '#N/A'Expecting numeric in G2938 / R2938C7: got '#N/A'Expecting numeric in B2939 / R2939C2: got '#N/A'Expecting numeric in E2939 / R2939C5: got '#N/A'Expecting numeric in G2939 / R2939C7: got '#N/A'Expecting numeric in B2940 / R2940C2: got '#N/A'Expecting numeric in E2940 / R2940C5: got '#N/A'Expecting numeric in G2940 / R2940C7: got '#N/A'Expecting numeric in B2941 / R2941C2: got '#N/A'Expecting numeric in E2941 / R2941C5: got '#N/A'Expecting numeric in G2941 / R2941C7: got '#N/A'Expecting numeric in B2942 / R2942C2: got '#N/A'Expecting numeric in E2942 / R2942C5: got '#N/A'Expecting numeric in G2942 / R2942C7: got '#N/A'Expecting numeric in B2943 / R2943C2: got '#N/A'Expecting numeric in E2943 / R2943C5: got '#N/A'Expecting numeric in G2943 / R2943C7: got '#N/A'Expecting numeric in B2944 / R2944C2: got '#N/A'Expecting numeric in E2944 / R2944C5: got '#N/A'Expecting numeric in G2944 / R2944C7: got '#N/A'Expecting numeric in B2945 / R2945C2: got '#N/A'Expecting numeric in E2945 / R2945C5: got '#N/A'Expecting numeric in G2945 / R2945C7: got '#N/A'Expecting numeric in B2946 / R2946C2: got '#N/A'Expecting numeric in E2946 / R2946C5: got '#N/A'Expecting numeric in G2946 / R2946C7: got '#N/A'Expecting numeric in B2947 / R2947C2: got '#N/A'Expecting numeric in E2947 / R2947C5: got '#N/A'Expecting numeric in G2947 / R2947C7: got '#N/A'Expecting numeric in B2948 / R2948C2: got '#N/A'Expecting numeric in E2948 / R2948C5: got '#N/A'Expecting numeric in G2948 / R2948C7: got '#N/A'Expecting numeric in B2949 / R2949C2: got '#N/A'Expecting numeric in E2949 / R2949C5: got '#N/A'Expecting numeric in G2949 / R2949C7: got '#N/A'Expecting numeric in B2950 / R2950C2: got '#N/A'Expecting numeric in E2950 / R2950C5: got '#N/A'Expecting numeric in G2950 / R2950C7: got '#N/A'Expecting numeric in B2951 / R2951C2: got '#N/A'Expecting numeric in E2951 / R2951C5: got '#N/A'Expecting numeric in G2951 / R2951C7: got '#N/A'Expecting numeric in B2952 / R2952C2: got '#N/A'Expecting numeric in E2952 / R2952C5: got '#N/A'Expecting numeric in G2952 / R2952C7: got '#N/A'Expecting numeric in B2953 / R2953C2: got '#N/A'Expecting numeric in E2953 / R2953C5: got '#N/A'Expecting numeric in G2953 / R2953C7: got '#N/A'Expecting numeric in B2954 / R2954C2: got '#N/A'Expecting numeric in E2954 / R2954C5: got '#N/A'Expecting numeric in G2954 / R2954C7: got '#N/A'Expecting numeric in B2955 / R2955C2: got '#N/A'Expecting numeric in E2955 / R2955C5: got '#N/A'Expecting numeric in G2955 / R2955C7: got '#N/A'Expecting numeric in B2956 / R2956C2: got '#N/A'Expecting numeric in E2956 / R2956C5: got '#N/A'Expecting numeric in G2956 / R2956C7: got '#N/A'Expecting numeric in B2957 / R2957C2: got '#N/A'Expecting numeric in E2957 / R2957C5: got '#N/A'Expecting numeric in G2957 / R2957C7: got '#N/A'Expecting numeric in B2958 / R2958C2: got '#N/A'Expecting numeric in E2958 / R2958C5: got '#N/A'Expecting numeric in G2958 / R2958C7: got '#N/A'Expecting numeric in B2959 / R2959C2: got '#N/A'Expecting numeric in E2959 / R2959C5: got '#N/A'Expecting numeric in G2959 / R2959C7: got '#N/A'Expecting numeric in B2960 / R2960C2: got '#N/A'Expecting numeric in E2960 / R2960C5: got '#N/A'Expecting numeric in G2960 / R2960C7: got '#N/A'Expecting numeric in B2961 / R2961C2: got '#N/A'Expecting numeric in E2961 / R2961C5: got '#N/A'Expecting numeric in G2961 / R2961C7: got '#N/A'Expecting numeric in B2962 / R2962C2: got '#N/A'Expecting numeric in E2962 / R2962C5: got '#N/A'Expecting numeric in G2962 / R2962C7: got '#N/A'Expecting numeric in B2963 / R2963C2: got '#N/A'Expecting numeric in E2963 / R2963C5: got '#N/A'Expecting numeric in G2963 / R2963C7: got '#N/A'Expecting numeric in B2964 / R2964C2: got '#N/A'Expecting numeric in E2964 / R2964C5: got '#N/A'Expecting numeric in G2964 / R2964C7: got '#N/A'Expecting numeric in B2965 / R2965C2: got '#N/A'Expecting numeric in E2965 / R2965C5: got '#N/A'Expecting numeric in G2965 / R2965C7: got '#N/A'Expecting numeric in B2966 / R2966C2: got '#N/A'Expecting numeric in E2966 / R2966C5: got '#N/A'Expecting numeric in G2966 / R2966C7: got '#N/A'Expecting numeric in B2967 / R2967C2: got '#N/A'Expecting numeric in E2967 / R2967C5: got '#N/A'Expecting numeric in G2967 / R2967C7: got '#N/A'Expecting numeric in B2968 / R2968C2: got '#N/A'Expecting numeric in E2968 / R2968C5: got '#N/A'Expecting numeric in G2968 / R2968C7: got '#N/A'Expecting numeric in B2969 / R2969C2: got '#N/A'Expecting numeric in E2969 / R2969C5: got '#N/A'Expecting numeric in G2969 / R2969C7: got '#N/A'Expecting numeric in B2970 / R2970C2: got '#N/A'Expecting numeric in E2970 / R2970C5: got '#N/A'Expecting numeric in G2970 / R2970C7: got '#N/A'Expecting numeric in B2971 / R2971C2: got '#N/A'Expecting numeric in E2971 / R2971C5: got '#N/A'Expecting numeric in G2971 / R2971C7: got '#N/A'Expecting numeric in B2972 / R2972C2: got '#N/A'Expecting numeric in E2972 / R2972C5: got '#N/A'Expecting numeric in G2972 / R2972C7: got '#N/A'Expecting numeric in B2973 / R2973C2: got '#N/A'Expecting numeric in E2973 / R2973C5: got '#N/A'Expecting numeric in G2973 / R2973C7: got '#N/A'Expecting numeric in B2974 / R2974C2: got '#N/A'Expecting numeric in E2974 / R2974C5: got '#N/A'Expecting numeric in G2974 / R2974C7: got '#N/A'Expecting numeric in B2975 / R2975C2: got '#N/A'Expecting numeric in E2975 / R2975C5: got '#N/A'Expecting numeric in G2975 / R2975C7: got '#N/A'Expecting numeric in B2976 / R2976C2: got '#N/A'Expecting numeric in E2976 / R2976C5: got '#N/A'Expecting numeric in G2976 / R2976C7: got '#N/A'Expecting numeric in B2977 / R2977C2: got '#N/A'Expecting numeric in E2977 / R2977C5: got '#N/A'Expecting numeric in G2977 / R2977C7: got '#N/A'Expecting numeric in B2978 / R2978C2: got '#N/A'Expecting numeric in E2978 / R2978C5: got '#N/A'Expecting numeric in G2978 / R2978C7: got '#N/A'Expecting numeric in B2979 / R2979C2: got '#N/A'Expecting numeric in E2979 / R2979C5: got '#N/A'Expecting numeric in G2979 / R2979C7: got '#N/A'Expecting numeric in B2980 / R2980C2: got '#N/A'Expecting numeric in E2980 / R2980C5: got '#N/A'Expecting numeric in G2980 / R2980C7: got '#N/A'Expecting numeric in B2981 / R2981C2: got '#N/A'Expecting numeric in E2981 / R2981C5: got '#N/A'Expecting numeric in G2981 / R2981C7: got '#N/A'Expecting numeric in B2982 / R2982C2: got '#N/A'Expecting numeric in E2982 / R2982C5: got '#N/A'Expecting numeric in G2982 / R2982C7: got '#N/A'Expecting numeric in B2983 / R2983C2: got '#N/A'Expecting numeric in E2983 / R2983C5: got '#N/A'Expecting numeric in G2983 / R2983C7: got '#N/A'Expecting numeric in B2984 / R2984C2: got '#N/A'Expecting numeric in E2984 / R2984C5: got '#N/A'Expecting numeric in G2984 / R2984C7: got '#N/A'Expecting numeric in B2985 / R2985C2: got '#N/A'Expecting numeric in E2985 / R2985C5: got '#N/A'Expecting numeric in G2985 / R2985C7: got '#N/A'Expecting numeric in B2986 / R2986C2: got '#N/A'Expecting numeric in E2986 / R2986C5: got '#N/A'Expecting numeric in G2986 / R2986C7: got '#N/A'Expecting numeric in B2987 / R2987C2: got '#N/A'Expecting numeric in E2987 / R2987C5: got '#N/A'Expecting numeric in G2987 / R2987C7: got '#N/A'Expecting numeric in B2988 / R2988C2: got '#N/A'Expecting numeric in E2988 / R2988C5: got '#N/A'Expecting numeric in G2988 / R2988C7: got '#N/A'Expecting numeric in B2989 / R2989C2: got '#N/A'Expecting numeric in E2989 / R2989C5: got '#N/A'Expecting numeric in G2989 / R2989C7: got '#N/A'Expecting numeric in B2990 / R2990C2: got '#N/A'Expecting numeric in E2990 / R2990C5: got '#N/A'Expecting numeric in G2990 / R2990C7: got '#N/A'Expecting numeric in B2991 / R2991C2: got '#N/A'Expecting numeric in E2991 / R2991C5: got '#N/A'Expecting numeric in G2991 / R2991C7: got '#N/A'Expecting numeric in B2992 / R2992C2: got '#N/A'Expecting numeric in E2992 / R2992C5: got '#N/A'Expecting numeric in G2992 / R2992C7: got '#N/A'Expecting numeric in B2993 / R2993C2: got '#N/A'Expecting numeric in E2993 / R2993C5: got '#N/A'Expecting numeric in G2993 / R2993C7: got '#N/A'Expecting numeric in B2994 / R2994C2: got '#N/A'Expecting numeric in E2994 / R2994C5: got '#N/A'Expecting numeric in G2994 / R2994C7: got '#N/A'Expecting numeric in B2995 / R2995C2: got '#N/A'Expecting numeric in E2995 / R2995C5: got '#N/A'Expecting numeric in G2995 / R2995C7: got '#N/A'Expecting numeric in B2996 / R2996C2: got '#N/A'Expecting numeric in E2996 / R2996C5: got '#N/A'Expecting numeric in G2996 / R2996C7: got '#N/A'Expecting numeric in B2997 / R2997C2: got '#N/A'Expecting numeric in E2997 / R2997C5: got '#N/A'Expecting numeric in G2997 / R2997C7: got '#N/A'Expecting numeric in B2998 / R2998C2: got '#N/A'Expecting numeric in E2998 / R2998C5: got '#N/A'Expecting numeric in G2998 / R2998C7: got '#N/A'Expecting numeric in B2999 / R2999C2: got '#N/A'Expecting numeric in E2999 / R2999C5: got '#N/A'Expecting numeric in G2999 / R2999C7: got '#N/A'Expecting numeric in B3000 / R3000C2: got '#N/A'Expecting numeric in E3000 / R3000C5: got '#N/A'Expecting numeric in G3000 / R3000C7: got '#N/A'Expecting numeric in B3001 / R3001C2: got '#N/A'Expecting numeric in E3001 / R3001C5: got '#N/A'Expecting numeric in G3001 / R3001C7: got '#N/A'Expecting numeric in B3002 / R3002C2: got '#N/A'Expecting numeric in E3002 / R3002C5: got '#N/A'Expecting numeric in G3002 / R3002C7: got '#N/A'Expecting numeric in B3003 / R3003C2: got '#N/A'Expecting numeric in E3003 / R3003C5: got '#N/A'Expecting numeric in G3003 / R3003C7: got '#N/A'Expecting numeric in B3004 / R3004C2: got '#N/A'Expecting numeric in E3004 / R3004C5: got '#N/A'Expecting numeric in G3004 / R3004C7: got '#N/A'Expecting numeric in B3005 / R3005C2: got '#N/A'Expecting numeric in E3005 / R3005C5: got '#N/A'Expecting numeric in G3005 / R3005C7: got '#N/A'Expecting numeric in B3006 / R3006C2: got '#N/A'Expecting numeric in E3006 / R3006C5: got '#N/A'Expecting numeric in G3006 / R3006C7: got '#N/A'Expecting numeric in B3007 / R3007C2: got '#N/A'Expecting numeric in E3007 / R3007C5: got '#N/A'Expecting numeric in G3007 / R3007C7: got '#N/A'Expecting numeric in B3008 / R3008C2: got '#N/A'Expecting numeric in E3008 / R3008C5: got '#N/A'Expecting numeric in G3008 / R3008C7: got '#N/A'Expecting numeric in B3009 / R3009C2: got '#N/A'Expecting numeric in E3009 / R3009C5: got '#N/A'Expecting numeric in G3009 / R3009C7: got '#N/A'Expecting numeric in B3010 / R3010C2: got '#N/A'Expecting numeric in E3010 / R3010C5: got '#N/A'Expecting numeric in G3010 / R3010C7: got '#N/A'Expecting numeric in B3011 / R3011C2: got '#N/A'Expecting numeric in E3011 / R3011C5: got '#N/A'Expecting numeric in G3011 / R3011C7: got '#N/A'Expecting numeric in B3012 / R3012C2: got '#N/A'Expecting numeric in E3012 / R3012C5: got '#N/A'Expecting numeric in G3012 / R3012C7: got '#N/A'Expecting numeric in B3013 / R3013C2: got '#N/A'Expecting numeric in E3013 / R3013C5: got '#N/A'Expecting numeric in G3013 / R3013C7: got '#N/A'Expecting numeric in B3014 / R3014C2: got '#N/A'Expecting numeric in E3014 / R3014C5: got '#N/A'Expecting numeric in G3014 / R3014C7: got '#N/A'Expecting numeric in B3015 / R3015C2: got '#N/A'Expecting numeric in E3015 / R3015C5: got '#N/A'Expecting numeric in G3015 / R3015C7: got '#N/A'Expecting numeric in B3016 / R3016C2: got '#N/A'Expecting numeric in E3016 / R3016C5: got '#N/A'Expecting numeric in G3016 / R3016C7: got '#N/A'Expecting numeric in B3017 / R3017C2: got '#N/A'Expecting numeric in E3017 / R3017C5: got '#N/A'Expecting numeric in G3017 / R3017C7: got '#N/A'Expecting numeric in B3018 / R3018C2: got '#N/A'Expecting numeric in E3018 / R3018C5: got '#N/A'Expecting numeric in G3018 / R3018C7: got '#N/A'Expecting numeric in B3019 / R3019C2: got '#N/A'Expecting numeric in E3019 / R3019C5: got '#N/A'Expecting numeric in G3019 / R3019C7: got '#N/A'Expecting numeric in B3020 / R3020C2: got '#N/A'Expecting numeric in E3020 / R3020C5: got '#N/A'Expecting numeric in G3020 / R3020C7: got '#N/A'Expecting numeric in B3021 / R3021C2: got '#N/A'Expecting numeric in E3021 / R3021C5: got '#N/A'Expecting numeric in G3021 / R3021C7: got '#N/A'Expecting numeric in B3022 / R3022C2: got '#N/A'Expecting numeric in E3022 / R3022C5: got '#N/A'Expecting numeric in G3022 / R3022C7: got '#N/A'Expecting numeric in B3023 / R3023C2: got '#N/A'Expecting numeric in E3023 / R3023C5: got '#N/A'Expecting numeric in G3023 / R3023C7: got '#N/A'Expecting numeric in B3024 / R3024C2: got '#N/A'Expecting numeric in E3024 / R3024C5: got '#N/A'Expecting numeric in G3024 / R3024C7: got '#N/A'Expecting numeric in B3025 / R3025C2: got '#N/A'Expecting numeric in E3025 / R3025C5: got '#N/A'Expecting numeric in G3025 / R3025C7: got '#N/A'Expecting numeric in B3026 / R3026C2: got '#N/A'Expecting numeric in E3026 / R3026C5: got '#N/A'Expecting numeric in G3026 / R3026C7: got '#N/A'Expecting numeric in B3027 / R3027C2: got '#N/A'Expecting numeric in E3027 / R3027C5: got '#N/A'Expecting numeric in G3027 / R3027C7: got '#N/A'Expecting numeric in B3028 / R3028C2: got '#N/A'Expecting numeric in E3028 / R3028C5: got '#N/A'Expecting numeric in G3028 / R3028C7: got '#N/A'Expecting numeric in B3029 / R3029C2: got '#N/A'Expecting numeric in E3029 / R3029C5: got '#N/A'Expecting numeric in G3029 / R3029C7: got '#N/A'Expecting numeric in B3030 / R3030C2: got '#N/A'Expecting numeric in E3030 / R3030C5: got '#N/A'Expecting numeric in G3030 / R3030C7: got '#N/A'Expecting numeric in B3031 / R3031C2: got '#N/A'Expecting numeric in E3031 / R3031C5: got '#N/A'Expecting numeric in G3031 / R3031C7: got '#N/A'Expecting numeric in B3032 / R3032C2: got '#N/A'Expecting numeric in E3032 / R3032C5: got '#N/A'Expecting numeric in G3032 / R3032C7: got '#N/A'Expecting numeric in B3033 / R3033C2: got '#N/A'Expecting numeric in E3033 / R3033C5: got '#N/A'Expecting numeric in G3033 / R3033C7: got '#N/A'Expecting numeric in B3034 / R3034C2: got '#N/A'Expecting numeric in E3034 / R3034C5: got '#N/A'Expecting numeric in G3034 / R3034C7: got '#N/A'Expecting numeric in B3035 / R3035C2: got '#N/A'Expecting numeric in E3035 / R3035C5: got '#N/A'Expecting numeric in G3035 / R3035C7: got '#N/A'Expecting numeric in B3036 / R3036C2: got '#N/A'Expecting numeric in E3036 / R3036C5: got '#N/A'Expecting numeric in G3036 / R3036C7: got '#N/A'Expecting numeric in B3037 / R3037C2: got '#N/A'Expecting numeric in E3037 / R3037C5: got '#N/A'Expecting numeric in G3037 / R3037C7: got '#N/A'Expecting numeric in B3038 / R3038C2: got '#N/A'Expecting numeric in E3038 / R3038C5: got '#N/A'Expecting numeric in G3038 / R3038C7: got '#N/A'Expecting numeric in B3039 / R3039C2: got '#N/A'Expecting numeric in E3039 / R3039C5: got '#N/A'Expecting numeric in G3039 / R3039C7: got '#N/A'Expecting numeric in B3040 / R3040C2: got '#N/A'Expecting numeric in E3040 / R3040C5: got '#N/A'Expecting numeric in G3040 / R3040C7: got '#N/A'Expecting numeric in B3041 / R3041C2: got '#N/A'Expecting numeric in E3041 / R3041C5: got '#N/A'Expecting numeric in G3041 / R3041C7: got '#N/A'Expecting numeric in B3042 / R3042C2: got '#N/A'Expecting numeric in E3042 / R3042C5: got '#N/A'Expecting numeric in G3042 / R3042C7: got '#N/A'Expecting numeric in B3043 / R3043C2: got '#N/A'Expecting numeric in E3043 / R3043C5: got '#N/A'Expecting numeric in G3043 / R3043C7: got '#N/A'Expecting numeric in B3044 / R3044C2: got '#N/A'Expecting numeric in E3044 / R3044C5: got '#N/A'Expecting numeric in G3044 / R3044C7: got '#N/A'Expecting numeric in B3045 / R3045C2: got '#N/A'Expecting numeric in E3045 / R3045C5: got '#N/A'Expecting numeric in G3045 / R3045C7: got '#N/A'Expecting numeric in B3046 / R3046C2: got '#N/A'Expecting numeric in E3046 / R3046C5: got '#N/A'Expecting numeric in G3046 / R3046C7: got '#N/A'Expecting numeric in B3047 / R3047C2: got '#N/A'Expecting numeric in E3047 / R3047C5: got '#N/A'Expecting numeric in G3047 / R3047C7: got '#N/A'Expecting numeric in B3048 / R3048C2: got '#N/A'Expecting numeric in E3048 / R3048C5: got '#N/A'Expecting numeric in G3048 / R3048C7: got '#N/A'Expecting numeric in B3049 / R3049C2: got '#N/A'Expecting numeric in E3049 / R3049C5: got '#N/A'Expecting numeric in G3049 / R3049C7: got '#N/A'Expecting numeric in B3050 / R3050C2: got '#N/A'Expecting numeric in E3050 / R3050C5: got '#N/A'Expecting numeric in G3050 / R3050C7: got '#N/A'Expecting numeric in B3051 / R3051C2: got '#N/A'Expecting numeric in E3051 / R3051C5: got '#N/A'Expecting numeric in G3051 / R3051C7: got '#N/A'Expecting numeric in B3052 / R3052C2: got '#N/A'Expecting numeric in E3052 / R3052C5: got '#N/A'Expecting numeric in G3052 / R3052C7: got '#N/A'Expecting numeric in B3053 / R3053C2: got '#N/A'Expecting numeric in E3053 / R3053C5: got '#N/A'Expecting numeric in G3053 / R3053C7: got '#N/A'Expecting numeric in B3054 / R3054C2: got '#N/A'Expecting numeric in E3054 / R3054C5: got '#N/A'Expecting numeric in G3054 / R3054C7: got '#N/A'Expecting numeric in B3055 / R3055C2: got '#N/A'Expecting numeric in E3055 / R3055C5: got '#N/A'Expecting numeric in G3055 / R3055C7: got '#N/A'Expecting numeric in B3056 / R3056C2: got '#N/A'Expecting numeric in E3056 / R3056C5: got '#N/A'Expecting numeric in G3056 / R3056C7: got '#N/A'Expecting numeric in B3057 / R3057C2: got '#N/A'Expecting numeric in E3057 / R3057C5: got '#N/A'Expecting numeric in G3057 / R3057C7: got '#N/A'Expecting numeric in B3058 / R3058C2: got '#N/A'Expecting numeric in E3058 / R3058C5: got '#N/A'Expecting numeric in G3058 / R3058C7: got '#N/A'Expecting numeric in B3059 / R3059C2: got '#N/A'Expecting numeric in E3059 / R3059C5: got '#N/A'Expecting numeric in G3059 / R3059C7: got '#N/A'Expecting numeric in B3060 / R3060C2: got '#N/A'Expecting numeric in E3060 / R3060C5: got '#N/A'Expecting numeric in G3060 / R3060C7: got '#N/A'Expecting numeric in B3061 / R3061C2: got '#N/A'Expecting numeric in E3061 / R3061C5: got '#N/A'Expecting numeric in G3061 / R3061C7: got '#N/A'Expecting numeric in B3062 / R3062C2: got '#N/A'Expecting numeric in E3062 / R3062C5: got '#N/A'Expecting numeric in G3062 / R3062C7: got '#N/A'Expecting numeric in B3063 / R3063C2: got '#N/A'Expecting numeric in E3063 / R3063C5: got '#N/A'Expecting numeric in G3063 / R3063C7: got '#N/A'Expecting numeric in B3064 / R3064C2: got '#N/A'Expecting numeric in E3064 / R3064C5: got '#N/A'Expecting numeric in G3064 / R3064C7: got '#N/A'Expecting numeric in B3065 / R3065C2: got '#N/A'Expecting numeric in E3065 / R3065C5: got '#N/A'Expecting numeric in G3065 / R3065C7: got '#N/A'Expecting numeric in B3066 / R3066C2: got '#N/A'Expecting numeric in E3066 / R3066C5: got '#N/A'Expecting numeric in G3066 / R3066C7: got '#N/A'Expecting numeric in B3067 / R3067C2: got '#N/A'Expecting numeric in E3067 / R3067C5: got '#N/A'Expecting numeric in G3067 / R3067C7: got '#N/A'Expecting numeric in B3068 / R3068C2: got '#N/A'Expecting numeric in E3068 / R3068C5: got '#N/A'Expecting numeric in G3068 / R3068C7: got '#N/A'Expecting numeric in B3069 / R3069C2: got '#N/A'Expecting numeric in E3069 / R3069C5: got '#N/A'Expecting numeric in G3069 / R3069C7: got '#N/A'Expecting numeric in B3070 / R3070C2: got '#N/A'Expecting numeric in E3070 / R3070C5: got '#N/A'Expecting numeric in G3070 / R3070C7: got '#N/A'Expecting numeric in B3071 / R3071C2: got '#N/A'Expecting numeric in E3071 / R3071C5: got '#N/A'Expecting numeric in G3071 / R3071C7: got '#N/A'Expecting numeric in B3072 / R3072C2: got '#N/A'Expecting numeric in E3072 / R3072C5: got '#N/A'Expecting numeric in G3072 / R3072C7: got '#N/A'Expecting numeric in B3073 / R3073C2: got '#N/A'Expecting numeric in E3073 / R3073C5: got '#N/A'Expecting numeric in G3073 / R3073C7: got '#N/A'Expecting numeric in B3074 / R3074C2: got '#N/A'Expecting numeric in E3074 / R3074C5: got '#N/A'Expecting numeric in G3074 / R3074C7: got '#N/A'Expecting numeric in B3075 / R3075C2: got '#N/A'Expecting numeric in E3075 / R3075C5: got '#N/A'Expecting numeric in G3075 / R3075C7: got '#N/A'Expecting numeric in B3076 / R3076C2: got '#N/A'Expecting numeric in E3076 / R3076C5: got '#N/A'Expecting numeric in G3076 / R3076C7: got '#N/A'Expecting numeric in B3077 / R3077C2: got '#N/A'Expecting numeric in E3077 / R3077C5: got '#N/A'Expecting numeric in G3077 / R3077C7: got '#N/A'Expecting numeric in B3078 / R3078C2: got '#N/A'Expecting numeric in E3078 / R3078C5: got '#N/A'Expecting numeric in G3078 / R3078C7: got '#N/A'Expecting numeric in B3079 / R3079C2: got '#N/A'Expecting numeric in E3079 / R3079C5: got '#N/A'Expecting numeric in G3079 / R3079C7: got '#N/A'Expecting numeric in B3080 / R3080C2: got '#N/A'Expecting numeric in E3080 / R3080C5: got '#N/A'Expecting numeric in G3080 / R3080C7: got '#N/A'Expecting numeric in B3081 / R3081C2: got '#N/A'Expecting numeric in E3081 / R3081C5: got '#N/A'Expecting numeric in G3081 / R3081C7: got '#N/A'Expecting numeric in B3082 / R3082C2: got '#N/A'Expecting numeric in E3082 / R3082C5: got '#N/A'Expecting numeric in G3082 / R3082C7: got '#N/A'Expecting numeric in B3083 / R3083C2: got '#N/A'Expecting numeric in E3083 / R3083C5: got '#N/A'Expecting numeric in G3083 / R3083C7: got '#N/A'Expecting numeric in B3084 / R3084C2: got '#N/A'Expecting numeric in E3084 / R3084C5: got '#N/A'Expecting numeric in G3084 / R3084C7: got '#N/A'Expecting numeric in B3085 / R3085C2: got '#N/A'Expecting numeric in E3085 / R3085C5: got '#N/A'Expecting numeric in G3085 / R3085C7: got '#N/A'Expecting numeric in B3086 / R3086C2: got '#N/A'Expecting numeric in E3086 / R3086C5: got '#N/A'Expecting numeric in G3086 / R3086C7: got '#N/A'Expecting numeric in B3087 / R3087C2: got '#N/A'Expecting numeric in E3087 / R3087C5: got '#N/A'Expecting numeric in G3087 / R3087C7: got '#N/A'Expecting numeric in B3088 / R3088C2: got '#N/A'Expecting numeric in E3088 / R3088C5: got '#N/A'Expecting numeric in G3088 / R3088C7: got '#N/A'Expecting numeric in B3089 / R3089C2: got '#N/A'Expecting numeric in E3089 / R3089C5: got '#N/A'Expecting numeric in G3089 / R3089C7: got '#N/A'Expecting numeric in B3090 / R3090C2: got '#N/A'Expecting numeric in E3090 / R3090C5: got '#N/A'Expecting numeric in G3090 / R3090C7: got '#N/A'Expecting numeric in B3091 / R3091C2: got '#N/A'Expecting numeric in E3091 / R3091C5: got '#N/A'Expecting numeric in G3091 / R3091C7: got '#N/A'Expecting numeric in B3092 / R3092C2: got '#N/A'Expecting numeric in E3092 / R3092C5: got '#N/A'Expecting numeric in G3092 / R3092C7: got '#N/A'Expecting numeric in B3093 / R3093C2: got '#N/A'Expecting numeric in E3093 / R3093C5: got '#N/A'Expecting numeric in G3093 / R3093C7: got '#N/A'Expecting numeric in B3094 / R3094C2: got '#N/A'Expecting numeric in E3094 / R3094C5: got '#N/A'Expecting numeric in G3094 / R3094C7: got '#N/A'Expecting numeric in B3095 / R3095C2: got '#N/A'Expecting numeric in E3095 / R3095C5: got '#N/A'Expecting numeric in G3095 / R3095C7: got '#N/A'Expecting numeric in B3096 / R3096C2: got '#N/A'Expecting numeric in E3096 / R3096C5: got '#N/A'Expecting numeric in G3096 / R3096C7: got '#N/A'Expecting numeric in B3097 / R3097C2: got '#N/A'Expecting numeric in E3097 / R3097C5: got '#N/A'Expecting numeric in G3097 / R3097C7: got '#N/A'Expecting numeric in B3098 / R3098C2: got '#N/A'Expecting numeric in E3098 / R3098C5: got '#N/A'Expecting numeric in G3098 / R3098C7: got '#N/A'Expecting numeric in B3099 / R3099C2: got '#N/A'Expecting numeric in E3099 / R3099C5: got '#N/A'Expecting numeric in G3099 / R3099C7: got '#N/A'Expecting numeric in B3100 / R3100C2: got '#N/A'Expecting numeric in E3100 / R3100C5: got '#N/A'Expecting numeric in G3100 / R3100C7: got '#N/A'Expecting numeric in B3101 / R3101C2: got '#N/A'Expecting numeric in E3101 / R3101C5: got '#N/A'Expecting numeric in G3101 / R3101C7: got '#N/A'Expecting numeric in B3102 / R3102C2: got '#N/A'Expecting numeric in E3102 / R3102C5: got '#N/A'Expecting numeric in G3102 / R3102C7: got '#N/A'Expecting numeric in B3103 / R3103C2: got '#N/A'Expecting numeric in E3103 / R3103C5: got '#N/A'Expecting numeric in G3103 / R3103C7: got '#N/A'Expecting numeric in B3104 / R3104C2: got '#N/A'Expecting numeric in E3104 / R3104C5: got '#N/A'Expecting numeric in G3104 / R3104C7: got '#N/A'Expecting numeric in B3105 / R3105C2: got '#N/A'Expecting numeric in E3105 / R3105C5: got '#N/A'Expecting numeric in G3105 / R3105C7: got '#N/A'Expecting numeric in B3106 / R3106C2: got '#N/A'Expecting numeric in E3106 / R3106C5: got '#N/A'Expecting numeric in G3106 / R3106C7: got '#N/A'Expecting numeric in B3107 / R3107C2: got '#N/A'Expecting numeric in E3107 / R3107C5: got '#N/A'Expecting numeric in G3107 / R3107C7: got '#N/A'Expecting numeric in B3108 / R3108C2: got '#N/A'Expecting numeric in E3108 / R3108C5: got '#N/A'Expecting numeric in G3108 / R3108C7: got '#N/A'Expecting numeric in B3109 / R3109C2: got '#N/A'Expecting numeric in E3109 / R3109C5: got '#N/A'Expecting numeric in G3109 / R3109C7: got '#N/A'Expecting numeric in B3110 / R3110C2: got '#N/A'Expecting numeric in E3110 / R3110C5: got '#N/A'Expecting numeric in G3110 / R3110C7: got '#N/A'Expecting numeric in B3111 / R3111C2: got '#N/A'Expecting numeric in E3111 / R3111C5: got '#N/A'Expecting numeric in G3111 / R3111C7: got '#N/A'Expecting numeric in B3112 / R3112C2: got '#N/A'Expecting numeric in E3112 / R3112C5: got '#N/A'Expecting numeric in G3112 / R3112C7: got '#N/A'Expecting numeric in B3113 / R3113C2: got '#N/A'Expecting numeric in E3113 / R3113C5: got '#N/A'Expecting numeric in G3113 / R3113C7: got '#N/A'Expecting numeric in B3114 / R3114C2: got '#N/A'Expecting numeric in E3114 / R3114C5: got '#N/A'Expecting numeric in G3114 / R3114C7: got '#N/A'Expecting numeric in B3115 / R3115C2: got '#N/A'Expecting numeric in E3115 / R3115C5: got '#N/A'Expecting numeric in G3115 / R3115C7: got '#N/A'Expecting numeric in B3116 / R3116C2: got '#N/A'Expecting numeric in E3116 / R3116C5: got '#N/A'Expecting numeric in G3116 / R3116C7: got '#N/A'Expecting numeric in B3117 / R3117C2: got '#N/A'Expecting numeric in E3117 / R3117C5: got '#N/A'Expecting numeric in G3117 / R3117C7: got '#N/A'Expecting numeric in B3118 / R3118C2: got '#N/A'Expecting numeric in E3118 / R3118C5: got '#N/A'Expecting numeric in G3118 / R3118C7: got '#N/A'Expecting numeric in B3119 / R3119C2: got '#N/A'Expecting numeric in E3119 / R3119C5: got '#N/A'Expecting numeric in G3119 / R3119C7: got '#N/A'Expecting numeric in B3120 / R3120C2: got '#N/A'Expecting numeric in E3120 / R3120C5: got '#N/A'Expecting numeric in G3120 / R3120C7: got '#N/A'Expecting numeric in B3121 / R3121C2: got '#N/A'Expecting numeric in E3121 / R3121C5: got '#N/A'Expecting numeric in G3121 / R3121C7: got '#N/A'Expecting numeric in B3122 / R3122C2: got '#N/A'Expecting numeric in E3122 / R3122C5: got '#N/A'Expecting numeric in G3122 / R3122C7: got '#N/A'Expecting numeric in B3123 / R3123C2: got '#N/A'Expecting numeric in E3123 / R3123C5: got '#N/A'Expecting numeric in G3123 / R3123C7: got '#N/A'Expecting numeric in B3124 / R3124C2: got '#N/A'Expecting numeric in E3124 / R3124C5: got '#N/A'Expecting numeric in G3124 / R3124C7: got '#N/A'Expecting numeric in B3125 / R3125C2: got '#N/A'Expecting numeric in E3125 / R3125C5: got '#N/A'Expecting numeric in G3125 / R3125C7: got '#N/A'Expecting numeric in B3126 / R3126C2: got '#N/A'Expecting numeric in E3126 / R3126C5: got '#N/A'Expecting numeric in G3126 / R3126C7: got '#N/A'Expecting numeric in B3127 / R3127C2: got '#N/A'Expecting numeric in E3127 / R3127C5: got '#N/A'Expecting numeric in G3127 / R3127C7: got '#N/A'Expecting numeric in B3128 / R3128C2: got '#N/A'Expecting numeric in E3128 / R3128C5: got '#N/A'Expecting numeric in G3128 / R3128C7: got '#N/A'Expecting numeric in B3129 / R3129C2: got '#N/A'Expecting numeric in E3129 / R3129C5: got '#N/A'Expecting numeric in G3129 / R3129C7: got '#N/A'Expecting numeric in B3130 / R3130C2: got '#N/A'Expecting numeric in E3130 / R3130C5: got '#N/A'Expecting numeric in G3130 / R3130C7: got '#N/A'Expecting numeric in B3131 / R3131C2: got '#N/A'Expecting numeric in E3131 / R3131C5: got '#N/A'Expecting numeric in G3131 / R3131C7: got '#N/A'Expecting numeric in B3132 / R3132C2: got '#N/A'Expecting numeric in E3132 / R3132C5: got '#N/A'Expecting numeric in G3132 / R3132C7: got '#N/A'Expecting numeric in B3133 / R3133C2: got '#N/A'Expecting numeric in E3133 / R3133C5: got '#N/A'Expecting numeric in G3133 / R3133C7: got '#N/A'Expecting numeric in B3134 / R3134C2: got '#N/A'Expecting numeric in E3134 / R3134C5: got '#N/A'Expecting numeric in G3134 / R3134C7: got '#N/A'Expecting numeric in B3135 / R3135C2: got '#N/A'Expecting numeric in E3135 / R3135C5: got '#N/A'Expecting numeric in G3135 / R3135C7: got '#N/A'Expecting numeric in B3136 / R3136C2: got '#N/A'Expecting numeric in E3136 / R3136C5: got '#N/A'Expecting numeric in G3136 / R3136C7: got '#N/A'Expecting numeric in B3137 / R3137C2: got '#N/A'Expecting numeric in E3137 / R3137C5: got '#N/A'Expecting numeric in G3137 / R3137C7: got '#N/A'Expecting numeric in B3138 / R3138C2: got '#N/A'Expecting numeric in E3138 / R3138C5: got '#N/A'Expecting numeric in G3138 / R3138C7: got '#N/A'Expecting numeric in B3139 / R3139C2: got '#N/A'Expecting numeric in E3139 / R3139C5: got '#N/A'Expecting numeric in G3139 / R3139C7: got '#N/A'Expecting numeric in B3140 / R3140C2: got '#N/A'Expecting numeric in E3140 / R3140C5: got '#N/A'Expecting numeric in G3140 / R3140C7: got '#N/A'Expecting numeric in B3141 / R3141C2: got '#N/A'Expecting numeric in E3141 / R3141C5: got '#N/A'Expecting numeric in G3141 / R3141C7: got '#N/A'Expecting numeric in B3142 / R3142C2: got '#N/A'Expecting numeric in E3142 / R3142C5: got '#N/A'Expecting numeric in G3142 / R3142C7: got '#N/A'Expecting numeric in B3143 / R3143C2: got '#N/A'Expecting numeric in E3143 / R3143C5: got '#N/A'Expecting numeric in G3143 / R3143C7: got '#N/A'Expecting numeric in B3144 / R3144C2: got '#N/A'Expecting numeric in E3144 / R3144C5: got '#N/A'Expecting numeric in G3144 / R3144C7: got '#N/A'Expecting numeric in B3145 / R3145C2: got '#N/A'Expecting numeric in E3145 / R3145C5: got '#N/A'Expecting numeric in G3145 / R3145C7: got '#N/A'Expecting numeric in B3146 / R3146C2: got '#N/A'Expecting numeric in E3146 / R3146C5: got '#N/A'Expecting numeric in G3146 / R3146C7: got '#N/A'Expecting numeric in B3147 / R3147C2: got '#N/A'Expecting numeric in E3147 / R3147C5: got '#N/A'Expecting numeric in G3147 / R3147C7: got '#N/A'Expecting numeric in B3148 / R3148C2: got '#N/A'Expecting numeric in E3148 / R3148C5: got '#N/A'Expecting numeric in G3148 / R3148C7: got '#N/A'Expecting numeric in B3149 / R3149C2: got '#N/A'Expecting numeric in E3149 / R3149C5: got '#N/A'Expecting numeric in G3149 / R3149C7: got '#N/A'Expecting numeric in B3150 / R3150C2: got '#N/A'Expecting numeric in E3150 / R3150C5: got '#N/A'Expecting numeric in G3150 / R3150C7: got '#N/A'Expecting numeric in B3151 / R3151C2: got '#N/A'Expecting numeric in E3151 / R3151C5: got '#N/A'Expecting numeric in G3151 / R3151C7: got '#N/A'Expecting numeric in B3152 / R3152C2: got '#N/A'Expecting numeric in E3152 / R3152C5: got '#N/A'Expecting numeric in G3152 / R3152C7: got '#N/A'Expecting numeric in B3153 / R3153C2: got '#N/A'Expecting numeric in E3153 / R3153C5: got '#N/A'Expecting numeric in G3153 / R3153C7: got '#N/A'Expecting numeric in B3154 / R3154C2: got '#N/A'Expecting numeric in E3154 / R3154C5: got '#N/A'Expecting numeric in G3154 / R3154C7: got '#N/A'Expecting numeric in B3155 / R3155C2: got '#N/A'Expecting numeric in E3155 / R3155C5: got '#N/A'Expecting numeric in G3155 / R3155C7: got '#N/A'Expecting numeric in B3156 / R3156C2: got '#N/A'Expecting numeric in E3156 / R3156C5: got '#N/A'Expecting numeric in G3156 / R3156C7: got '#N/A'Expecting numeric in B3157 / R3157C2: got '#N/A'Expecting numeric in E3157 / R3157C5: got '#N/A'Expecting numeric in G3157 / R3157C7: got '#N/A'Expecting numeric in B3158 / R3158C2: got '#N/A'Expecting numeric in E3158 / R3158C5: got '#N/A'Expecting numeric in G3158 / R3158C7: got '#N/A'Expecting numeric in B3159 / R3159C2: got '#N/A'Expecting numeric in E3159 / R3159C5: got '#N/A'Expecting numeric in G3159 / R3159C7: got '#N/A'Expecting numeric in B3160 / R3160C2: got '#N/A'Expecting numeric in E3160 / R3160C5: got '#N/A'Expecting numeric in G3160 / R3160C7: got '#N/A'Expecting numeric in B3161 / R3161C2: got '#N/A'Expecting numeric in E3161 / R3161C5: got '#N/A'Expecting numeric in G3161 / R3161C7: got '#N/A'Expecting numeric in B3162 / R3162C2: got '#N/A'Expecting numeric in E3162 / R3162C5: got '#N/A'Expecting numeric in G3162 / R3162C7: got '#N/A'Expecting numeric in B3163 / R3163C2: got '#N/A'Expecting numeric in E3163 / R3163C5: got '#N/A'Expecting numeric in G3163 / R3163C7: got '#N/A'Expecting numeric in B3164 / R3164C2: got '#N/A'Expecting numeric in E3164 / R3164C5: got '#N/A'Expecting numeric in G3164 / R3164C7: got '#N/A'Expecting numeric in B3165 / R3165C2: got '#N/A'Expecting numeric in E3165 / R3165C5: got '#N/A'Expecting numeric in G3165 / R3165C7: got '#N/A'Expecting numeric in B3166 / R3166C2: got '#N/A'Expecting numeric in E3166 / R3166C5: got '#N/A'Expecting numeric in G3166 / R3166C7: got '#N/A'Expecting numeric in B3167 / R3167C2: got '#N/A'Expecting numeric in E3167 / R3167C5: got '#N/A'Expecting numeric in G3167 / R3167C7: got '#N/A'Expecting numeric in B3168 / R3168C2: got '#N/A'Expecting numeric in E3168 / R3168C5: got '#N/A'Expecting numeric in G3168 / R3168C7: got '#N/A'Expecting numeric in B3169 / R3169C2: got '#N/A'Expecting numeric in E3169 / R3169C5: got '#N/A'Expecting numeric in G3169 / R3169C7: got '#N/A'Expecting numeric in B3170 / R3170C2: got '#N/A'Expecting numeric in E3170 / R3170C5: got '#N/A'Expecting numeric in G3170 / R3170C7: got '#N/A'Expecting numeric in B3171 / R3171C2: got '#N/A'Expecting numeric in E3171 / R3171C5: got '#N/A'Expecting numeric in G3171 / R3171C7: got '#N/A'Expecting numeric in B3172 / R3172C2: got '#N/A'Expecting numeric in E3172 / R3172C5: got '#N/A'Expecting numeric in G3172 / R3172C7: got '#N/A'Expecting numeric in B3173 / R3173C2: got '#N/A'Expecting numeric in E3173 / R3173C5: got '#N/A'Expecting numeric in G3173 / R3173C7: got '#N/A'Expecting numeric in B3174 / R3174C2: got '#N/A'Expecting numeric in E3174 / R3174C5: got '#N/A'Expecting numeric in G3174 / R3174C7: got '#N/A'Expecting numeric in B3175 / R3175C2: got '#N/A'Expecting numeric in E3175 / R3175C5: got '#N/A'Expecting numeric in G3175 / R3175C7: got '#N/A'Expecting numeric in B3176 / R3176C2: got '#N/A'Expecting numeric in E3176 / R3176C5: got '#N/A'Expecting numeric in G3176 / R3176C7: got '#N/A'Expecting numeric in B3177 / R3177C2: got '#N/A'Expecting numeric in E3177 / R3177C5: got '#N/A'Expecting numeric in G3177 / R3177C7: got '#N/A'Expecting numeric in B3178 / R3178C2: got '#N/A'Expecting numeric in E3178 / R3178C5: got '#N/A'Expecting numeric in G3178 / R3178C7: got '#N/A'Expecting numeric in B3179 / R3179C2: got '#N/A'Expecting numeric in E3179 / R3179C5: got '#N/A'Expecting numeric in G3179 / R3179C7: got '#N/A'Expecting numeric in B3180 / R3180C2: got '#N/A'Expecting numeric in E3180 / R3180C5: got '#N/A'Expecting numeric in G3180 / R3180C7: got '#N/A'Expecting numeric in B3181 / R3181C2: got '#N/A'Expecting numeric in E3181 / R3181C5: got '#N/A'Expecting numeric in G3181 / R3181C7: got '#N/A'Expecting numeric in B3182 / R3182C2: got '#N/A'Expecting numeric in E3182 / R3182C5: got '#N/A'Expecting numeric in G3182 / R3182C7: got '#N/A'Expecting numeric in B3183 / R3183C2: got '#N/A'Expecting numeric in E3183 / R3183C5: got '#N/A'Expecting numeric in G3183 / R3183C7: got '#N/A'Expecting numeric in B3184 / R3184C2: got '#N/A'Expecting numeric in E3184 / R3184C5: got '#N/A'Expecting numeric in G3184 / R3184C7: got '#N/A'Expecting numeric in B3185 / R3185C2: got '#N/A'Expecting numeric in E3185 / R3185C5: got '#N/A'Expecting numeric in G3185 / R3185C7: got '#N/A'Expecting numeric in B3186 / R3186C2: got '#N/A'Expecting numeric in E3186 / R3186C5: got '#N/A'Expecting numeric in G3186 / R3186C7: got '#N/A'Expecting numeric in B3187 / R3187C2: got '#N/A'Expecting numeric in E3187 / R3187C5: got '#N/A'Expecting numeric in G3187 / R3187C7: got '#N/A'Expecting numeric in B3188 / R3188C2: got '#N/A'Expecting numeric in E3188 / R3188C5: got '#N/A'Expecting numeric in G3188 / R3188C7: got '#N/A'Expecting numeric in B3189 / R3189C2: got '#N/A'Expecting numeric in E3189 / R3189C5: got '#N/A'Expecting numeric in G3189 / R3189C7: got '#N/A'Expecting numeric in B3190 / R3190C2: got '#N/A'Expecting numeric in E3190 / R3190C5: got '#N/A'Expecting numeric in G3190 / R3190C7: got '#N/A'Expecting numeric in B3191 / R3191C2: got '#N/A'Expecting numeric in E3191 / R3191C5: got '#N/A'Expecting numeric in G3191 / R3191C7: got '#N/A'Expecting numeric in B3192 / R3192C2: got '#N/A'Expecting numeric in E3192 / R3192C5: got '#N/A'Expecting numeric in G3192 / R3192C7: got '#N/A'Expecting numeric in B3193 / R3193C2: got '#N/A'Expecting numeric in E3193 / R3193C5: got '#N/A'Expecting numeric in G3193 / R3193C7: got '#N/A'Expecting numeric in B3194 / R3194C2: got '#N/A'Expecting numeric in E3194 / R3194C5: got '#N/A'Expecting numeric in G3194 / R3194C7: got '#N/A'Expecting numeric in B3195 / R3195C2: got '#N/A'Expecting numeric in E3195 / R3195C5: got '#N/A'Expecting numeric in G3195 / R3195C7: got '#N/A'Expecting numeric in B3196 / R3196C2: got '#N/A'Expecting numeric in E3196 / R3196C5: got '#N/A'Expecting numeric in G3196 / R3196C7: got '#N/A'Expecting numeric in B3197 / R3197C2: got '#N/A'Expecting numeric in E3197 / R3197C5: got '#N/A'Expecting numeric in G3197 / R3197C7: got '#N/A'Expecting numeric in B3198 / R3198C2: got '#N/A'Expecting numeric in E3198 / R3198C5: got '#N/A'Expecting numeric in G3198 / R3198C7: got '#N/A'Expecting numeric in B3199 / R3199C2: got '#N/A'Expecting numeric in E3199 / R3199C5: got '#N/A'Expecting numeric in G3199 / R3199C7: got '#N/A'Expecting numeric in B3200 / R3200C2: got '#N/A'Expecting numeric in E3200 / R3200C5: got '#N/A'Expecting numeric in G3200 / R3200C7: got '#N/A'Expecting numeric in B3201 / R3201C2: got '#N/A'Expecting numeric in E3201 / R3201C5: got '#N/A'Expecting numeric in G3201 / R3201C7: got '#N/A'Expecting numeric in B3202 / R3202C2: got '#N/A'Expecting numeric in E3202 / R3202C5: got '#N/A'Expecting numeric in G3202 / R3202C7: got '#N/A'Expecting numeric in B3203 / R3203C2: got '#N/A'Expecting numeric in E3203 / R3203C5: got '#N/A'Expecting numeric in G3203 / R3203C7: got '#N/A'Expecting numeric in B3204 / R3204C2: got '#N/A'Expecting numeric in E3204 / R3204C5: got '#N/A'Expecting numeric in G3204 / R3204C7: got '#N/A'Expecting numeric in B3205 / R3205C2: got '#N/A'Expecting numeric in E3205 / R3205C5: got '#N/A'Expecting numeric in G3205 / R3205C7: got '#N/A'Expecting numeric in B3206 / R3206C2: got '#N/A'Expecting numeric in E3206 / R3206C5: got '#N/A'Expecting numeric in G3206 / R3206C7: got '#N/A'Expecting numeric in B3207 / R3207C2: got '#N/A'Expecting numeric in E3207 / R3207C5: got '#N/A'Expecting numeric in G3207 / R3207C7: got '#N/A'Expecting numeric in B3208 / R3208C2: got '#N/A'Expecting numeric in E3208 / R3208C5: got '#N/A'Expecting numeric in G3208 / R3208C7: got '#N/A'Expecting numeric in B3209 / R3209C2: got '#N/A'Expecting numeric in E3209 / R3209C5: got '#N/A'Expecting numeric in G3209 / R3209C7: got '#N/A'Expecting numeric in B3210 / R3210C2: got '#N/A'Expecting numeric in E3210 / R3210C5: got '#N/A'Expecting numeric in G3210 / R3210C7: got '#N/A'Expecting numeric in B3211 / R3211C2: got '#N/A'Expecting numeric in E3211 / R3211C5: got '#N/A'Expecting numeric in G3211 / R3211C7: got '#N/A'Expecting numeric in B3212 / R3212C2: got '#N/A'Expecting numeric in E3212 / R3212C5: got '#N/A'Expecting numeric in G3212 / R3212C7: got '#N/A'Expecting numeric in B3213 / R3213C2: got '#N/A'Expecting numeric in E3213 / R3213C5: got '#N/A'Expecting numeric in G3213 / R3213C7: got '#N/A'Expecting numeric in B3214 / R3214C2: got '#N/A'Expecting numeric in E3214 / R3214C5: got '#N/A'Expecting numeric in G3214 / R3214C7: got '#N/A'Expecting numeric in B3215 / R3215C2: got '#N/A'Expecting numeric in E3215 / R3215C5: got '#N/A'Expecting numeric in G3215 / R3215C7: got '#N/A'Expecting numeric in B3216 / R3216C2: got '#N/A'Expecting numeric in E3216 / R3216C5: got '#N/A'Expecting numeric in G3216 / R3216C7: got '#N/A'Expecting numeric in B3217 / R3217C2: got '#N/A'Expecting numeric in E3217 / R3217C5: got '#N/A'Expecting numeric in G3217 / R3217C7: got '#N/A'Expecting numeric in B3218 / R3218C2: got '#N/A'Expecting numeric in E3218 / R3218C5: got '#N/A'Expecting numeric in G3218 / R3218C7: got '#N/A'Expecting numeric in B3219 / R3219C2: got '#N/A'Expecting numeric in E3219 / R3219C5: got '#N/A'Expecting numeric in G3219 / R3219C7: got '#N/A'Expecting numeric in B3220 / R3220C2: got '#N/A'Expecting numeric in E3220 / R3220C5: got '#N/A'Expecting numeric in G3220 / R3220C7: got '#N/A'Expecting numeric in B3221 / R3221C2: got '#N/A'Expecting numeric in E3221 / R3221C5: got '#N/A'Expecting numeric in G3221 / R3221C7: got '#N/A'Expecting numeric in B3222 / R3222C2: got '#N/A'Expecting numeric in E3222 / R3222C5: got '#N/A'Expecting numeric in G3222 / R3222C7: got '#N/A'Expecting numeric in B3223 / R3223C2: got '#N/A'Expecting numeric in E3223 / R3223C5: got '#N/A'Expecting numeric in G3223 / R3223C7: got '#N/A'Expecting numeric in B3224 / R3224C2: got '#N/A'Expecting numeric in E3224 / R3224C5: got '#N/A'Expecting numeric in G3224 / R3224C7: got '#N/A'Expecting numeric in B3225 / R3225C2: got '#N/A'Expecting numeric in E3225 / R3225C5: got '#N/A'Expecting numeric in G3225 / R3225C7: got '#N/A'Expecting numeric in B3226 / R3226C2: got '#N/A'Expecting numeric in E3226 / R3226C5: got '#N/A'Expecting numeric in G3226 / R3226C7: got '#N/A'Expecting numeric in B3227 / R3227C2: got '#N/A'Expecting numeric in E3227 / R3227C5: got '#N/A'Expecting numeric in G3227 / R3227C7: got '#N/A'Expecting numeric in B3228 / R3228C2: got '#N/A'Expecting numeric in E3228 / R3228C5: got '#N/A'Expecting numeric in G3228 / R3228C7: got '#N/A'Expecting numeric in B3229 / R3229C2: got '#N/A'Expecting numeric in E3229 / R3229C5: got '#N/A'Expecting numeric in G3229 / R3229C7: got '#N/A'Expecting numeric in B3230 / R3230C2: got '#N/A'Expecting numeric in E3230 / R3230C5: got '#N/A'Expecting numeric in G3230 / R3230C7: got '#N/A'Expecting numeric in B3231 / R3231C2: got '#N/A'Expecting numeric in E3231 / R3231C5: got '#N/A'Expecting numeric in G3231 / R3231C7: got '#N/A'Expecting numeric in B3232 / R3232C2: got '#N/A'Expecting numeric in E3232 / R3232C5: got '#N/A'Expecting numeric in G3232 / R3232C7: got '#N/A'Expecting numeric in B3233 / R3233C2: got '#N/A'Expecting numeric in E3233 / R3233C5: got '#N/A'Expecting numeric in G3233 / R3233C7: got '#N/A'Expecting numeric in B3234 / R3234C2: got '#N/A'Expecting numeric in E3234 / R3234C5: got '#N/A'Expecting numeric in G3234 / R3234C7: got '#N/A'Expecting numeric in B3235 / R3235C2: got '#N/A'Expecting numeric in E3235 / R3235C5: got '#N/A'Expecting numeric in G3235 / R3235C7: got '#N/A'Expecting numeric in B3236 / R3236C2: got '#N/A'Expecting numeric in E3236 / R3236C5: got '#N/A'Expecting numeric in G3236 / R3236C7: got '#N/A'Expecting numeric in B3237 / R3237C2: got '#N/A'Expecting numeric in E3237 / R3237C5: got '#N/A'Expecting numeric in G3237 / R3237C7: got '#N/A'Expecting numeric in B3238 / R3238C2: got '#N/A'Expecting numeric in E3238 / R3238C5: got '#N/A'Expecting numeric in G3238 / R3238C7: got '#N/A'Expecting numeric in B3239 / R3239C2: got '#N/A'Expecting numeric in E3239 / R3239C5: got '#N/A'Expecting numeric in G3239 / R3239C7: got '#N/A'Expecting numeric in B3240 / R3240C2: got '#N/A'Expecting numeric in E3240 / R3240C5: got '#N/A'Expecting numeric in G3240 / R3240C7: got '#N/A'Expecting numeric in B3241 / R3241C2: got '#N/A'Expecting numeric in E3241 / R3241C5: got '#N/A'Expecting numeric in G3241 / R3241C7: got '#N/A'Expecting numeric in B3242 / R3242C2: got '#N/A'Expecting numeric in E3242 / R3242C5: got '#N/A'Expecting numeric in G3242 / R3242C7: got '#N/A'Expecting numeric in B3243 / R3243C2: got '#N/A'Expecting numeric in E3243 / R3243C5: got '#N/A'Expecting numeric in G3243 / R3243C7: got '#N/A'Expecting numeric in B3244 / R3244C2: got '#N/A'Expecting numeric in E3244 / R3244C5: got '#N/A'Expecting numeric in G3244 / R3244C7: got '#N/A'Expecting numeric in B3245 / R3245C2: got '#N/A'Expecting numeric in E3245 / R3245C5: got '#N/A'Expecting numeric in G3245 / R3245C7: got '#N/A'Expecting numeric in B3246 / R3246C2: got '#N/A'Expecting numeric in E3246 / R3246C5: got '#N/A'Expecting numeric in G3246 / R3246C7: got '#N/A'Expecting numeric in B3247 / R3247C2: got '#N/A'Expecting numeric in E3247 / R3247C5: got '#N/A'Expecting numeric in G3247 / R3247C7: got '#N/A'Expecting numeric in B3248 / R3248C2: got '#N/A'Expecting numeric in E3248 / R3248C5: got '#N/A'Expecting numeric in G3248 / R3248C7: got '#N/A'Expecting numeric in B3249 / R3249C2: got '#N/A'Expecting numeric in E3249 / R3249C5: got '#N/A'Expecting numeric in G3249 / R3249C7: got '#N/A'Expecting numeric in B3250 / R3250C2: got '#N/A'Expecting numeric in E3250 / R3250C5: got '#N/A'Expecting numeric in G3250 / R3250C7: got '#N/A'Expecting numeric in B3251 / R3251C2: got '#N/A'Expecting numeric in E3251 / R3251C5: got '#N/A'Expecting numeric in G3251 / R3251C7: got '#N/A'Expecting numeric in B3252 / R3252C2: got '#N/A'Expecting numeric in E3252 / R3252C5: got '#N/A'Expecting numeric in G3252 / R3252C7: got '#N/A'Expecting numeric in B3253 / R3253C2: got '#N/A'Expecting numeric in E3253 / R3253C5: got '#N/A'Expecting numeric in G3253 / R3253C7: got '#N/A'Expecting numeric in B3254 / R3254C2: got '#N/A'Expecting numeric in E3254 / R3254C5: got '#N/A'Expecting numeric in G3254 / R3254C7: got '#N/A'Expecting numeric in B3255 / R3255C2: got '#N/A'Expecting numeric in E3255 / R3255C5: got '#N/A'Expecting numeric in G3255 / R3255C7: got '#N/A'Expecting numeric in B3256 / R3256C2: got '#N/A'Expecting numeric in E3256 / R3256C5: got '#N/A'Expecting numeric in G3256 / R3256C7: got '#N/A'Expecting numeric in B3257 / R3257C2: got '#N/A'Expecting numeric in E3257 / R3257C5: got '#N/A'Expecting numeric in G3257 / R3257C7: got '#N/A'Expecting numeric in B3258 / R3258C2: got '#N/A'Expecting numeric in E3258 / R3258C5: got '#N/A'Expecting numeric in G3258 / R3258C7: got '#N/A'Expecting numeric in B3259 / R3259C2: got '#N/A'Expecting numeric in E3259 / R3259C5: got '#N/A'Expecting numeric in G3259 / R3259C7: got '#N/A'Expecting numeric in B3260 / R3260C2: got '#N/A'Expecting numeric in E3260 / R3260C5: got '#N/A'Expecting numeric in G3260 / R3260C7: got '#N/A'Expecting numeric in B3261 / R3261C2: got '#N/A'Expecting numeric in E3261 / R3261C5: got '#N/A'Expecting numeric in G3261 / R3261C7: got '#N/A'Expecting numeric in B3262 / R3262C2: got '#N/A'Expecting numeric in E3262 / R3262C5: got '#N/A'Expecting numeric in G3262 / R3262C7: got '#N/A'Expecting numeric in B3263 / R3263C2: got '#N/A'Expecting numeric in E3263 / R3263C5: got '#N/A'Expecting numeric in G3263 / R3263C7: got '#N/A'Expecting numeric in B3264 / R3264C2: got '#N/A'Expecting numeric in E3264 / R3264C5: got '#N/A'Expecting numeric in G3264 / R3264C7: got '#N/A'Expecting numeric in B3265 / R3265C2: got '#N/A'Expecting numeric in E3265 / R3265C5: got '#N/A'Expecting numeric in G3265 / R3265C7: got '#N/A'Expecting numeric in B3266 / R3266C2: got '#N/A'Expecting numeric in E3266 / R3266C5: got '#N/A'Expecting numeric in G3266 / R3266C7: got '#N/A'Expecting numeric in B3267 / R3267C2: got '#N/A'Expecting numeric in E3267 / R3267C5: got '#N/A'Expecting numeric in G3267 / R3267C7: got '#N/A'Expecting numeric in B3268 / R3268C2: got '#N/A'Expecting numeric in E3268 / R3268C5: got '#N/A'Expecting numeric in G3268 / R3268C7: got '#N/A'Expecting numeric in B3269 / R3269C2: got '#N/A'Expecting numeric in E3269 / R3269C5: got '#N/A'Expecting numeric in G3269 / R3269C7: got '#N/A'Expecting numeric in B3270 / R3270C2: got '#N/A'Expecting numeric in E3270 / R3270C5: got '#N/A'Expecting numeric in G3270 / R3270C7: got '#N/A'Expecting numeric in B3271 / R3271C2: got '#N/A'Expecting numeric in E3271 / R3271C5: got '#N/A'Expecting numeric in G3271 / R3271C7: got '#N/A'Expecting numeric in B3272 / R3272C2: got '#N/A'Expecting numeric in E3272 / R3272C5: got '#N/A'Expecting numeric in G3272 / R3272C7: got '#N/A'Expecting numeric in B3273 / R3273C2: got '#N/A'Expecting numeric in E3273 / R3273C5: got '#N/A'Expecting numeric in G3273 / R3273C7: got '#N/A'Expecting numeric in B3274 / R3274C2: got '#N/A'Expecting numeric in E3274 / R3274C5: got '#N/A'Expecting numeric in G3274 / R3274C7: got '#N/A'Expecting numeric in B3275 / R3275C2: got '#N/A'Expecting numeric in E3275 / R3275C5: got '#N/A'Expecting numeric in G3275 / R3275C7: got '#N/A'Expecting numeric in B3276 / R3276C2: got '#N/A'Expecting numeric in E3276 / R3276C5: got '#N/A'Expecting numeric in G3276 / R3276C7: got '#N/A'Expecting numeric in B3277 / R3277C2: got '#N/A'Expecting numeric in E3277 / R3277C5: got '#N/A'Expecting numeric in G3277 / R3277C7: got '#N/A'Expecting numeric in B3278 / R3278C2: got '#N/A'Expecting numeric in E3278 / R3278C5: got '#N/A'Expecting numeric in G3278 / R3278C7: got '#N/A'Expecting numeric in B3279 / R3279C2: got '#N/A'Expecting numeric in E3279 / R3279C5: got '#N/A'Expecting numeric in G3279 / R3279C7: got '#N/A'Expecting numeric in B3280 / R3280C2: got '#N/A'Expecting numeric in E3280 / R3280C5: got '#N/A'Expecting numeric in G3280 / R3280C7: got '#N/A'Expecting numeric in B3281 / R3281C2: got '#N/A'Expecting numeric in E3281 / R3281C5: got '#N/A'Expecting numeric in G3281 / R3281C7: got '#N/A'Expecting numeric in B3282 / R3282C2: got '#N/A'Expecting numeric in E3282 / R3282C5: got '#N/A'Expecting numeric in G3282 / R3282C7: got '#N/A'Expecting numeric in B3283 / R3283C2: got '#N/A'Expecting numeric in E3283 / R3283C5: got '#N/A'Expecting numeric in G3283 / R3283C7: got '#N/A'Expecting numeric in B3284 / R3284C2: got '#N/A'Expecting numeric in E3284 / R3284C5: got '#N/A'Expecting numeric in G3284 / R3284C7: got '#N/A'Expecting numeric in B3285 / R3285C2: got '#N/A'Expecting numeric in E3285 / R3285C5: got '#N/A'Expecting numeric in G3285 / R3285C7: got '#N/A'Expecting numeric in B3286 / R3286C2: got '#N/A'Expecting numeric in E3286 / R3286C5: got '#N/A'Expecting numeric in G3286 / R3286C7: got '#N/A'Expecting numeric in B3287 / R3287C2: got '#N/A'Expecting numeric in E3287 / R3287C5: got '#N/A'Expecting numeric in G3287 / R3287C7: got '#N/A'Expecting numeric in B3288 / R3288C2: got '#N/A'Expecting numeric in E3288 / R3288C5: got '#N/A'Expecting numeric in G3288 / R3288C7: got '#N/A'Expecting numeric in B3289 / R3289C2: got '#N/A'Expecting numeric in E3289 / R3289C5: got '#N/A'Expecting numeric in G3289 / R3289C7: got '#N/A'Expecting numeric in B3290 / R3290C2: got '#N/A'Expecting numeric in E3290 / R3290C5: got '#N/A'Expecting numeric in G3290 / R3290C7: got '#N/A'Expecting numeric in B3291 / R3291C2: got '#N/A'Expecting numeric in E3291 / R3291C5: got '#N/A'Expecting numeric in G3291 / R3291C7: got '#N/A'Expecting numeric in B3292 / R3292C2: got '#N/A'Expecting numeric in E3292 / R3292C5: got '#N/A'Expecting numeric in G3292 / R3292C7: got '#N/A'Expecting numeric in B3293 / R3293C2: got '#N/A'Expecting numeric in E3293 / R3293C5: got '#N/A'Expecting numeric in G3293 / R3293C7: got '#N/A'Expecting numeric in B3294 / R3294C2: got '#N/A'Expecting numeric in E3294 / R3294C5: got '#N/A'Expecting numeric in G3294 / R3294C7: got '#N/A'Expecting numeric in B3295 / R3295C2: got '#N/A'Expecting numeric in E3295 / R3295C5: got '#N/A'Expecting numeric in G3295 / R3295C7: got '#N/A'Expecting numeric in B3296 / R3296C2: got '#N/A'Expecting numeric in E3296 / R3296C5: got '#N/A'Expecting numeric in G3296 / R3296C7: got '#N/A'Expecting numeric in B3297 / R3297C2: got '#N/A'Expecting numeric in E3297 / R3297C5: got '#N/A'Expecting numeric in G3297 / R3297C7: got '#N/A'Expecting numeric in B3298 / R3298C2: got '#N/A'Expecting numeric in E3298 / R3298C5: got '#N/A'Expecting numeric in G3298 / R3298C7: got '#N/A'Expecting numeric in B3299 / R3299C2: got '#N/A'Expecting numeric in E3299 / R3299C5: got '#N/A'Expecting numeric in G3299 / R3299C7: got '#N/A'Expecting numeric in B3300 / R3300C2: got '#N/A'Expecting numeric in E3300 / R3300C5: got '#N/A'Expecting numeric in G3300 / R3300C7: got '#N/A'Expecting numeric in B3301 / R3301C2: got '#N/A'Expecting numeric in E3301 / R3301C5: got '#N/A'Expecting numeric in G3301 / R3301C7: got '#N/A'Expecting numeric in B3302 / R3302C2: got '#N/A'Expecting numeric in E3302 / R3302C5: got '#N/A'Expecting numeric in G3302 / R3302C7: got '#N/A'Expecting numeric in B3303 / R3303C2: got '#N/A'Expecting numeric in E3303 / R3303C5: got '#N/A'Expecting numeric in G3303 / R3303C7: got '#N/A'Expecting numeric in B3304 / R3304C2: got '#N/A'Expecting numeric in E3304 / R3304C5: got '#N/A'Expecting numeric in G3304 / R3304C7: got '#N/A'Expecting numeric in B3305 / R3305C2: got '#N/A'Expecting numeric in E3305 / R3305C5: got '#N/A'Expecting numeric in G3305 / R3305C7: got '#N/A'Expecting numeric in B3306 / R3306C2: got '#N/A'Expecting numeric in E3306 / R3306C5: got '#N/A'Expecting numeric in G3306 / R3306C7: got '#N/A'Expecting numeric in B3307 / R3307C2: got '#N/A'Expecting numeric in E3307 / R3307C5: got '#N/A'Expecting numeric in G3307 / R3307C7: got '#N/A'Expecting numeric in B3308 / R3308C2: got '#N/A'Expecting numeric in E3308 / R3308C5: got '#N/A'Expecting numeric in G3308 / R3308C7: got '#N/A'Expecting numeric in B3309 / R3309C2: got '#N/A'Expecting numeric in E3309 / R3309C5: got '#N/A'Expecting numeric in G3309 / R3309C7: got '#N/A'Expecting numeric in B3310 / R3310C2: got '#N/A'Expecting numeric in E3310 / R3310C5: got '#N/A'Expecting numeric in G3310 / R3310C7: got '#N/A'Expecting numeric in B3311 / R3311C2: got '#N/A'Expecting numeric in E3311 / R3311C5: got '#N/A'Expecting numeric in G3311 / R3311C7: got '#N/A'Expecting numeric in B3312 / R3312C2: got '#N/A'Expecting numeric in E3312 / R3312C5: got '#N/A'Expecting numeric in G3312 / R3312C7: got '#N/A'Expecting numeric in B3313 / R3313C2: got '#N/A'Expecting numeric in E3313 / R3313C5: got '#N/A'Expecting numeric in G3313 / R3313C7: got '#N/A'Expecting numeric in B3314 / R3314C2: got '#N/A'Expecting numeric in E3314 / R3314C5: got '#N/A'Expecting numeric in G3314 / R3314C7: got '#N/A'Expecting numeric in B3315 / R3315C2: got '#N/A'Expecting numeric in E3315 / R3315C5: got '#N/A'Expecting numeric in G3315 / R3315C7: got '#N/A'Expecting numeric in B3316 / R3316C2: got '#N/A'Expecting numeric in E3316 / R3316C5: got '#N/A'Expecting numeric in G3316 / R3316C7: got '#N/A'Expecting numeric in B3317 / R3317C2: got '#N/A'Expecting numeric in E3317 / R3317C5: got '#N/A'Expecting numeric in G3317 / R3317C7: got '#N/A'Expecting numeric in B3318 / R3318C2: got '#N/A'Expecting numeric in E3318 / R3318C5: got '#N/A'Expecting numeric in G3318 / R3318C7: got '#N/A'Expecting numeric in B3319 / R3319C2: got '#N/A'Expecting numeric in E3319 / R3319C5: got '#N/A'Expecting numeric in G3319 / R3319C7: got '#N/A'Expecting numeric in B3320 / R3320C2: got '#N/A'Expecting numeric in E3320 / R3320C5: got '#N/A'Expecting numeric in G3320 / R3320C7: got '#N/A'Expecting numeric in B3321 / R3321C2: got '#N/A'Expecting numeric in E3321 / R3321C5: got '#N/A'Expecting numeric in G3321 / R3321C7: got '#N/A'Expecting numeric in B3322 / R3322C2: got '#N/A'Expecting numeric in E3322 / R3322C5: got '#N/A'Expecting numeric in G3322 / R3322C7: got '#N/A'Expecting numeric in B3323 / R3323C2: got '#N/A'Expecting numeric in E3323 / R3323C5: got '#N/A'Expecting numeric in G3323 / R3323C7: got '#N/A'Expecting numeric in B3324 / R3324C2: got '#N/A'Expecting numeric in E3324 / R3324C5: got '#N/A'Expecting numeric in G3324 / R3324C7: got '#N/A'Expecting numeric in B3325 / R3325C2: got '#N/A'Expecting numeric in E3325 / R3325C5: got '#N/A'Expecting numeric in G3325 / R3325C7: got '#N/A'Expecting numeric in B3326 / R3326C2: got '#N/A'Expecting numeric in E3326 / R3326C5: got '#N/A'Expecting numeric in G3326 / R3326C7: got '#N/A'Expecting numeric in B3327 / R3327C2: got '#N/A'Expecting numeric in E3327 / R3327C5: got '#N/A'Expecting numeric in G3327 / R3327C7: got '#N/A'Expecting numeric in B3328 / R3328C2: got '#N/A'Expecting numeric in E3328 / R3328C5: got '#N/A'Expecting numeric in G3328 / R3328C7: got '#N/A'Expecting numeric in B3329 / R3329C2: got '#N/A'Expecting numeric in E3329 / R3329C5: got '#N/A'Expecting numeric in G3329 / R3329C7: got '#N/A'Expecting numeric in B3330 / R3330C2: got '#N/A'Expecting numeric in E3330 / R3330C5: got '#N/A'Expecting numeric in G3330 / R3330C7: got '#N/A'Expecting numeric in B3331 / R3331C2: got '#N/A'Expecting numeric in E3331 / R3331C5: got '#N/A'Expecting numeric in G3331 / R3331C7: got '#N/A'Expecting numeric in B3332 / R3332C2: got '#N/A'Expecting numeric in E3332 / R3332C5: got '#N/A'Expecting numeric in G3332 / R3332C7: got '#N/A'Expecting numeric in B3333 / R3333C2: got '#N/A'Expecting numeric in E3333 / R3333C5: got '#N/A'Expecting numeric in G3333 / R3333C7: got '#N/A'Expecting numeric in B3334 / R3334C2: got '#N/A'Expecting numeric in E3334 / R3334C5: got '#N/A'Expecting numeric in G3334 / R3334C7: got '#N/A'Expecting numeric in B3335 / R3335C2: got '#N/A'Expecting numeric in E3335 / R3335C5: got '#N/A'Expecting numeric in G3335 / R3335C7: got '#N/A'Expecting numeric in B3336 / R3336C2: got '#N/A'Expecting numeric in E3336 / R3336C5: got '#N/A'Expecting numeric in G3336 / R3336C7: got '#N/A'Expecting numeric in B3337 / R3337C2: got '#N/A'Expecting numeric in E3337 / R3337C5: got '#N/A'Expecting numeric in G3337 / R3337C7: got '#N/A'Expecting numeric in B3338 / R3338C2: got '#N/A'Expecting numeric in E3338 / R3338C5: got '#N/A'Expecting numeric in G3338 / R3338C7: got '#N/A'Expecting numeric in B3339 / R3339C2: got '#N/A'Expecting numeric in E3339 / R3339C5: got '#N/A'Expecting numeric in G3339 / R3339C7: got '#N/A'Expecting numeric in B3340 / R3340C2: got '#N/A'Expecting numeric in E3340 / R3340C5: got '#N/A'Expecting numeric in G3340 / R3340C7: got '#N/A'Expecting numeric in B3341 / R3341C2: got '#N/A'Expecting numeric in E3341 / R3341C5: got '#N/A'Expecting numeric in G3341 / R3341C7: got '#N/A'Expecting numeric in B3342 / R3342C2: got '#N/A'Expecting numeric in E3342 / R3342C5: got '#N/A'Expecting numeric in G3342 / R3342C7: got '#N/A'Expecting numeric in B3343 / R3343C2: got '#N/A'Expecting numeric in E3343 / R3343C5: got '#N/A'Expecting numeric in G3343 / R3343C7: got '#N/A'Expecting numeric in B3344 / R3344C2: got '#N/A'Expecting numeric in E3344 / R3344C5: got '#N/A'Expecting numeric in G3344 / R3344C7: got '#N/A'Expecting numeric in B3345 / R3345C2: got '#N/A'Expecting numeric in E3345 / R3345C5: got '#N/A'Expecting numeric in G3345 / R3345C7: got '#N/A'Expecting numeric in B3346 / R3346C2: got '#N/A'Expecting numeric in E3346 / R3346C5: got '#N/A'Expecting numeric in G3346 / R3346C7: got '#N/A'Expecting numeric in B3347 / R3347C2: got '#N/A'Expecting numeric in E3347 / R3347C5: got '#N/A'Expecting numeric in G3347 / R3347C7: got '#N/A'Expecting numeric in B3348 / R3348C2: got '#N/A'Expecting numeric in E3348 / R3348C5: got '#N/A'Expecting numeric in G3348 / R3348C7: got '#N/A'Expecting numeric in B3349 / R3349C2: got '#N/A'Expecting numeric in E3349 / R3349C5: got '#N/A'Expecting numeric in G3349 / R3349C7: got '#N/A'Expecting numeric in B3350 / R3350C2: got '#N/A'Expecting numeric in E3350 / R3350C5: got '#N/A'Expecting numeric in G3350 / R3350C7: got '#N/A'Expecting numeric in B3351 / R3351C2: got '#N/A'Expecting numeric in E3351 / R3351C5: got '#N/A'Expecting numeric in G3351 / R3351C7: got '#N/A'Expecting numeric in B3352 / R3352C2: got '#N/A'Expecting numeric in E3352 / R3352C5: got '#N/A'Expecting numeric in G3352 / R3352C7: got '#N/A'Expecting numeric in B3353 / R3353C2: got '#N/A'Expecting numeric in E3353 / R3353C5: got '#N/A'Expecting numeric in G3353 / R3353C7: got '#N/A'Expecting numeric in B3354 / R3354C2: got '#N/A'Expecting numeric in E3354 / R3354C5: got '#N/A'Expecting numeric in G3354 / R3354C7: got '#N/A'Expecting numeric in B3355 / R3355C2: got '#N/A'Expecting numeric in E3355 / R3355C5: got '#N/A'Expecting numeric in G3355 / R3355C7: got '#N/A'Expecting numeric in B3356 / R3356C2: got '#N/A'Expecting numeric in E3356 / R3356C5: got '#N/A'Expecting numeric in G3356 / R3356C7: got '#N/A'Expecting numeric in B3357 / R3357C2: got '#N/A'Expecting numeric in E3357 / R3357C5: got '#N/A'Expecting numeric in G3357 / R3357C7: got '#N/A'Expecting numeric in B3358 / R3358C2: got '#N/A'Expecting numeric in E3358 / R3358C5: got '#N/A'Expecting numeric in G3358 / R3358C7: got '#N/A'Expecting numeric in B3359 / R3359C2: got '#N/A'Expecting numeric in E3359 / R3359C5: got '#N/A'Expecting numeric in G3359 / R3359C7: got '#N/A'Expecting numeric in B3360 / R3360C2: got '#N/A'Expecting numeric in E3360 / R3360C5: got '#N/A'Expecting numeric in G3360 / R3360C7: got '#N/A'Expecting numeric in B3361 / R3361C2: got '#N/A'Expecting numeric in E3361 / R3361C5: got '#N/A'Expecting numeric in G3361 / R3361C7: got '#N/A'Expecting numeric in B3362 / R3362C2: got '#N/A'Expecting numeric in E3362 / R3362C5: got '#N/A'Expecting numeric in G3362 / R3362C7: got '#N/A'Expecting numeric in B3363 / R3363C2: got '#N/A'Expecting numeric in E3363 / R3363C5: got '#N/A'Expecting numeric in G3363 / R3363C7: got '#N/A'Expecting numeric in B3364 / R3364C2: got '#N/A'Expecting numeric in E3364 / R3364C5: got '#N/A'Expecting numeric in G3364 / R3364C7: got '#N/A'Expecting numeric in B3365 / R3365C2: got '#N/A'Expecting numeric in E3365 / R3365C5: got '#N/A'Expecting numeric in G3365 / R3365C7: got '#N/A'Expecting numeric in B3366 / R3366C2: got '#N/A'Expecting numeric in E3366 / R3366C5: got '#N/A'Expecting numeric in G3366 / R3366C7: got '#N/A'Expecting numeric in B3367 / R3367C2: got '#N/A'Expecting numeric in E3367 / R3367C5: got '#N/A'Expecting numeric in G3367 / R3367C7: got '#N/A'Expecting numeric in B3368 / R3368C2: got '#N/A'Expecting numeric in E3368 / R3368C5: got '#N/A'Expecting numeric in G3368 / R3368C7: got '#N/A'Expecting numeric in B3369 / R3369C2: got '#N/A'Expecting numeric in E3369 / R3369C5: got '#N/A'Expecting numeric in G3369 / R3369C7: got '#N/A'Expecting numeric in B3370 / R3370C2: got '#N/A'Expecting numeric in E3370 / R3370C5: got '#N/A'Expecting numeric in G3370 / R3370C7: got '#N/A'Expecting numeric in B3371 / R3371C2: got '#N/A'Expecting numeric in E3371 / R3371C5: got '#N/A'Expecting numeric in G3371 / R3371C7: got '#N/A'Expecting numeric in B3372 / R3372C2: got '#N/A'Expecting numeric in E3372 / R3372C5: got '#N/A'Expecting numeric in G3372 / R3372C7: got '#N/A'Expecting numeric in B3373 / R3373C2: got '#N/A'Expecting numeric in E3373 / R3373C5: got '#N/A'Expecting numeric in G3373 / R3373C7: got '#N/A'Expecting numeric in B3374 / R3374C2: got '#N/A'Expecting numeric in E3374 / R3374C5: got '#N/A'Expecting numeric in G3374 / R3374C7: got '#N/A'Expecting numeric in B3375 / R3375C2: got '#N/A'Expecting numeric in E3375 / R3375C5: got '#N/A'Expecting numeric in G3375 / R3375C7: got '#N/A'Expecting numeric in B3376 / R3376C2: got '#N/A'Expecting numeric in E3376 / R3376C5: got '#N/A'Expecting numeric in G3376 / R3376C7: got '#N/A'Expecting numeric in B3377 / R3377C2: got '#N/A'Expecting numeric in E3377 / R3377C5: got '#N/A'Expecting numeric in G3377 / R3377C7: got '#N/A'Expecting numeric in B3378 / R3378C2: got '#N/A'Expecting numeric in E3378 / R3378C5: got '#N/A'Expecting numeric in G3378 / R3378C7: got '#N/A'Expecting numeric in B3379 / R3379C2: got '#N/A'Expecting numeric in E3379 / R3379C5: got '#N/A'Expecting numeric in G3379 / R3379C7: got '#N/A'Expecting numeric in B3380 / R3380C2: got '#N/A'Expecting numeric in E3380 / R3380C5: got '#N/A'Expecting numeric in G3380 / R3380C7: got '#N/A'Expecting numeric in B3381 / R3381C2: got '#N/A'Expecting numeric in E3381 / R3381C5: got '#N/A'Expecting numeric in G3381 / R3381C7: got '#N/A'Expecting numeric in B3382 / R3382C2: got '#N/A'Expecting numeric in E3382 / R3382C5: got '#N/A'Expecting numeric in G3382 / R3382C7: got '#N/A'Expecting numeric in B3383 / R3383C2: got '#N/A'Expecting numeric in E3383 / R3383C5: got '#N/A'Expecting numeric in G3383 / R3383C7: got '#N/A'Expecting numeric in B3384 / R3384C2: got '#N/A'Expecting numeric in E3384 / R3384C5: got '#N/A'Expecting numeric in G3384 / R3384C7: got '#N/A'Expecting numeric in B3385 / R3385C2: got '#N/A'Expecting numeric in E3385 / R3385C5: got '#N/A'Expecting numeric in G3385 / R3385C7: got '#N/A'Expecting numeric in B3386 / R3386C2: got '#N/A'Expecting numeric in E3386 / R3386C5: got '#N/A'Expecting numeric in G3386 / R3386C7: got '#N/A'Expecting numeric in B3387 / R3387C2: got '#N/A'Expecting numeric in E3387 / R3387C5: got '#N/A'Expecting numeric in G3387 / R3387C7: got '#N/A'Expecting numeric in B3388 / R3388C2: got '#N/A'Expecting numeric in E3388 / R3388C5: got '#N/A'Expecting numeric in G3388 / R3388C7: got '#N/A'Expecting numeric in B3389 / R3389C2: got '#N/A'Expecting numeric in E3389 / R3389C5: got '#N/A'Expecting numeric in G3389 / R3389C7: got '#N/A'Expecting numeric in B3390 / R3390C2: got '#N/A'Expecting numeric in E3390 / R3390C5: got '#N/A'Expecting numeric in G3390 / R3390C7: got '#N/A'Expecting numeric in B3391 / R3391C2: got '#N/A'Expecting numeric in E3391 / R3391C5: got '#N/A'Expecting numeric in G3391 / R3391C7: got '#N/A'Expecting numeric in B3392 / R3392C2: got '#N/A'Expecting numeric in E3392 / R3392C5: got '#N/A'Expecting numeric in G3392 / R3392C7: got '#N/A'Expecting numeric in B3393 / R3393C2: got '#N/A'Expecting numeric in E3393 / R3393C5: got '#N/A'Expecting numeric in G3393 / R3393C7: got '#N/A'Expecting numeric in B3394 / R3394C2: got '#N/A'Expecting numeric in E3394 / R3394C5: got '#N/A'Expecting numeric in G3394 / R3394C7: got '#N/A'Expecting numeric in B3395 / R3395C2: got '#N/A'Expecting numeric in E3395 / R3395C5: got '#N/A'Expecting numeric in G3395 / R3395C7: got '#N/A'Expecting numeric in B3396 / R3396C2: got '#N/A'Expecting numeric in E3396 / R3396C5: got '#N/A'Expecting numeric in G3396 / R3396C7: got '#N/A'Expecting numeric in B3397 / R3397C2: got '#N/A'Expecting numeric in E3397 / R3397C5: got '#N/A'Expecting numeric in G3397 / R3397C7: got '#N/A'Expecting numeric in B3398 / R3398C2: got '#N/A'Expecting numeric in E3398 / R3398C5: got '#N/A'Expecting numeric in G3398 / R3398C7: got '#N/A'Expecting numeric in B3399 / R3399C2: got '#N/A'Expecting numeric in E3399 / R3399C5: got '#N/A'Expecting numeric in G3399 / R3399C7: got '#N/A'Expecting numeric in B3400 / R3400C2: got '#N/A'Expecting numeric in E3400 / R3400C5: got '#N/A'Expecting numeric in G3400 / R3400C7: got '#N/A'Expecting numeric in B3401 / R3401C2: got '#N/A'Expecting numeric in E3401 / R3401C5: got '#N/A'Expecting numeric in G3401 / R3401C7: got '#N/A'Expecting numeric in B3402 / R3402C2: got '#N/A'Expecting numeric in E3402 / R3402C5: got '#N/A'Expecting numeric in G3402 / R3402C7: got '#N/A'Expecting numeric in B3403 / R3403C2: got '#N/A'Expecting numeric in E3403 / R3403C5: got '#N/A'Expecting numeric in G3403 / R3403C7: got '#N/A'Expecting numeric in B3404 / R3404C2: got '#N/A'Expecting numeric in E3404 / R3404C5: got '#N/A'Expecting numeric in G3404 / R3404C7: got '#N/A'Expecting numeric in B3405 / R3405C2: got '#N/A'Expecting numeric in E3405 / R3405C5: got '#N/A'Expecting numeric in G3405 / R3405C7: got '#N/A'Expecting numeric in B3406 / R3406C2: got '#N/A'Expecting numeric in E3406 / R3406C5: got '#N/A'Expecting numeric in G3406 / R3406C7: got '#N/A'Expecting numeric in B3407 / R3407C2: got '#N/A'Expecting numeric in E3407 / R3407C5: got '#N/A'Expecting numeric in G3407 / R3407C7: got '#N/A'Expecting numeric in B3408 / R3408C2: got '#N/A'Expecting numeric in E3408 / R3408C5: got '#N/A'Expecting numeric in G3408 / R3408C7: got '#N/A'Expecting numeric in B3409 / R3409C2: got '#N/A'Expecting numeric in E3409 / R3409C5: got '#N/A'Expecting numeric in G3409 / R3409C7: got '#N/A'Expecting numeric in B3410 / R3410C2: got '#N/A'Expecting numeric in E3410 / R3410C5: got '#N/A'Expecting numeric in G3410 / R3410C7: got '#N/A'Expecting numeric in B3411 / R3411C2: got '#N/A'Expecting numeric in E3411 / R3411C5: got '#N/A'Expecting numeric in G3411 / R3411C7: got '#N/A'Expecting numeric in B3412 / R3412C2: got '#N/A'Expecting numeric in E3412 / R3412C5: got '#N/A'Expecting numeric in G3412 / R3412C7: got '#N/A'Expecting numeric in B3413 / R3413C2: got '#N/A'Expecting numeric in E3413 / R3413C5: got '#N/A'Expecting numeric in G3413 / R3413C7: got '#N/A'Expecting numeric in B3414 / R3414C2: got '#N/A'Expecting numeric in E3414 / R3414C5: got '#N/A'Expecting numeric in G3414 / R3414C7: got '#N/A'Expecting numeric in B3415 / R3415C2: got '#N/A'Expecting numeric in E3415 / R3415C5: got '#N/A'Expecting numeric in G3415 / R3415C7: got '#N/A'Expecting numeric in B3416 / R3416C2: got '#N/A'Expecting numeric in E3416 / R3416C5: got '#N/A'Expecting numeric in G3416 / R3416C7: got '#N/A'Expecting numeric in B3417 / R3417C2: got '#N/A'Expecting numeric in E3417 / R3417C5: got '#N/A'Expecting numeric in G3417 / R3417C7: got '#N/A'Expecting numeric in B3418 / R3418C2: got '#N/A'Expecting numeric in E3418 / R3418C5: got '#N/A'Expecting numeric in G3418 / R3418C7: got '#N/A'Expecting numeric in B3419 / R3419C2: got '#N/A'Expecting numeric in E3419 / R3419C5: got '#N/A'Expecting numeric in G3419 / R3419C7: got '#N/A'Expecting numeric in B3420 / R3420C2: got '#N/A'Expecting numeric in E3420 / R3420C5: got '#N/A'Expecting numeric in G3420 / R3420C7: got '#N/A'Expecting numeric in B3421 / R3421C2: got '#N/A'Expecting numeric in E3421 / R3421C5: got '#N/A'Expecting numeric in G3421 / R3421C7: got '#N/A'Expecting numeric in B3422 / R3422C2: got '#N/A'Expecting numeric in E3422 / R3422C5: got '#N/A'Expecting numeric in G3422 / R3422C7: got '#N/A'Expecting numeric in B3423 / R3423C2: got '#N/A'Expecting numeric in E3423 / R3423C5: got '#N/A'Expecting numeric in G3423 / R3423C7: got '#N/A'Expecting numeric in B3424 / R3424C2: got '#N/A'Expecting numeric in E3424 / R3424C5: got '#N/A'Expecting numeric in G3424 / R3424C7: got '#N/A'Expecting numeric in B3425 / R3425C2: got '#N/A'Expecting numeric in E3425 / R3425C5: got '#N/A'Expecting numeric in G3425 / R3425C7: got '#N/A'Expecting numeric in B3426 / R3426C2: got '#N/A'Expecting numeric in E3426 / R3426C5: got '#N/A'Expecting numeric in G3426 / R3426C7: got '#N/A'Expecting numeric in B3427 / R3427C2: got '#N/A'Expecting numeric in E3427 / R3427C5: got '#N/A'Expecting numeric in G3427 / R3427C7: got '#N/A'Expecting numeric in B3428 / R3428C2: got '#N/A'Expecting numeric in E3428 / R3428C5: got '#N/A'Expecting numeric in G3428 / R3428C7: got '#N/A'Expecting numeric in B3429 / R3429C2: got '#N/A'Expecting numeric in E3429 / R3429C5: got '#N/A'Expecting numeric in G3429 / R3429C7: got '#N/A'Expecting numeric in B3430 / R3430C2: got '#N/A'Expecting numeric in E3430 / R3430C5: got '#N/A'Expecting numeric in G3430 / R3430C7: got '#N/A'Expecting numeric in B3431 / R3431C2: got '#N/A'Expecting numeric in E3431 / R3431C5: got '#N/A'Expecting numeric in G3431 / R3431C7: got '#N/A'Expecting numeric in B3432 / R3432C2: got '#N/A'Expecting numeric in E3432 / R3432C5: got '#N/A'Expecting numeric in G3432 / R3432C7: got '#N/A'Expecting numeric in B3433 / R3433C2: got '#N/A'Expecting numeric in E3433 / R3433C5: got '#N/A'Expecting numeric in G3433 / R3433C7: got '#N/A'Expecting numeric in B3434 / R3434C2: got '#N/A'Expecting numeric in E3434 / R3434C5: got '#N/A'Expecting numeric in G3434 / R3434C7: got '#N/A'Expecting numeric in B3435 / R3435C2: got '#N/A'Expecting numeric in E3435 / R3435C5: got '#N/A'Expecting numeric in G3435 / R3435C7: got '#N/A'Expecting numeric in B3436 / R3436C2: got '#N/A'Expecting numeric in E3436 / R3436C5: got '#N/A'Expecting numeric in G3436 / R3436C7: got '#N/A'Expecting numeric in B3437 / R3437C2: got '#N/A'Expecting numeric in E3437 / R3437C5: got '#N/A'Expecting numeric in G3437 / R3437C7: got '#N/A'Expecting numeric in B3438 / R3438C2: got '#N/A'Expecting numeric in E3438 / R3438C5: got '#N/A'Expecting numeric in G3438 / R3438C7: got '#N/A'Expecting numeric in B3439 / R3439C2: got '#N/A'Expecting numeric in E3439 / R3439C5: got '#N/A'Expecting numeric in G3439 / R3439C7: got '#N/A'Expecting numeric in B3440 / R3440C2: got '#N/A'Expecting numeric in E3440 / R3440C5: got '#N/A'Expecting numeric in G3440 / R3440C7: got '#N/A'Expecting numeric in B3441 / R3441C2: got '#N/A'Expecting numeric in E3441 / R3441C5: got '#N/A'Expecting numeric in G3441 / R3441C7: got '#N/A'Expecting numeric in B3442 / R3442C2: got '#N/A'Expecting numeric in E3442 / R3442C5: got '#N/A'Expecting numeric in G3442 / R3442C7: got '#N/A'Expecting numeric in B3443 / R3443C2: got '#N/A'Expecting numeric in E3443 / R3443C5: got '#N/A'Expecting numeric in G3443 / R3443C7: got '#N/A'Expecting numeric in B3444 / R3444C2: got '#N/A'Expecting numeric in E3444 / R3444C5: got '#N/A'Expecting numeric in G3444 / R3444C7: got '#N/A'Expecting numeric in B3445 / R3445C2: got '#N/A'Expecting numeric in E3445 / R3445C5: got '#N/A'Expecting numeric in G3445 / R3445C7: got '#N/A'Expecting numeric in B3446 / R3446C2: got '#N/A'Expecting numeric in E3446 / R3446C5: got '#N/A'Expecting numeric in G3446 / R3446C7: got '#N/A'Expecting numeric in B3447 / R3447C2: got '#N/A'Expecting numeric in E3447 / R3447C5: got '#N/A'Expecting numeric in G3447 / R3447C7: got '#N/A'Expecting numeric in B3448 / R3448C2: got '#N/A'Expecting numeric in E3448 / R3448C5: got '#N/A'Expecting numeric in G3448 / R3448C7: got '#N/A'Expecting numeric in B3449 / R3449C2: got '#N/A'Expecting numeric in E3449 / R3449C5: got '#N/A'Expecting numeric in G3449 / R3449C7: got '#N/A'Expecting numeric in B3450 / R3450C2: got '#N/A'Expecting numeric in E3450 / R3450C5: got '#N/A'Expecting numeric in G3450 / R3450C7: got '#N/A'Expecting numeric in B3451 / R3451C2: got '#N/A'Expecting numeric in E3451 / R3451C5: got '#N/A'Expecting numeric in G3451 / R3451C7: got '#N/A'Expecting numeric in B3452 / R3452C2: got '#N/A'Expecting numeric in E3452 / R3452C5: got '#N/A'Expecting numeric in G3452 / R3452C7: got '#N/A'Expecting numeric in B3453 / R3453C2: got '#N/A'Expecting numeric in E3453 / R3453C5: got '#N/A'Expecting numeric in G3453 / R3453C7: got '#N/A'Expecting numeric in B3454 / R3454C2: got '#N/A'Expecting numeric in E3454 / R3454C5: got '#N/A'Expecting numeric in G3454 / R3454C7: got '#N/A'Expecting numeric in B3455 / R3455C2: got '#N/A'Expecting numeric in E3455 / R3455C5: got '#N/A'Expecting numeric in G3455 / R3455C7: got '#N/A'Expecting numeric in B3456 / R3456C2: got '#N/A'Expecting numeric in E3456 / R3456C5: got '#N/A'Expecting numeric in G3456 / R3456C7: got '#N/A'Expecting numeric in B3457 / R3457C2: got '#N/A'Expecting numeric in E3457 / R3457C5: got '#N/A'Expecting numeric in G3457 / R3457C7: got '#N/A'Expecting numeric in B3458 / R3458C2: got '#N/A'Expecting numeric in E3458 / R3458C5: got '#N/A'Expecting numeric in G3458 / R3458C7: got '#N/A'Expecting numeric in B3459 / R3459C2: got '#N/A'Expecting numeric in E3459 / R3459C5: got '#N/A'Expecting numeric in G3459 / R3459C7: got '#N/A'Expecting numeric in B3460 / R3460C2: got '#N/A'Expecting numeric in E3460 / R3460C5: got '#N/A'Expecting numeric in G3460 / R3460C7: got '#N/A'Expecting numeric in B3461 / R3461C2: got '#N/A'Expecting numeric in E3461 / R3461C5: got '#N/A'Expecting numeric in G3461 / R3461C7: got '#N/A'Expecting numeric in B3462 / R3462C2: got '#N/A'Expecting numeric in E3462 / R3462C5: got '#N/A'Expecting numeric in G3462 / R3462C7: got '#N/A'Expecting numeric in B3463 / R3463C2: got '#N/A'Expecting numeric in E3463 / R3463C5: got '#N/A'Expecting numeric in G3463 / R3463C7: got '#N/A'Expecting numeric in B3464 / R3464C2: got '#N/A'Expecting numeric in E3464 / R3464C5: got '#N/A'Expecting numeric in G3464 / R3464C7: got '#N/A'Expecting numeric in B3465 / R3465C2: got '#N/A'Expecting numeric in E3465 / R3465C5: got '#N/A'Expecting numeric in G3465 / R3465C7: got '#N/A'Expecting numeric in B3466 / R3466C2: got '#N/A'Expecting numeric in E3466 / R3466C5: got '#N/A'Expecting numeric in G3466 / R3466C7: got '#N/A'Expecting numeric in B3467 / R3467C2: got '#N/A'Expecting numeric in E3467 / R3467C5: got '#N/A'Expecting numeric in G3467 / R3467C7: got '#N/A'Expecting numeric in B3468 / R3468C2: got '#N/A'Expecting numeric in E3468 / R3468C5: got '#N/A'Expecting numeric in G3468 / R3468C7: got '#N/A'Expecting numeric in B3469 / R3469C2: got '#N/A'Expecting numeric in E3469 / R3469C5: got '#N/A'Expecting numeric in G3469 / R3469C7: got '#N/A'Expecting numeric in B3470 / R3470C2: got '#N/A'Expecting numeric in E3470 / R3470C5: got '#N/A'Expecting numeric in G3470 / R3470C7: got '#N/A'Expecting numeric in B3471 / R3471C2: got '#N/A'Expecting numeric in E3471 / R3471C5: got '#N/A'Expecting numeric in G3471 / R3471C7: got '#N/A'Expecting numeric in B3472 / R3472C2: got '#N/A'Expecting numeric in E3472 / R3472C5: got '#N/A'Expecting numeric in G3472 / R3472C7: got '#N/A'Expecting numeric in B3473 / R3473C2: got '#N/A'Expecting numeric in E3473 / R3473C5: got '#N/A'Expecting numeric in G3473 / R3473C7: got '#N/A'Expecting numeric in B3474 / R3474C2: got '#N/A'Expecting numeric in E3474 / R3474C5: got '#N/A'Expecting numeric in G3474 / R3474C7: got '#N/A'Expecting numeric in B3475 / R3475C2: got '#N/A'Expecting numeric in E3475 / R3475C5: got '#N/A'Expecting numeric in G3475 / R3475C7: got '#N/A'Expecting numeric in B3476 / R3476C2: got '#N/A'Expecting numeric in E3476 / R3476C5: got '#N/A'Expecting numeric in G3476 / R3476C7: got '#N/A'Expecting numeric in B3477 / R3477C2: got '#N/A'Expecting numeric in E3477 / R3477C5: got '#N/A'Expecting numeric in G3477 / R3477C7: got '#N/A'Expecting numeric in B3478 / R3478C2: got '#N/A'Expecting numeric in E3478 / R3478C5: got '#N/A'Expecting numeric in G3478 / R3478C7: got '#N/A'Expecting numeric in B3479 / R3479C2: got '#N/A'Expecting numeric in E3479 / R3479C5: got '#N/A'Expecting numeric in G3479 / R3479C7: got '#N/A'Expecting numeric in B3480 / R3480C2: got '#N/A'Expecting numeric in E3480 / R3480C5: got '#N/A'Expecting numeric in G3480 / R3480C7: got '#N/A'Expecting numeric in B3481 / R3481C2: got '#N/A'Expecting numeric in E3481 / R3481C5: got '#N/A'Expecting numeric in G3481 / R3481C7: got '#N/A'Expecting numeric in B3482 / R3482C2: got '#N/A'Expecting numeric in E3482 / R3482C5: got '#N/A'Expecting numeric in G3482 / R3482C7: got '#N/A'Expecting numeric in B3483 / R3483C2: got '#N/A'Expecting numeric in E3483 / R3483C5: got '#N/A'Expecting numeric in G3483 / R3483C7: got '#N/A'Expecting numeric in B3484 / R3484C2: got '#N/A'Expecting numeric in E3484 / R3484C5: got '#N/A'Expecting numeric in G3484 / R3484C7: got '#N/A'Expecting numeric in B3485 / R3485C2: got '#N/A'Expecting numeric in E3485 / R3485C5: got '#N/A'Expecting numeric in G3485 / R3485C7: got '#N/A'Expecting numeric in B3486 / R3486C2: got '#N/A'Expecting numeric in E3486 / R3486C5: got '#N/A'Expecting numeric in G3486 / R3486C7: got '#N/A'Expecting numeric in B3487 / R3487C2: got '#N/A'Expecting numeric in E3487 / R3487C5: got '#N/A'Expecting numeric in G3487 / R3487C7: got '#N/A'Expecting numeric in B3488 / R3488C2: got '#N/A'Expecting numeric in E3488 / R3488C5: got '#N/A'Expecting numeric in G3488 / R3488C7: got '#N/A'Expecting numeric in B3489 / R3489C2: got '#N/A'Expecting numeric in E3489 / R3489C5: got '#N/A'Expecting numeric in G3489 / R3489C7: got '#N/A'Expecting numeric in B3490 / R3490C2: got '#N/A'Expecting numeric in E3490 / R3490C5: got '#N/A'Expecting numeric in G3490 / R3490C7: got '#N/A'Expecting numeric in B3491 / R3491C2: got '#N/A'Expecting numeric in E3491 / R3491C5: got '#N/A'Expecting numeric in G3491 / R3491C7: got '#N/A'Expecting numeric in B3492 / R3492C2: got '#N/A'Expecting numeric in E3492 / R3492C5: got '#N/A'Expecting numeric in G3492 / R3492C7: got '#N/A'Expecting numeric in B3493 / R3493C2: got '#N/A'Expecting numeric in E3493 / R3493C5: got '#N/A'Expecting numeric in G3493 / R3493C7: got '#N/A'Expecting numeric in B3494 / R3494C2: got '#N/A'Expecting numeric in E3494 / R3494C5: got '#N/A'Expecting numeric in G3494 / R3494C7: got '#N/A'Expecting numeric in B3495 / R3495C2: got '#N/A'Expecting numeric in E3495 / R3495C5: got '#N/A'Expecting numeric in G3495 / R3495C7: got '#N/A'Expecting numeric in B3496 / R3496C2: got '#N/A'Expecting numeric in E3496 / R3496C5: got '#N/A'Expecting numeric in G3496 / R3496C7: got '#N/A'Expecting numeric in B3497 / R3497C2: got '#N/A'Expecting numeric in E3497 / R3497C5: got '#N/A'Expecting numeric in G3497 / R3497C7: got '#N/A'Expecting numeric in B3498 / R3498C2: got '#N/A'Expecting numeric in E3498 / R3498C5: got '#N/A'Expecting numeric in G3498 / R3498C7: got '#N/A'Expecting numeric in B3499 / R3499C2: got '#N/A'Expecting numeric in E3499 / R3499C5: got '#N/A'Expecting numeric in G3499 / R3499C7: got '#N/A'Expecting numeric in B3500 / R3500C2: got '#N/A'Expecting numeric in E3500 / R3500C5: got '#N/A'Expecting numeric in G3500 / R3500C7: got '#N/A'Expecting numeric in B3501 / R3501C2: got '#N/A'Expecting numeric in E3501 / R3501C5: got '#N/A'Expecting numeric in G3501 / R3501C7: got '#N/A'Expecting numeric in B3502 / R3502C2: got '#N/A'Expecting numeric in E3502 / R3502C5: got '#N/A'Expecting numeric in G3502 / R3502C7: got '#N/A'Expecting numeric in B3503 / R3503C2: got '#N/A'Expecting numeric in E3503 / R3503C5: got '#N/A'Expecting numeric in G3503 / R3503C7: got '#N/A'Expecting numeric in B3504 / R3504C2: got '#N/A'Expecting numeric in E3504 / R3504C5: got '#N/A'Expecting numeric in G3504 / R3504C7: got '#N/A'Expecting numeric in B3505 / R3505C2: got '#N/A'Expecting numeric in E3505 / R3505C5: got '#N/A'Expecting numeric in G3505 / R3505C7: got '#N/A'Expecting numeric in B3506 / R3506C2: got '#N/A'Expecting numeric in E3506 / R3506C5: got '#N/A'Expecting numeric in G3506 / R3506C7: got '#N/A'Expecting numeric in B3507 / R3507C2: got '#N/A'Expecting numeric in E3507 / R3507C5: got '#N/A'Expecting numeric in G3507 / R3507C7: got '#N/A'Expecting numeric in B3508 / R3508C2: got '#N/A'Expecting numeric in E3508 / R3508C5: got '#N/A'Expecting numeric in G3508 / R3508C7: got '#N/A'Expecting numeric in B3509 / R3509C2: got '#N/A'Expecting numeric in E3509 / R3509C5: got '#N/A'Expecting numeric in G3509 / R3509C7: got '#N/A'Expecting numeric in B3510 / R3510C2: got '#N/A'Expecting numeric in E3510 / R3510C5: got '#N/A'Expecting numeric in G3510 / R3510C7: got '#N/A'Expecting numeric in B3511 / R3511C2: got '#N/A'Expecting numeric in E3511 / R3511C5: got '#N/A'Expecting numeric in G3511 / R3511C7: got '#N/A'Expecting numeric in B3512 / R3512C2: got '#N/A'Expecting numeric in E3512 / R3512C5: got '#N/A'Expecting numeric in G3512 / R3512C7: got '#N/A'Expecting numeric in B3513 / R3513C2: got '#N/A'Expecting numeric in E3513 / R3513C5: got '#N/A'Expecting numeric in G3513 / R3513C7: got '#N/A'Expecting numeric in B3514 / R3514C2: got '#N/A'Expecting numeric in E3514 / R3514C5: got '#N/A'Expecting numeric in G3514 / R3514C7: got '#N/A'Expecting numeric in B3515 / R3515C2: got '#N/A'Expecting numeric in E3515 / R3515C5: got '#N/A'Expecting numeric in G3515 / R3515C7: got '#N/A'Expecting numeric in B3516 / R3516C2: got '#N/A'Expecting numeric in E3516 / R3516C5: got '#N/A'Expecting numeric in G3516 / R3516C7: got '#N/A'Expecting numeric in B3517 / R3517C2: got '#N/A'Expecting numeric in E3517 / R3517C5: got '#N/A'Expecting numeric in G3517 / R3517C7: got '#N/A'Expecting numeric in B3518 / R3518C2: got '#N/A'Expecting numeric in E3518 / R3518C5: got '#N/A'Expecting numeric in G3518 / R3518C7: got '#N/A'Expecting numeric in B3519 / R3519C2: got '#N/A'Expecting numeric in E3519 / R3519C5: got '#N/A'Expecting numeric in G3519 / R3519C7: got '#N/A'Expecting numeric in B3520 / R3520C2: got '#N/A'Expecting numeric in E3520 / R3520C5: got '#N/A'Expecting numeric in G3520 / R3520C7: got '#N/A'Expecting numeric in B3521 / R3521C2: got '#N/A'Expecting numeric in E3521 / R3521C5: got '#N/A'Expecting numeric in G3521 / R3521C7: got '#N/A'Expecting numeric in B3522 / R3522C2: got '#N/A'Expecting numeric in E3522 / R3522C5: got '#N/A'Expecting numeric in G3522 / R3522C7: got '#N/A'Expecting numeric in B3523 / R3523C2: got '#N/A'Expecting numeric in E3523 / R3523C5: got '#N/A'Expecting numeric in G3523 / R3523C7: got '#N/A'Expecting numeric in B3524 / R3524C2: got '#N/A'Expecting numeric in E3524 / R3524C5: got '#N/A'Expecting numeric in G3524 / R3524C7: got '#N/A'Expecting numeric in B3525 / R3525C2: got '#N/A'Expecting numeric in E3525 / R3525C5: got '#N/A'Expecting numeric in G3525 / R3525C7: got '#N/A'Expecting numeric in B3526 / R3526C2: got '#N/A'Expecting numeric in E3526 / R3526C5: got '#N/A'Expecting numeric in G3526 / R3526C7: got '#N/A'Expecting numeric in B3527 / R3527C2: got '#N/A'Expecting numeric in E3527 / R3527C5: got '#N/A'Expecting numeric in G3527 / R3527C7: got '#N/A'Expecting numeric in B3528 / R3528C2: got '#N/A'Expecting numeric in E3528 / R3528C5: got '#N/A'Expecting numeric in G3528 / R3528C7: got '#N/A'Expecting numeric in B3529 / R3529C2: got '#N/A'Expecting numeric in E3529 / R3529C5: got '#N/A'Expecting numeric in G3529 / R3529C7: got '#N/A'Expecting numeric in B3530 / R3530C2: got '#N/A'Expecting numeric in E3530 / R3530C5: got '#N/A'Expecting numeric in G3530 / R3530C7: got '#N/A'Expecting numeric in B3531 / R3531C2: got '#N/A'Expecting numeric in E3531 / R3531C5: got '#N/A'Expecting numeric in G3531 / R3531C7: got '#N/A'Expecting numeric in B3532 / R3532C2: got '#N/A'Expecting numeric in E3532 / R3532C5: got '#N/A'Expecting numeric in G3532 / R3532C7: got '#N/A'Expecting numeric in B3533 / R3533C2: got '#N/A'Expecting numeric in E3533 / R3533C5: got '#N/A'Expecting numeric in G3533 / R3533C7: got '#N/A'Expecting numeric in B3534 / R3534C2: got '#N/A'Expecting numeric in E3534 / R3534C5: got '#N/A'Expecting numeric in G3534 / R3534C7: got '#N/A'Expecting numeric in B3535 / R3535C2: got '#N/A'Expecting numeric in E3535 / R3535C5: got '#N/A'Expecting numeric in G3535 / R3535C7: got '#N/A'Expecting numeric in B3536 / R3536C2: got '#N/A'Expecting numeric in E3536 / R3536C5: got '#N/A'Expecting numeric in G3536 / R3536C7: got '#N/A'Expecting numeric in B3537 / R3537C2: got '#N/A'Expecting numeric in E3537 / R3537C5: got '#N/A'Expecting numeric in G3537 / R3537C7: got '#N/A'Expecting numeric in B3538 / R3538C2: got '#N/A'Expecting numeric in E3538 / R3538C5: got '#N/A'Expecting numeric in G3538 / R3538C7: got '#N/A'Expecting numeric in B3539 / R3539C2: got '#N/A'Expecting numeric in E3539 / R3539C5: got '#N/A'Expecting numeric in G3539 / R3539C7: got '#N/A'Expecting numeric in B3540 / R3540C2: got '#N/A'Expecting numeric in E3540 / R3540C5: got '#N/A'Expecting numeric in G3540 / R3540C7: got '#N/A'Expecting numeric in B3541 / R3541C2: got '#N/A'Expecting numeric in E3541 / R3541C5: got '#N/A'Expecting numeric in G3541 / R3541C7: got '#N/A'Expecting numeric in B3542 / R3542C2: got '#N/A'Expecting numeric in E3542 / R3542C5: got '#N/A'Expecting numeric in G3542 / R3542C7: got '#N/A'Expecting numeric in B3543 / R3543C2: got '#N/A'Expecting numeric in E3543 / R3543C5: got '#N/A'Expecting numeric in G3543 / R3543C7: got '#N/A'Expecting numeric in B3544 / R3544C2: got '#N/A'Expecting numeric in E3544 / R3544C5: got '#N/A'Expecting numeric in G3544 / R3544C7: got '#N/A'Expecting numeric in B3545 / R3545C2: got '#N/A'Expecting numeric in E3545 / R3545C5: got '#N/A'Expecting numeric in G3545 / R3545C7: got '#N/A'Expecting numeric in B3546 / R3546C2: got '#N/A'Expecting numeric in E3546 / R3546C5: got '#N/A'Expecting numeric in G3546 / R3546C7: got '#N/A'Expecting numeric in B3547 / R3547C2: got '#N/A'Expecting numeric in E3547 / R3547C5: got '#N/A'Expecting numeric in G3547 / R3547C7: got '#N/A'Expecting numeric in B3548 / R3548C2: got '#N/A'Expecting numeric in E3548 / R3548C5: got '#N/A'Expecting numeric in G3548 / R3548C7: got '#N/A'Expecting numeric in B3549 / R3549C2: got '#N/A'Expecting numeric in E3549 / R3549C5: got '#N/A'Expecting numeric in G3549 / R3549C7: got '#N/A'Expecting numeric in B3550 / R3550C2: got '#N/A'Expecting numeric in E3550 / R3550C5: got '#N/A'Expecting numeric in G3550 / R3550C7: got '#N/A'Expecting numeric in B3551 / R3551C2: got '#N/A'Expecting numeric in E3551 / R3551C5: got '#N/A'Expecting numeric in G3551 / R3551C7: got '#N/A'Expecting numeric in B3552 / R3552C2: got '#N/A'Expecting numeric in E3552 / R3552C5: got '#N/A'Expecting numeric in G3552 / R3552C7: got '#N/A'Expecting numeric in B3553 / R3553C2: got '#N/A'Expecting numeric in E3553 / R3553C5: got '#N/A'Expecting numeric in G3553 / R3553C7: got '#N/A'Expecting numeric in B3554 / R3554C2: got '#N/A'Expecting numeric in E3554 / R3554C5: got '#N/A'Expecting numeric in G3554 / R3554C7: got '#N/A'Expecting numeric in B3555 / R3555C2: got '#N/A'Expecting numeric in E3555 / R3555C5: got '#N/A'Expecting numeric in G3555 / R3555C7: got '#N/A'Expecting numeric in B3556 / R3556C2: got '#N/A'Expecting numeric in E3556 / R3556C5: got '#N/A'Expecting numeric in G3556 / R3556C7: got '#N/A'Expecting numeric in B3557 / R3557C2: got '#N/A'Expecting numeric in E3557 / R3557C5: got '#N/A'Expecting numeric in G3557 / R3557C7: got '#N/A'Expecting numeric in B3558 / R3558C2: got '#N/A'Expecting numeric in E3558 / R3558C5: got '#N/A'Expecting numeric in G3558 / R3558C7: got '#N/A'Expecting numeric in B3559 / R3559C2: got '#N/A'Expecting numeric in E3559 / R3559C5: got '#N/A'Expecting numeric in G3559 / R3559C7: got '#N/A'Expecting numeric in B3560 / R3560C2: got '#N/A'Expecting numeric in E3560 / R3560C5: got '#N/A'Expecting numeric in G3560 / R3560C7: got '#N/A'Expecting numeric in B3561 / R3561C2: got '#N/A'Expecting numeric in E3561 / R3561C5: got '#N/A'Expecting numeric in G3561 / R3561C7: got '#N/A'Expecting numeric in B3562 / R3562C2: got '#N/A'Expecting numeric in E3562 / R3562C5: got '#N/A'Expecting numeric in G3562 / R3562C7: got '#N/A'Expecting numeric in B3563 / R3563C2: got '#N/A'Expecting numeric in E3563 / R3563C5: got '#N/A'Expecting numeric in G3563 / R3563C7: got '#N/A'Expecting numeric in B3564 / R3564C2: got '#N/A'Expecting numeric in E3564 / R3564C5: got '#N/A'Expecting numeric in G3564 / R3564C7: got '#N/A'Expecting numeric in B3565 / R3565C2: got '#N/A'Expecting numeric in E3565 / R3565C5: got '#N/A'Expecting numeric in G3565 / R3565C7: got '#N/A'Expecting numeric in B3566 / R3566C2: got '#N/A'Expecting numeric in E3566 / R3566C5: got '#N/A'Expecting numeric in G3566 / R3566C7: got '#N/A'Expecting numeric in B3567 / R3567C2: got '#N/A'Expecting numeric in E3567 / R3567C5: got '#N/A'Expecting numeric in G3567 / R3567C7: got '#N/A'Expecting numeric in B3568 / R3568C2: got '#N/A'Expecting numeric in E3568 / R3568C5: got '#N/A'Expecting numeric in G3568 / R3568C7: got '#N/A'Expecting numeric in B3569 / R3569C2: got '#N/A'Expecting numeric in E3569 / R3569C5: got '#N/A'Expecting numeric in G3569 / R3569C7: got '#N/A'Expecting numeric in B3570 / R3570C2: got '#N/A'Expecting numeric in E3570 / R3570C5: got '#N/A'Expecting numeric in G3570 / R3570C7: got '#N/A'Expecting numeric in B3571 / R3571C2: got '#N/A'Expecting numeric in E3571 / R3571C5: got '#N/A'Expecting numeric in G3571 / R3571C7: got '#N/A'Expecting numeric in B3572 / R3572C2: got '#N/A'Expecting numeric in E3572 / R3572C5: got '#N/A'Expecting numeric in G3572 / R3572C7: got '#N/A'Expecting numeric in B3573 / R3573C2: got '#N/A'Expecting numeric in E3573 / R3573C5: got '#N/A'Expecting numeric in G3573 / R3573C7: got '#N/A'Expecting numeric in B3574 / R3574C2: got '#N/A'Expecting numeric in E3574 / R3574C5: got '#N/A'Expecting numeric in G3574 / R3574C7: got '#N/A'Expecting numeric in B3575 / R3575C2: got '#N/A'Expecting numeric in E3575 / R3575C5: got '#N/A'Expecting numeric in G3575 / R3575C7: got '#N/A'Expecting numeric in B3576 / R3576C2: got '#N/A'Expecting numeric in E3576 / R3576C5: got '#N/A'Expecting numeric in G3576 / R3576C7: got '#N/A'Expecting numeric in B3577 / R3577C2: got '#N/A'Expecting numeric in E3577 / R3577C5: got '#N/A'Expecting numeric in G3577 / R3577C7: got '#N/A'Expecting numeric in B3578 / R3578C2: got '#N/A'Expecting numeric in E3578 / R3578C5: got '#N/A'Expecting numeric in G3578 / R3578C7: got '#N/A'Expecting numeric in B3579 / R3579C2: got '#N/A'Expecting numeric in E3579 / R3579C5: got '#N/A'Expecting numeric in G3579 / R3579C7: got '#N/A'Expecting numeric in B3580 / R3580C2: got '#N/A'Expecting numeric in E3580 / R3580C5: got '#N/A'Expecting numeric in G3580 / R3580C7: got '#N/A'Expecting numeric in B3581 / R3581C2: got '#N/A'Expecting numeric in E3581 / R3581C5: got '#N/A'Expecting numeric in G3581 / R3581C7: got '#N/A'Expecting numeric in B3582 / R3582C2: got '#N/A'Expecting numeric in E3582 / R3582C5: got '#N/A'Expecting numeric in G3582 / R3582C7: got '#N/A'Expecting numeric in B3583 / R3583C2: got '#N/A'Expecting numeric in E3583 / R3583C5: got '#N/A'Expecting numeric in G3583 / R3583C7: got '#N/A'Expecting numeric in B3584 / R3584C2: got '#N/A'Expecting numeric in E3584 / R3584C5: got '#N/A'Expecting numeric in G3584 / R3584C7: got '#N/A'Expecting numeric in B3585 / R3585C2: got '#N/A'Expecting numeric in E3585 / R3585C5: got '#N/A'Expecting numeric in G3585 / R3585C7: got '#N/A'Expecting numeric in B3586 / R3586C2: got '#N/A'Expecting numeric in E3586 / R3586C5: got '#N/A'Expecting numeric in G3586 / R3586C7: got '#N/A'Expecting numeric in B3587 / R3587C2: got '#N/A'Expecting numeric in E3587 / R3587C5: got '#N/A'Expecting numeric in G3587 / R3587C7: got '#N/A'Expecting numeric in B3588 / R3588C2: got '#N/A'Expecting numeric in E3588 / R3588C5: got '#N/A'Expecting numeric in G3588 / R3588C7: got '#N/A'Expecting numeric in B3589 / R3589C2: got '#N/A'Expecting numeric in E3589 / R3589C5: got '#N/A'Expecting numeric in G3589 / R3589C7: got '#N/A'Expecting numeric in B3590 / R3590C2: got '#N/A'Expecting numeric in E3590 / R3590C5: got '#N/A'Expecting numeric in G3590 / R3590C7: got '#N/A'Expecting numeric in B3591 / R3591C2: got '#N/A'Expecting numeric in E3591 / R3591C5: got '#N/A'Expecting numeric in G3591 / R3591C7: got '#N/A'Expecting numeric in B3592 / R3592C2: got '#N/A'Expecting numeric in E3592 / R3592C5: got '#N/A'Expecting numeric in G3592 / R3592C7: got '#N/A'Expecting numeric in B3593 / R3593C2: got '#N/A'Expecting numeric in E3593 / R3593C5: got '#N/A'Expecting numeric in G3593 / R3593C7: got '#N/A'Expecting numeric in B3594 / R3594C2: got '#N/A'Expecting numeric in E3594 / R3594C5: got '#N/A'Expecting numeric in G3594 / R3594C7: got '#N/A'Expecting numeric in B3595 / R3595C2: got '#N/A'Expecting numeric in E3595 / R3595C5: got '#N/A'Expecting numeric in G3595 / R3595C7: got '#N/A'Expecting numeric in B3596 / R3596C2: got '#N/A'Expecting numeric in E3596 / R3596C5: got '#N/A'Expecting numeric in G3596 / R3596C7: got '#N/A'Expecting numeric in B3597 / R3597C2: got '#N/A'Expecting numeric in E3597 / R3597C5: got '#N/A'Expecting numeric in G3597 / R3597C7: got '#N/A'Expecting numeric in B3598 / R3598C2: got '#N/A'Expecting numeric in E3598 / R3598C5: got '#N/A'Expecting numeric in G3598 / R3598C7: got '#N/A'Expecting numeric in B3599 / R3599C2: got '#N/A'Expecting numeric in E3599 / R3599C5: got '#N/A'Expecting numeric in G3599 / R3599C7: got '#N/A'Expecting numeric in B3600 / R3600C2: got '#N/A'Expecting numeric in E3600 / R3600C5: got '#N/A'Expecting numeric in G3600 / R3600C7: got '#N/A'Expecting numeric in B3601 / R3601C2: got '#N/A'Expecting numeric in E3601 / R3601C5: got '#N/A'Expecting numeric in G3601 / R3601C7: got '#N/A'Expecting numeric in B3602 / R3602C2: got '#N/A'Expecting numeric in E3602 / R3602C5: got '#N/A'Expecting numeric in G3602 / R3602C7: got '#N/A'Expecting numeric in B3603 / R3603C2: got '#N/A'Expecting numeric in E3603 / R3603C5: got '#N/A'Expecting numeric in G3603 / R3603C7: got '#N/A'Expecting numeric in B3604 / R3604C2: got '#N/A'Expecting numeric in E3604 / R3604C5: got '#N/A'Expecting numeric in G3604 / R3604C7: got '#N/A'Expecting numeric in B3605 / R3605C2: got '#N/A'Expecting numeric in E3605 / R3605C5: got '#N/A'Expecting numeric in G3605 / R3605C7: got '#N/A'Expecting numeric in B3606 / R3606C2: got '#N/A'Expecting numeric in E3606 / R3606C5: got '#N/A'Expecting numeric in G3606 / R3606C7: got '#N/A'Expecting numeric in B3607 / R3607C2: got '#N/A'Expecting numeric in E3607 / R3607C5: got '#N/A'Expecting numeric in G3607 / R3607C7: got '#N/A'Expecting numeric in B3608 / R3608C2: got '#N/A'Expecting numeric in E3608 / R3608C5: got '#N/A'Expecting numeric in G3608 / R3608C7: got '#N/A'Expecting numeric in B3609 / R3609C2: got '#N/A'Expecting numeric in E3609 / R3609C5: got '#N/A'Expecting numeric in G3609 / R3609C7: got '#N/A'Expecting numeric in B3610 / R3610C2: got '#N/A'Expecting numeric in E3610 / R3610C5: got '#N/A'Expecting numeric in G3610 / R3610C7: got '#N/A'Expecting numeric in B3611 / R3611C2: got '#N/A'Expecting numeric in E3611 / R3611C5: got '#N/A'Expecting numeric in G3611 / R3611C7: got '#N/A'Expecting numeric in B3612 / R3612C2: got '#N/A'Expecting numeric in E3612 / R3612C5: got '#N/A'Expecting numeric in G3612 / R3612C7: got '#N/A'Expecting numeric in B3613 / R3613C2: got '#N/A'Expecting numeric in E3613 / R3613C5: got '#N/A'Expecting numeric in G3613 / R3613C7: got '#N/A'Expecting numeric in B3614 / R3614C2: got '#N/A'Expecting numeric in E3614 / R3614C5: got '#N/A'Expecting numeric in G3614 / R3614C7: got '#N/A'Expecting numeric in B3615 / R3615C2: got '#N/A'Expecting numeric in E3615 / R3615C5: got '#N/A'Expecting numeric in G3615 / R3615C7: got '#N/A'Expecting numeric in B3616 / R3616C2: got '#N/A'Expecting numeric in E3616 / R3616C5: got '#N/A'Expecting numeric in G3616 / R3616C7: got '#N/A'Expecting numeric in B3617 / R3617C2: got '#N/A'Expecting numeric in E3617 / R3617C5: got '#N/A'Expecting numeric in G3617 / R3617C7: got '#N/A'Expecting numeric in B3618 / R3618C2: got '#N/A'Expecting numeric in E3618 / R3618C5: got '#N/A'Expecting numeric in G3618 / R3618C7: got '#N/A'Expecting numeric in B3619 / R3619C2: got '#N/A'Expecting numeric in E3619 / R3619C5: got '#N/A'Expecting numeric in G3619 / R3619C7: got '#N/A'Expecting numeric in B3620 / R3620C2: got '#N/A'Expecting numeric in E3620 / R3620C5: got '#N/A'Expecting numeric in G3620 / R3620C7: got '#N/A'Expecting numeric in B3621 / R3621C2: got '#N/A'Expecting numeric in E3621 / R3621C5: got '#N/A'Expecting numeric in G3621 / R3621C7: got '#N/A'Expecting numeric in B3622 / R3622C2: got '#N/A'Expecting numeric in E3622 / R3622C5: got '#N/A'Expecting numeric in G3622 / R3622C7: got '#N/A'Expecting numeric in B3623 / R3623C2: got '#N/A'Expecting numeric in E3623 / R3623C5: got '#N/A'Expecting numeric in G3623 / R3623C7: got '#N/A'Expecting numeric in B3624 / R3624C2: got '#N/A'Expecting numeric in E3624 / R3624C5: got '#N/A'Expecting numeric in G3624 / R3624C7: got '#N/A'Expecting numeric in B3625 / R3625C2: got '#N/A'Expecting numeric in E3625 / R3625C5: got '#N/A'Expecting numeric in G3625 / R3625C7: got '#N/A'Expecting numeric in B3626 / R3626C2: got '#N/A'Expecting numeric in E3626 / R3626C5: got '#N/A'Expecting numeric in G3626 / R3626C7: got '#N/A'Expecting numeric in B3627 / R3627C2: got '#N/A'Expecting numeric in E3627 / R3627C5: got '#N/A'Expecting numeric in G3627 / R3627C7: got '#N/A'Expecting numeric in B3628 / R3628C2: got '#N/A'Expecting numeric in E3628 / R3628C5: got '#N/A'Expecting numeric in G3628 / R3628C7: got '#N/A'Expecting numeric in B3629 / R3629C2: got '#N/A'Expecting numeric in E3629 / R3629C5: got '#N/A'Expecting numeric in G3629 / R3629C7: got '#N/A'Expecting numeric in B3630 / R3630C2: got '#N/A'Expecting numeric in E3630 / R3630C5: got '#N/A'Expecting numeric in G3630 / R3630C7: got '#N/A'Expecting numeric in B3631 / R3631C2: got '#N/A'Expecting numeric in E3631 / R3631C5: got '#N/A'Expecting numeric in G3631 / R3631C7: got '#N/A'Expecting numeric in B3632 / R3632C2: got '#N/A'Expecting numeric in E3632 / R3632C5: got '#N/A'Expecting numeric in G3632 / R3632C7: got '#N/A'Expecting numeric in B3633 / R3633C2: got '#N/A'Expecting numeric in E3633 / R3633C5: got '#N/A'Expecting numeric in G3633 / R3633C7: got '#N/A'Expecting numeric in B3634 / R3634C2: got '#N/A'Expecting numeric in E3634 / R3634C5: got '#N/A'Expecting numeric in G3634 / R3634C7: got '#N/A'Expecting numeric in B3635 / R3635C2: got '#N/A'Expecting numeric in E3635 / R3635C5: got '#N/A'Expecting numeric in G3635 / R3635C7: got '#N/A'Expecting numeric in B3636 / R3636C2: got '#N/A'Expecting numeric in E3636 / R3636C5: got '#N/A'Expecting numeric in G3636 / R3636C7: got '#N/A'Expecting numeric in B3637 / R3637C2: got '#N/A'Expecting numeric in E3637 / R3637C5: got '#N/A'Expecting numeric in G3637 / R3637C7: got '#N/A'Expecting numeric in B3638 / R3638C2: got '#N/A'Expecting numeric in E3638 / R3638C5: got '#N/A'Expecting numeric in G3638 / R3638C7: got '#N/A'Expecting numeric in B3639 / R3639C2: got '#N/A'Expecting numeric in E3639 / R3639C5: got '#N/A'Expecting numeric in G3639 / R3639C7: got '#N/A'Expecting numeric in B3640 / R3640C2: got '#N/A'Expecting numeric in E3640 / R3640C5: got '#N/A'Expecting numeric in G3640 / R3640C7: got '#N/A'Expecting numeric in B3641 / R3641C2: got '#N/A'Expecting numeric in E3641 / R3641C5: got '#N/A'Expecting numeric in G3641 / R3641C7: got '#N/A'Expecting numeric in B3642 / R3642C2: got '#N/A'Expecting numeric in E3642 / R3642C5: got '#N/A'Expecting numeric in G3642 / R3642C7: got '#N/A'Expecting numeric in B3643 / R3643C2: got '#N/A'Expecting numeric in E3643 / R3643C5: got '#N/A'Expecting numeric in G3643 / R3643C7: got '#N/A'Expecting numeric in B3644 / R3644C2: got '#N/A'Expecting numeric in E3644 / R3644C5: got '#N/A'Expecting numeric in G3644 / R3644C7: got '#N/A'Expecting numeric in B3645 / R3645C2: got '#N/A'Expecting numeric in E3645 / R3645C5: got '#N/A'Expecting numeric in G3645 / R3645C7: got '#N/A'Expecting numeric in B3646 / R3646C2: got '#N/A'Expecting numeric in E3646 / R3646C5: got '#N/A'Expecting numeric in G3646 / R3646C7: got '#N/A'Expecting numeric in B3647 / R3647C2: got '#N/A'Expecting numeric in E3647 / R3647C5: got '#N/A'Expecting numeric in G3647 / R3647C7: got '#N/A'Expecting numeric in B3648 / R3648C2: got '#N/A'Expecting numeric in E3648 / R3648C5: got '#N/A'Expecting numeric in G3648 / R3648C7: got '#N/A'Expecting numeric in B3649 / R3649C2: got '#N/A'Expecting numeric in E3649 / R3649C5: got '#N/A'Expecting numeric in G3649 / R3649C7: got '#N/A'Expecting numeric in B3650 / R3650C2: got '#N/A'Expecting numeric in E3650 / R3650C5: got '#N/A'Expecting numeric in G3650 / R3650C7: got '#N/A'Expecting numeric in B3651 / R3651C2: got '#N/A'Expecting numeric in E3651 / R3651C5: got '#N/A'Expecting numeric in G3651 / R3651C7: got '#N/A'Expecting numeric in B3652 / R3652C2: got '#N/A'Expecting numeric in E3652 / R3652C5: got '#N/A'Expecting numeric in G3652 / R3652C7: got '#N/A'Expecting numeric in B3653 / R3653C2: got '#N/A'Expecting numeric in E3653 / R3653C5: got '#N/A'Expecting numeric in G3653 / R3653C7: got '#N/A'Expecting numeric in B3654 / R3654C2: got '#N/A'Expecting numeric in E3654 / R3654C5: got '#N/A'Expecting numeric in G3654 / R3654C7: got '#N/A'Expecting numeric in B3655 / R3655C2: got '#N/A'Expecting numeric in E3655 / R3655C5: got '#N/A'Expecting numeric in G3655 / R3655C7: got '#N/A'Expecting numeric in B3656 / R3656C2: got '#N/A'Expecting numeric in E3656 / R3656C5: got '#N/A'Expecting numeric in G3656 / R3656C7: got '#N/A'Expecting numeric in B3657 / R3657C2: got '#N/A'Expecting numeric in E3657 / R3657C5: got '#N/A'Expecting numeric in G3657 / R3657C7: got '#N/A'Expecting numeric in B3658 / R3658C2: got '#N/A'Expecting numeric in E3658 / R3658C5: got '#N/A'Expecting numeric in G3658 / R3658C7: got '#N/A'Expecting numeric in B3659 / R3659C2: got '#N/A'Expecting numeric in E3659 / R3659C5: got '#N/A'Expecting numeric in G3659 / R3659C7: got '#N/A'Expecting numeric in B3660 / R3660C2: got '#N/A'Expecting numeric in E3660 / R3660C5: got '#N/A'Expecting numeric in G3660 / R3660C7: got '#N/A'Expecting numeric in B3661 / R3661C2: got '#N/A'Expecting numeric in E3661 / R3661C5: got '#N/A'Expecting numeric in G3661 / R3661C7: got '#N/A'Expecting numeric in B3662 / R3662C2: got '#N/A'Expecting numeric in E3662 / R3662C5: got '#N/A'Expecting numeric in G3662 / R3662C7: got '#N/A'Expecting numeric in B3663 / R3663C2: got '#N/A'Expecting numeric in E3663 / R3663C5: got '#N/A'Expecting numeric in G3663 / R3663C7: got '#N/A'Expecting numeric in B3664 / R3664C2: got '#N/A'Expecting numeric in E3664 / R3664C5: got '#N/A'Expecting numeric in G3664 / R3664C7: got '#N/A'Expecting numeric in B3665 / R3665C2: got '#N/A'Expecting numeric in E3665 / R3665C5: got '#N/A'Expecting numeric in G3665 / R3665C7: got '#N/A'Expecting numeric in B3666 / R3666C2: got '#N/A'Expecting numeric in E3666 / R3666C5: got '#N/A'Expecting numeric in G3666 / R3666C7: got '#N/A'Expecting numeric in B3667 / R3667C2: got '#N/A'Expecting numeric in E3667 / R3667C5: got '#N/A'Expecting numeric in G3667 / R3667C7: got '#N/A'Expecting numeric in B3668 / R3668C2: got '#N/A'Expecting numeric in E3668 / R3668C5: got '#N/A'Expecting numeric in G3668 / R3668C7: got '#N/A'Expecting numeric in B3669 / R3669C2: got '#N/A'Expecting numeric in E3669 / R3669C5: got '#N/A'Expecting numeric in G3669 / R3669C7: got '#N/A'Expecting numeric in B3670 / R3670C2: got '#N/A'Expecting numeric in E3670 / R3670C5: got '#N/A'Expecting numeric in G3670 / R3670C7: got '#N/A'Expecting numeric in B3671 / R3671C2: got '#N/A'Expecting numeric in E3671 / R3671C5: got '#N/A'Expecting numeric in G3671 / R3671C7: got '#N/A'Expecting numeric in B3672 / R3672C2: got '#N/A'Expecting numeric in E3672 / R3672C5: got '#N/A'Expecting numeric in G3672 / R3672C7: got '#N/A'Expecting numeric in B3673 / R3673C2: got '#N/A'Expecting numeric in E3673 / R3673C5: got '#N/A'Expecting numeric in G3673 / R3673C7: got '#N/A'Expecting numeric in B3674 / R3674C2: got '#N/A'Expecting numeric in E3674 / R3674C5: got '#N/A'Expecting numeric in G3674 / R3674C7: got '#N/A'Expecting numeric in B3675 / R3675C2: got '#N/A'Expecting numeric in E3675 / R3675C5: got '#N/A'Expecting numeric in G3675 / R3675C7: got '#N/A'Expecting numeric in B3676 / R3676C2: got '#N/A'Expecting numeric in E3676 / R3676C5: got '#N/A'Expecting numeric in G3676 / R3676C7: got '#N/A'Expecting numeric in B3677 / R3677C2: got '#N/A'Expecting numeric in E3677 / R3677C5: got '#N/A'Expecting numeric in G3677 / R3677C7: got '#N/A'Expecting numeric in B3678 / R3678C2: got '#N/A'Expecting numeric in E3678 / R3678C5: got '#N/A'Expecting numeric in G3678 / R3678C7: got '#N/A'Expecting numeric in B3679 / R3679C2: got '#N/A'Expecting numeric in E3679 / R3679C5: got '#N/A'Expecting numeric in G3679 / R3679C7: got '#N/A'Expecting numeric in B3680 / R3680C2: got '#N/A'Expecting numeric in E3680 / R3680C5: got '#N/A'Expecting numeric in G3680 / R3680C7: got '#N/A'Expecting numeric in B3681 / R3681C2: got '#N/A'Expecting numeric in E3681 / R3681C5: got '#N/A'Expecting numeric in G3681 / R3681C7: got '#N/A'Expecting numeric in B3682 / R3682C2: got '#N/A'Expecting numeric in E3682 / R3682C5: got '#N/A'Expecting numeric in G3682 / R3682C7: got '#N/A'Expecting numeric in B3683 / R3683C2: got '#N/A'Expecting numeric in E3683 / R3683C5: got '#N/A'Expecting numeric in G3683 / R3683C7: got '#N/A'Expecting numeric in B3684 / R3684C2: got '#N/A'Expecting numeric in E3684 / R3684C5: got '#N/A'Expecting numeric in G3684 / R3684C7: got '#N/A'Expecting numeric in B3685 / R3685C2: got '#N/A'Expecting numeric in E3685 / R3685C5: got '#N/A'Expecting numeric in G3685 / R3685C7: got '#N/A'Expecting numeric in B3686 / R3686C2: got '#N/A'Expecting numeric in E3686 / R3686C5: got '#N/A'Expecting numeric in G3686 / R3686C7: got '#N/A'Expecting numeric in B3687 / R3687C2: got '#N/A'Expecting numeric in E3687 / R3687C5: got '#N/A'Expecting numeric in G3687 / R3687C7: got '#N/A'Expecting numeric in B3688 / R3688C2: got '#N/A'Expecting numeric in E3688 / R3688C5: got '#N/A'Expecting numeric in G3688 / R3688C7: got '#N/A'Expecting numeric in B3689 / R3689C2: got '#N/A'Expecting numeric in E3689 / R3689C5: got '#N/A'Expecting numeric in G3689 / R3689C7: got '#N/A'Expecting numeric in B3690 / R3690C2: got '#N/A'Expecting numeric in E3690 / R3690C5: got '#N/A'Expecting numeric in G3690 / R3690C7: got '#N/A'Expecting numeric in B3691 / R3691C2: got '#N/A'Expecting numeric in E3691 / R3691C5: got '#N/A'Expecting numeric in G3691 / R3691C7: got '#N/A'Expecting numeric in B3692 / R3692C2: got '#N/A'Expecting numeric in E3692 / R3692C5: got '#N/A'Expecting numeric in G3692 / R3692C7: got '#N/A'Expecting numeric in B3693 / R3693C2: got '#N/A'Expecting numeric in E3693 / R3693C5: got '#N/A'Expecting numeric in G3693 / R3693C7: got '#N/A'Expecting numeric in B3694 / R3694C2: got '#N/A'Expecting numeric in E3694 / R3694C5: got '#N/A'Expecting numeric in G3694 / R3694C7: got '#N/A'Expecting numeric in B3695 / R3695C2: got '#N/A'Expecting numeric in E3695 / R3695C5: got '#N/A'Expecting numeric in G3695 / R3695C7: got '#N/A'Expecting numeric in B3696 / R3696C2: got '#N/A'Expecting numeric in E3696 / R3696C5: got '#N/A'Expecting numeric in B3697 / R3697C2: got '#N/A'Expecting numeric in E3697 / R3697C5: got '#N/A'Expecting numeric in B3698 / R3698C2: got '#N/A'Expecting numeric in E3698 / R3698C5: got '#N/A'Expecting numeric in B3699 / R3699C2: got '#N/A'Expecting numeric in E3699 / R3699C5: got '#N/A'Expecting numeric in B3700 / R3700C2: got '#N/A'Expecting numeric in E3700 / R3700C5: got '#N/A'Expecting numeric in B3701 / R3701C2: got '#N/A'Expecting numeric in E3701 / R3701C5: got '#N/A'Expecting numeric in B3702 / R3702C2: got '#N/A'Expecting numeric in E3702 / R3702C5: got '#N/A'Expecting numeric in B3703 / R3703C2: got '#N/A'Expecting numeric in E3703 / R3703C5: got '#N/A'Expecting numeric in B3704 / R3704C2: got '#N/A'Expecting numeric in E3704 / R3704C5: got '#N/A'Expecting numeric in B3705 / R3705C2: got '#N/A'Expecting numeric in E3705 / R3705C5: got '#N/A'Expecting numeric in B3706 / R3706C2: got '#N/A'Expecting numeric in E3706 / R3706C5: got '#N/A'Expecting numeric in B3707 / R3707C2: got '#N/A'Expecting numeric in E3707 / R3707C5: got '#N/A'Expecting numeric in B3708 / R3708C2: got '#N/A'Expecting numeric in E3708 / R3708C5: got '#N/A'Expecting numeric in B3709 / R3709C2: got '#N/A'Expecting numeric in E3709 / R3709C5: got '#N/A'Expecting numeric in B3710 / R3710C2: got '#N/A'Expecting numeric in E3710 / R3710C5: got '#N/A'Expecting numeric in B3711 / R3711C2: got '#N/A'Expecting numeric in E3711 / R3711C5: got '#N/A'Expecting numeric in B3712 / R3712C2: got '#N/A'Expecting numeric in E3712 / R3712C5: got '#N/A'Expecting numeric in B3713 / R3713C2: got '#N/A'Expecting numeric in E3713 / R3713C5: got '#N/A'Expecting numeric in B3714 / R3714C2: got '#N/A'Expecting numeric in E3714 / R3714C5: got '#N/A'Expecting numeric in B3715 / R3715C2: got '#N/A'Expecting numeric in E3715 / R3715C5: got '#N/A'Expecting numeric in B3716 / R3716C2: got '#N/A'Expecting numeric in E3716 / R3716C5: got '#N/A'Expecting numeric in B3717 / R3717C2: got '#N/A'Expecting numeric in E3717 / R3717C5: got '#N/A'Expecting numeric in B3718 / R3718C2: got '#N/A'Expecting numeric in E3718 / R3718C5: got '#N/A'Expecting numeric in B3719 / R3719C2: got '#N/A'Expecting numeric in E3719 / R3719C5: got '#N/A'Expecting numeric in B3720 / R3720C2: got '#N/A'Expecting numeric in E3720 / R3720C5: got '#N/A'Expecting numeric in B3721 / R3721C2: got '#N/A'Expecting numeric in E3721 / R3721C5: got '#N/A'Expecting numeric in B3722 / R3722C2: got '#N/A'Expecting numeric in E3722 / R3722C5: got '#N/A'Expecting numeric in B3723 / R3723C2: got '#N/A'Expecting numeric in E3723 / R3723C5: got '#N/A'Expecting numeric in B3724 / R3724C2: got '#N/A'Expecting numeric in E3724 / R3724C5: got '#N/A'Expecting numeric in B3725 / R3725C2: got '#N/A'Expecting numeric in E3725 / R3725C5: got '#N/A'Expecting numeric in B3726 / R3726C2: got '#N/A'Expecting numeric in E3726 / R3726C5: got '#N/A'Expecting numeric in B3727 / R3727C2: got '#N/A'Expecting numeric in E3727 / R3727C5: got '#N/A'Expecting numeric in B3728 / R3728C2: got '#N/A'Expecting numeric in E3728 / R3728C5: got '#N/A'Expecting numeric in B3729 / R3729C2: got '#N/A'Expecting numeric in E3729 / R3729C5: got '#N/A'Expecting numeric in B3730 / R3730C2: got '#N/A'Expecting numeric in E3730 / R3730C5: got '#N/A'Expecting numeric in B3731 / R3731C2: got '#N/A'Expecting numeric in E3731 / R3731C5: got '#N/A'Expecting numeric in B3732 / R3732C2: got '#N/A'Expecting numeric in E3732 / R3732C5: got '#N/A'Expecting numeric in B3733 / R3733C2: got '#N/A'Expecting numeric in E3733 / R3733C5: got '#N/A'Expecting numeric in B3734 / R3734C2: got '#N/A'Expecting numeric in E3734 / R3734C5: got '#N/A'Expecting numeric in B3735 / R3735C2: got '#N/A'Expecting numeric in E3735 / R3735C5: got '#N/A'Expecting numeric in B3736 / R3736C2: got '#N/A'Expecting numeric in E3736 / R3736C5: got '#N/A'Expecting numeric in B3737 / R3737C2: got '#N/A'Expecting numeric in E3737 / R3737C5: got '#N/A'Expecting numeric in B3738 / R3738C2: got '#N/A'Expecting numeric in E3738 / R3738C5: got '#N/A'Expecting numeric in B3739 / R3739C2: got '#N/A'Expecting numeric in E3739 / R3739C5: got '#N/A'Expecting numeric in B3740 / R3740C2: got '#N/A'Expecting numeric in E3740 / R3740C5: got '#N/A'Expecting numeric in B3741 / R3741C2: got '#N/A'Expecting numeric in E3741 / R3741C5: got '#N/A'Expecting numeric in B3742 / R3742C2: got '#N/A'Expecting numeric in E3742 / R3742C5: got '#N/A'Expecting numeric in B3743 / R3743C2: got '#N/A'Expecting numeric in E3743 / R3743C5: got '#N/A'Expecting numeric in B3744 / R3744C2: got '#N/A'Expecting numeric in E3744 / R3744C5: got '#N/A'Expecting numeric in B3745 / R3745C2: got '#N/A'Expecting numeric in E3745 / R3745C5: got '#N/A'Expecting numeric in B3746 / R3746C2: got '#N/A'Expecting numeric in E3746 / R3746C5: got '#N/A'Expecting numeric in B3747 / R3747C2: got '#N/A'Expecting numeric in E3747 / R3747C5: got '#N/A'Expecting numeric in B3748 / R3748C2: got '#N/A'Expecting numeric in E3748 / R3748C5: got '#N/A'Expecting numeric in B3749 / R3749C2: got '#N/A'Expecting numeric in E3749 / R3749C5: got '#N/A'Expecting numeric in B3750 / R3750C2: got '#N/A'Expecting numeric in E3750 / R3750C5: got '#N/A'Expecting numeric in B3751 / R3751C2: got '#N/A'Expecting numeric in E3751 / R3751C5: got '#N/A'Expecting numeric in B3752 / R3752C2: got '#N/A'Expecting numeric in E3752 / R3752C5: got '#N/A'Expecting numeric in B3753 / R3753C2: got '#N/A'Expecting numeric in E3753 / R3753C5: got '#N/A'Expecting numeric in B3754 / R3754C2: got '#N/A'Expecting numeric in E3754 / R3754C5: got '#N/A'Expecting numeric in B3755 / R3755C2: got '#N/A'Expecting numeric in E3755 / R3755C5: got '#N/A'Expecting numeric in B3756 / R3756C2: got '#N/A'Expecting numeric in E3756 / R3756C5: got '#N/A'Expecting numeric in B3757 / R3757C2: got '#N/A'Expecting numeric in E3757 / R3757C5: got '#N/A'Expecting numeric in B3758 / R3758C2: got '#N/A'Expecting numeric in E3758 / R3758C5: got '#N/A'Expecting numeric in B3759 / R3759C2: got '#N/A'Expecting numeric in E3759 / R3759C5: got '#N/A'Expecting numeric in B3760 / R3760C2: got '#N/A'Expecting numeric in E3760 / R3760C5: got '#N/A'Expecting numeric in B3761 / R3761C2: got '#N/A'Expecting numeric in E3761 / R3761C5: got '#N/A'Expecting numeric in B3762 / R3762C2: got '#N/A'Expecting numeric in E3762 / R3762C5: got '#N/A'Expecting numeric in B3763 / R3763C2: got '#N/A'Expecting numeric in E3763 / R3763C5: got '#N/A'Expecting numeric in B3764 / R3764C2: got '#N/A'Expecting numeric in E3764 / R3764C5: got '#N/A'Expecting numeric in B3765 / R3765C2: got '#N/A'Expecting numeric in E3765 / R3765C5: got '#N/A'Expecting numeric in B3766 / R3766C2: got '#N/A'Expecting numeric in E3766 / R3766C5: got '#N/A'Expecting numeric in B3767 / R3767C2: got '#N/A'Expecting numeric in E3767 / R3767C5: got '#N/A'Expecting numeric in B3768 / R3768C2: got '#N/A'Expecting numeric in E3768 / R3768C5: got '#N/A'Expecting numeric in B3769 / R3769C2: got '#N/A'Expecting numeric in E3769 / R3769C5: got '#N/A'Expecting numeric in B3770 / R3770C2: got '#N/A'Expecting numeric in E3770 / R3770C5: got '#N/A'Expecting numeric in B3771 / R3771C2: got '#N/A'Expecting numeric in E3771 / R3771C5: got '#N/A'Expecting numeric in B3772 / R3772C2: got '#N/A'Expecting numeric in E3772 / R3772C5: got '#N/A'Expecting numeric in B3773 / R3773C2: got '#N/A'Expecting numeric in E3773 / R3773C5: got '#N/A'Expecting numeric in B3774 / R3774C2: got '#N/A'Expecting numeric in E3774 / R3774C5: got '#N/A'Expecting numeric in B3775 / R3775C2: got '#N/A'Expecting numeric in E3775 / R3775C5: got '#N/A'Expecting numeric in B3776 / R3776C2: got '#N/A'Expecting numeric in E3776 / R3776C5: got '#N/A'Expecting numeric in B3777 / R3777C2: got '#N/A'Expecting numeric in E3777 / R3777C5: got '#N/A'Expecting numeric in B3778 / R3778C2: got '#N/A'Expecting numeric in E3778 / R3778C5: got '#N/A'Expecting numeric in B3779 / R3779C2: got '#N/A'Expecting numeric in E3779 / R3779C5: got '#N/A'Expecting numeric in B3780 / R3780C2: got '#N/A'Expecting numeric in E3780 / R3780C5: got '#N/A'Expecting numeric in B3781 / R3781C2: got '#N/A'Expecting numeric in E3781 / R3781C5: got '#N/A'Expecting numeric in B3782 / R3782C2: got '#N/A'Expecting numeric in E3782 / R3782C5: got '#N/A'Expecting numeric in B3783 / R3783C2: got '#N/A'Expecting numeric in E3783 / R3783C5: got '#N/A'Expecting numeric in B3784 / R3784C2: got '#N/A'Expecting numeric in E3784 / R3784C5: got '#N/A'Expecting numeric in B3785 / R3785C2: got '#N/A'Expecting numeric in E3785 / R3785C5: got '#N/A'Expecting numeric in B3786 / R3786C2: got '#N/A'Expecting numeric in E3786 / R3786C5: got '#N/A'Expecting numeric in B3787 / R3787C2: got '#N/A'Expecting numeric in E3787 / R3787C5: got '#N/A'Expecting numeric in B3788 / R3788C2: got '#N/A'Expecting numeric in E3788 / R3788C5: got '#N/A'Expecting numeric in B3789 / R3789C2: got '#N/A'Expecting numeric in E3789 / R3789C5: got '#N/A'Expecting numeric in B3790 / R3790C2: got '#N/A'Expecting numeric in E3790 / R3790C5: got '#N/A'Expecting numeric in B3791 / R3791C2: got '#N/A'Expecting numeric in E3791 / R3791C5: got '#N/A'Expecting numeric in B3792 / R3792C2: got '#N/A'Expecting numeric in E3792 / R3792C5: got '#N/A'Expecting numeric in B3793 / R3793C2: got '#N/A'Expecting numeric in E3793 / R3793C5: got '#N/A'Expecting numeric in B3794 / R3794C2: got '#N/A'Expecting numeric in E3794 / R3794C5: got '#N/A'Expecting numeric in B3795 / R3795C2: got '#N/A'Expecting numeric in E3795 / R3795C5: got '#N/A'Expecting numeric in B3796 / R3796C2: got '#N/A'Expecting numeric in E3796 / R3796C5: got '#N/A'Expecting numeric in B3797 / R3797C2: got '#N/A'Expecting numeric in E3797 / R3797C5: got '#N/A'Expecting numeric in B3798 / R3798C2: got '#N/A'Expecting numeric in E3798 / R3798C5: got '#N/A'Expecting numeric in B3799 / R3799C2: got '#N/A'Expecting numeric in E3799 / R3799C5: got '#N/A'Expecting numeric in B3800 / R3800C2: got '#N/A'Expecting numeric in E3800 / R3800C5: got '#N/A'Expecting numeric in B3801 / R3801C2: got '#N/A'Expecting numeric in E3801 / R3801C5: got '#N/A'Expecting numeric in B3802 / R3802C2: got '#N/A'Expecting numeric in E3802 / R3802C5: got '#N/A'Expecting numeric in B3803 / R3803C2: got '#N/A'Expecting numeric in E3803 / R3803C5: got '#N/A'Expecting numeric in B3804 / R3804C2: got '#N/A'Expecting numeric in E3804 / R3804C5: got '#N/A'Expecting numeric in B3805 / R3805C2: got '#N/A'Expecting numeric in E3805 / R3805C5: got '#N/A'Expecting numeric in B3806 / R3806C2: got '#N/A'Expecting numeric in E3806 / R3806C5: got '#N/A'Expecting numeric in B3807 / R3807C2: got '#N/A'Expecting numeric in E3807 / R3807C5: got '#N/A'Expecting numeric in B3808 / R3808C2: got '#N/A'Expecting numeric in E3808 / R3808C5: got '#N/A'Expecting numeric in B3809 / R3809C2: got '#N/A'Expecting numeric in E3809 / R3809C5: got '#N/A'Expecting numeric in B3810 / R3810C2: got '#N/A'Expecting numeric in E3810 / R3810C5: got '#N/A'Expecting numeric in B3811 / R3811C2: got '#N/A'Expecting numeric in E3811 / R3811C5: got '#N/A'Expecting numeric in B3812 / R3812C2: got '#N/A'Expecting numeric in E3812 / R3812C5: got '#N/A'Expecting numeric in B3813 / R3813C2: got '#N/A'Expecting numeric in E3813 / R3813C5: got '#N/A'Expecting numeric in B3814 / R3814C2: got '#N/A'Expecting numeric in E3814 / R3814C5: got '#N/A'Expecting numeric in B3815 / R3815C2: got '#N/A'Expecting numeric in E3815 / R3815C5: got '#N/A'Expecting numeric in B3816 / R3816C2: got '#N/A'Expecting numeric in E3816 / R3816C5: got '#N/A'Expecting numeric in B3817 / R3817C2: got '#N/A'Expecting numeric in E3817 / R3817C5: got '#N/A'Expecting numeric in B3818 / R3818C2: got '#N/A'Expecting numeric in E3818 / R3818C5: got '#N/A'Expecting numeric in B3819 / R3819C2: got '#N/A'Expecting numeric in E3819 / R3819C5: got '#N/A'Expecting numeric in B3820 / R3820C2: got '#N/A'Expecting numeric in E3820 / R3820C5: got '#N/A'Expecting numeric in B3821 / R3821C2: got '#N/A'Expecting numeric in E3821 / R3821C5: got '#N/A'Expecting numeric in B3822 / R3822C2: got '#N/A'Expecting numeric in E3822 / R3822C5: got '#N/A'Expecting numeric in B3823 / R3823C2: got '#N/A'Expecting numeric in E3823 / R3823C5: got '#N/A'Expecting numeric in B3824 / R3824C2: got '#N/A'Expecting numeric in E3824 / R3824C5: got '#N/A'Expecting numeric in B3825 / R3825C2: got '#N/A'Expecting numeric in E3825 / R3825C5: got '#N/A'Expecting numeric in B3826 / R3826C2: got '#N/A'Expecting numeric in E3826 / R3826C5: got '#N/A'Expecting numeric in B3827 / R3827C2: got '#N/A'Expecting numeric in E3827 / R3827C5: got '#N/A'Expecting numeric in B3828 / R3828C2: got '#N/A'Expecting numeric in E3828 / R3828C5: got '#N/A'Expecting numeric in B3829 / R3829C2: got '#N/A'Expecting numeric in E3829 / R3829C5: got '#N/A'Expecting numeric in B3830 / R3830C2: got '#N/A'Expecting numeric in E3830 / R3830C5: got '#N/A'Expecting numeric in B3831 / R3831C2: got '#N/A'Expecting numeric in E3831 / R3831C5: got '#N/A'Expecting numeric in B3832 / R3832C2: got '#N/A'Expecting numeric in E3832 / R3832C5: got '#N/A'Expecting numeric in B3833 / R3833C2: got '#N/A'Expecting numeric in E3833 / R3833C5: got '#N/A'Expecting numeric in B3834 / R3834C2: got '#N/A'Expecting numeric in E3834 / R3834C5: got '#N/A'Expecting numeric in B3835 / R3835C2: got '#N/A'Expecting numeric in E3835 / R3835C5: got '#N/A'Expecting numeric in B3836 / R3836C2: got '#N/A'Expecting numeric in E3836 / R3836C5: got '#N/A'Expecting numeric in B3837 / R3837C2: got '#N/A'Expecting numeric in E3837 / R3837C5: got '#N/A'Expecting numeric in B3838 / R3838C2: got '#N/A'Expecting numeric in E3838 / R3838C5: got '#N/A'Expecting numeric in B3839 / R3839C2: got '#N/A'Expecting numeric in E3839 / R3839C5: got '#N/A'Expecting numeric in B3840 / R3840C2: got '#N/A'Expecting numeric in E3840 / R3840C5: got '#N/A'Expecting numeric in B3841 / R3841C2: got '#N/A'Expecting numeric in E3841 / R3841C5: got '#N/A'Expecting numeric in B3842 / R3842C2: got '#N/A'Expecting numeric in E3842 / R3842C5: got '#N/A'Expecting numeric in B3843 / R3843C2: got '#N/A'Expecting numeric in E3843 / R3843C5: got '#N/A'Expecting numeric in B3844 / R3844C2: got '#N/A'Expecting numeric in E3844 / R3844C5: got '#N/A'Expecting numeric in B3845 / R3845C2: got '#N/A'Expecting numeric in E3845 / R3845C5: got '#N/A'Expecting numeric in B3846 / R3846C2: got '#N/A'Expecting numeric in E3846 / R3846C5: got '#N/A'Expecting numeric in B3847 / R3847C2: got '#N/A'Expecting numeric in E3847 / R3847C5: got '#N/A'Expecting numeric in B3848 / R3848C2: got '#N/A'Expecting numeric in E3848 / R3848C5: got '#N/A'Expecting numeric in B3849 / R3849C2: got '#N/A'Expecting numeric in E3849 / R3849C5: got '#N/A'Expecting numeric in B3850 / R3850C2: got '#N/A'Expecting numeric in E3850 / R3850C5: got '#N/A'Expecting numeric in B3851 / R3851C2: got '#N/A'Expecting numeric in E3851 / R3851C5: got '#N/A'Expecting numeric in B3852 / R3852C2: got '#N/A'Expecting numeric in E3852 / R3852C5: got '#N/A'Expecting numeric in B3853 / R3853C2: got '#N/A'Expecting numeric in E3853 / R3853C5: got '#N/A'Expecting numeric in B3854 / R3854C2: got '#N/A'Expecting numeric in E3854 / R3854C5: got '#N/A'Expecting numeric in B3855 / R3855C2: got '#N/A'Expecting numeric in E3855 / R3855C5: got '#N/A'Expecting numeric in B3856 / R3856C2: got '#N/A'Expecting numeric in E3856 / R3856C5: got '#N/A'Expecting numeric in B3857 / R3857C2: got '#N/A'Expecting numeric in E3857 / R3857C5: got '#N/A'Expecting numeric in B3858 / R3858C2: got '#N/A'Expecting numeric in E3858 / R3858C5: got '#N/A'Expecting numeric in B3859 / R3859C2: got '#N/A'Expecting numeric in E3859 / R3859C5: got '#N/A'Expecting numeric in B3860 / R3860C2: got '#N/A'Expecting numeric in E3860 / R3860C5: got '#N/A'Expecting numeric in B3861 / R3861C2: got '#N/A'Expecting numeric in E3861 / R3861C5: got '#N/A'Expecting numeric in B3862 / R3862C2: got '#N/A'Expecting numeric in E3862 / R3862C5: got '#N/A'Expecting numeric in B3863 / R3863C2: got '#N/A'Expecting numeric in E3863 / R3863C5: got '#N/A'Expecting numeric in B3864 / R3864C2: got '#N/A'Expecting numeric in E3864 / R3864C5: got '#N/A'Expecting numeric in B3865 / R3865C2: got '#N/A'Expecting numeric in E3865 / R3865C5: got '#N/A'Expecting numeric in B3866 / R3866C2: got '#N/A'Expecting numeric in E3866 / R3866C5: got '#N/A'Expecting numeric in B3867 / R3867C2: got '#N/A'Expecting numeric in E3867 / R3867C5: got '#N/A'Expecting numeric in B3868 / R3868C2: got '#N/A'Expecting numeric in E3868 / R3868C5: got '#N/A'Expecting numeric in B3869 / R3869C2: got '#N/A'Expecting numeric in E3869 / R3869C5: got '#N/A'Expecting numeric in B3870 / R3870C2: got '#N/A'Expecting numeric in E3870 / R3870C5: got '#N/A'Expecting numeric in B3871 / R3871C2: got '#N/A'Expecting numeric in E3871 / R3871C5: got '#N/A'Expecting numeric in B3872 / R3872C2: got '#N/A'Expecting numeric in E3872 / R3872C5: got '#N/A'Expecting numeric in B3873 / R3873C2: got '#N/A'Expecting numeric in E3873 / R3873C5: got '#N/A'Expecting numeric in B3874 / R3874C2: got '#N/A'Expecting numeric in E3874 / R3874C5: got '#N/A'Expecting numeric in B3875 / R3875C2: got '#N/A'Expecting numeric in E3875 / R3875C5: got '#N/A'Expecting numeric in B3876 / R3876C2: got '#N/A'Expecting numeric in E3876 / R3876C5: got '#N/A'Expecting numeric in B3877 / R3877C2: got '#N/A'Expecting numeric in E3877 / R3877C5: got '#N/A'Expecting numeric in B3878 / R3878C2: got '#N/A'Expecting numeric in E3878 / R3878C5: got '#N/A'Expecting numeric in B3879 / R3879C2: got '#N/A'Expecting numeric in E3879 / R3879C5: got '#N/A'Expecting numeric in B3880 / R3880C2: got '#N/A'Expecting numeric in E3880 / R3880C5: got '#N/A'Expecting numeric in B3881 / R3881C2: got '#N/A'Expecting numeric in E3881 / R3881C5: got '#N/A'Expecting numeric in B3882 / R3882C2: got '#N/A'Expecting numeric in E3882 / R3882C5: got '#N/A'Expecting numeric in B3883 / R3883C2: got '#N/A'Expecting numeric in E3883 / R3883C5: got '#N/A'Expecting numeric in B3884 / R3884C2: got '#N/A'Expecting numeric in E3884 / R3884C5: got '#N/A'Expecting numeric in B3885 / R3885C2: got '#N/A'Expecting numeric in E3885 / R3885C5: got '#N/A'Expecting numeric in B3886 / R3886C2: got '#N/A'Expecting numeric in E3886 / R3886C5: got '#N/A'Expecting numeric in B3887 / R3887C2: got '#N/A'Expecting numeric in E3887 / R3887C5: got '#N/A'Expecting numeric in B3888 / R3888C2: got '#N/A'Expecting numeric in E3888 / R3888C5: got '#N/A'Expecting numeric in B3889 / R3889C2: got '#N/A'Expecting numeric in E3889 / R3889C5: got '#N/A'Expecting numeric in B3890 / R3890C2: got '#N/A'Expecting numeric in E3890 / R3890C5: got '#N/A'Expecting numeric in B3891 / R3891C2: got '#N/A'Expecting numeric in E3891 / R3891C5: got '#N/A'Expecting numeric in B3892 / R3892C2: got '#N/A'Expecting numeric in E3892 / R3892C5: got '#N/A'Expecting numeric in B3893 / R3893C2: got '#N/A'Expecting numeric in E3893 / R3893C5: got '#N/A'Expecting numeric in B3894 / R3894C2: got '#N/A'Expecting numeric in E3894 / R3894C5: got '#N/A'Expecting numeric in B3895 / R3895C2: got '#N/A'Expecting numeric in E3895 / R3895C5: got '#N/A'Expecting numeric in B3896 / R3896C2: got '#N/A'Expecting numeric in E3896 / R3896C5: got '#N/A'Expecting numeric in B3897 / R3897C2: got '#N/A'Expecting numeric in E3897 / R3897C5: got '#N/A'Expecting numeric in B3898 / R3898C2: got '#N/A'Expecting numeric in E3898 / R3898C5: got '#N/A'Expecting numeric in B3899 / R3899C2: got '#N/A'Expecting numeric in E3899 / R3899C5: got '#N/A'Expecting numeric in B3900 / R3900C2: got '#N/A'Expecting numeric in E3900 / R3900C5: got '#N/A'Expecting numeric in B3901 / R3901C2: got '#N/A'Expecting numeric in E3901 / R3901C5: got '#N/A'Expecting numeric in B3902 / R3902C2: got '#N/A'Expecting numeric in E3902 / R3902C5: got '#N/A'Expecting numeric in B3903 / R3903C2: got '#N/A'Expecting numeric in E3903 / R3903C5: got '#N/A'Expecting numeric in B3904 / R3904C2: got '#N/A'Expecting numeric in E3904 / R3904C5: got '#N/A'Expecting numeric in E3905 / R3905C5: got '#N/A'Expecting numeric in E3906 / R3906C5: got '#N/A'Expecting numeric in E3907 / R3907C5: got '#N/A'Expecting numeric in E3908 / R3908C5: got '#N/A'Expecting numeric in E3909 / R3909C5: got '#N/A'Expecting numeric in E3910 / R3910C5: got '#N/A'Expecting numeric in E3911 / R3911C5: got '#N/A'Expecting numeric in E3912 / R3912C5: got '#N/A'Expecting numeric in E3913 / R3913C5: got '#N/A'Expecting numeric in E3914 / R3914C5: got '#N/A'Expecting numeric in E3915 / R3915C5: got '#N/A'Expecting numeric in E3916 / R3916C5: got '#N/A'Expecting numeric in E3917 / R3917C5: got '#N/A'Expecting numeric in E3918 / R3918C5: got '#N/A'Expecting numeric in E3919 / R3919C5: got '#N/A'Expecting numeric in E3920 / R3920C5: got '#N/A'Expecting numeric in E3921 / R3921C5: got '#N/A'Expecting numeric in E3922 / R3922C5: got '#N/A'Expecting numeric in E3923 / R3923C5: got '#N/A'Expecting numeric in E3924 / R3924C5: got '#N/A'Expecting numeric in E3925 / R3925C5: got '#N/A'Expecting numeric in E3926 / R3926C5: got '#N/A'Expecting numeric in E3927 / R3927C5: got '#N/A'Expecting numeric in E3928 / R3928C5: got '#N/A'Expecting numeric in E3929 / R3929C5: got '#N/A'Expecting numeric in E3930 / R3930C5: got '#N/A'Expecting numeric in E3931 / R3931C5: got '#N/A'
rates %>% ggplot(aes(x=Date,y=value)) + facet_grid(type~asset, scales="free_y") + 
  geom_line() + ggtitle("Rate Data")

Turkey had a bout of hyperinflation in the early 2000s. I’m not sure what’s going on with those 1M Norway rates, but it’s not right. If we start our data set in 2007, we’ll eliminate these issues and still get to keep the credit crisis.

rates %>% filter(Date >= as.Date("2007-01-01")) %>%
  ggplot(aes(x=Date, y=value)) + facet_grid(type~asset, scales="free_y") + geom_line() + ggtitle("Rate data")

EUR 1M Swap rate is obviously wrong, too; it’s been the same value for nearly 10 years. The implied rate, which is backed out from the forward points, looks more realistic, but it can be messy.

We can backfill Australia and Norway with the 1M swap data. More worrisome is the choppiness in the forward points (and hence the implied rate) for CHF, CZK, and SEK. I’ve never traded CZK professionally, but I don’t recall having issues with CHF or SEK in those time periods. CHF had a peg for a while. Smoothing misses turning points, and probably doesn’t reflect what we would do in production, on a day where the rates quoted were out of whack. If we could help it, we probably just wouldn’t trade CZK that day.

We’ll see what the final carry return values look like in the next notebook, which calculates factors. If necessary, we can benchmark against the Bloomberg generic carry return indexes (which look like, e.g., AUDUSDCR Curncy), but I’m still trying to minimize reliance on Bloomberg.

Spot Rates

Spot rates, at least, should be freely available. QuantMod weirdly insists on assigning output to variables directly in the environment if you call getSymbols with more than one symbol. We’ll keep things clean by making a new environment.

We have some bad values in the Scandies, plus that obvious misquote in AUD. Let’s have a look at the full OHLC for SEK and NOK in the relevant period.

spot %>% filter(asset %in% c("SEK","NOK")) %>%
         filter(Date > as.Date("2007-01-01") & Date <= as.Date("2008-12-31")) %>%
         select(-Volume, -Adjusted) %>%
         gather(price,value,-asset,-Date) %>%
  ggplot(aes(x=Date, y=value, col=price)) + facet_wrap(~asset, ncol=1) +
      geom_line(alpha=0.75)

Looks like we’ll have to go elsewhere for the Scandy data, start in 2009, or just skip them for now. I’m inclined to skip; it’ll make the Gaussian Process run faster.

By convention, some currencies are quoted with the USD as the numeraire, others with the local currency as numeraire (AKA an indirect quote). We could have specified the pairs directly by putting ‘USD’ at the end of each ticker above. However, the forward points are given relative to the conventional quote. Store a vector of -1s and 1s, then you can either multiply the returns by that vector, or raise the spot rates to the power of that vector to make everything quoted in the same direction. Too bad R doesn’t have a proper dictionary class.

Yahoo has everything quoted directly. We will want the opposite when calculating returns in USD, i.e. JPY going from 120 to 100 is a positive return for the USD-denominated investor. We need the conventions when adding in the forward points.

SPOT_CONVENTION <- c(AUD=-1, CAD=1, CHF=1, CZK=1, EUR=-1, GBP=-1,
                     JPY=1, NOK=1, NZD=-1, SEK=1, TRY=1)

Lastly, to be sure, are my antipodal spots on a Mon-Fri schedule?

#spot %>% group_by(asset, DoW=format(Date,"%a")) %>% tally() 
spot %>% filter(Date>=ymd(20070101)) %>% 
  ggplot(aes(x=asset,fill=format(Date,"%a"),value=Close)) + 
  geom_bar(position="dodge") + guides(fill=guide_legend(title="Day of Week")) +
  ggtitle("Spot Rate Histograms")
Warning message:
Installed Rcpp (0.12.12) different from Rcpp used to build dplyr (0.12.11).
Please reinstall dplyr to avoid random crashes or undefined behavior. 

…sometimes, for all of them. What is going on, yahoo? Bloomberg never gives me this much grief. The FX markets are open, briefly on Sunday EST, but if you’re going to give me those, there should be as many Sundays as any other day. It certainly doesn’t explain why we have fewer values on Fridays. All I can think of is that it’s varying throughout the year based on daylight savings time, which isn’t observed in Japan.

spot %>% filter(asset=="AUD") %>% group_by(month(Date)) %>% summarize(Fridays=sum(ifelse(weekdays(Date)=="Friday",1,0)),
                                                                      Sundays=sum(ifelse(weekdays(Date)=="Sunday",1,0)))

That is truly malicious. It doesn’t even make sense, as I don’t think that one hour kicks FX into a new day. Ok, who else has spot rates going back that far? Oanda will only give you the last 180 days. Ideally, we want the WMR London Fix, but we’ll actually wind up with weekly carry return, and it seems we can’t afford to be picky. NZ Forex has historical rates, but they’re not the WMR fix, and probably reflect some local time mark.

How about Open Exchange Rates? This is getting into territory where Python and pandas do a better job, but let’s try to keep things in R. If you don’t want to pay, you have to make one API call per date to get this data.

require(jsonlite)
dts = rates %>% filter(Date > as.Date("2006-12-31")) %>%
  select(Date) %>% pull() %>% unique() %>% as.Date()

get_spot <- function(dt,app_id,assets) {
  query_str <- paste0("https://openexchangerates.org/api/historical/",
      format(dt, "%Y-%m-%d"), ".json",
      "?app_id=",app_id,
      "&base=USD",
      "&symbols=",paste0(assets, collapse=","))
  data <- fromJSON(query_str)
  if("error" %in% names(data)) {
    row <- setNames(c(as.numeric(dt),rep(NA,length(assets))),c("Date",assets))
  }
  else {
    row <- with(data, c(Date=timestamp, rates))
  }
  return(row)
}

new_spots <- map_dfr(dts, get_spot, 
                     app_id=scan("~/.openexchange_key", character()),
                     assets=levels(spot$asset))

…but you’re only allowed 1000 requests per month for free. I’m afraid I’m going to have to take Bloomberg data for spot rates, as well. I can at least store the transformed factors publicly, since that is materially altered.

Equity Indexes

Lastly, equity indexes, at least, should be easy to come by. Maybe I can finally use Quandl for something. …nope. Quandl’s equity index data is out of date. There seems to be nothing worthwhile for free on Quandl.

Missing some for CHF, NZD, and TRY, and everything for CZK, and NOK. I’m going to see what I can get directly off the Bourse websites. Typically, they want this data propagated.

env_eqy$CZK <- read_csv2("data/historicalData_PX.csv") %>%
  mutate(Date=as.Date(Date, format="%m/%d/%Y")) %>%
  rename(Close = `Last Close`) %>%
  select(-`Chg.%`, -X7)
env_eqy$NOK <- read_excel("data/OSEBX.xlsx") %>%
  mutate(Date=as.Date(OSEBX), Open=NA) %>%
  rename(Close=Last) %>%
  select(Date, Open, High, Low, Close)

EQUITIES_GOOG <- c(CHF="INDEXSWX:SMI", TRY="INDEXIST:XSIST")
quantmod::getSymbols(EQUITIES_GOOG, src="google", env=env_eqy)
process_goog <- function(ticker) { 
  x <- get(ticker, envir=env_eqy)
  colnames(x) <- gsub(paste0(ticker,"."),"",colnames(x))
  return(data.frame(Date=index(x),coredata(x)))
}

equities_goog <- map_dfr(EQUITIES_GOOG, process_goog, .id="asset") %>%
  mutate(asset=factor(asset))

bind_rows(google=equities_goog %>% filter(asset=="TRY"),
          yahoo=equities %>% filter(asset=="TRY"), .id="source") %>%
  ggplot(aes(x=Date,y=Close, col=source)) + geom_line() + ggtitle("BIST 100")

Not exactly a drop-in replacement, but it seems reasonable to replace the blank spot in yahoo data.

equities %>% filter(asset == "TRY" & is.na(Close)) %>%
  filter(Date >= as.Date("2014-04-01") & Date <= "2015-03-31") %>%
  select(Date)

(not showing long list of dates) 2014-05-19 to 2015-02-04

equities <- bind_rows(equities %>% filter(!(asset == "TRY" & 
                                              Date >= as.Date("2014-05-19") &
                                              Date <= as.Date("2015-02-04"))),
                      equities_goog %>% filter(asset == "TRY" & 
                                              Date >= as.Date("2014-05-19") &
                                              Date <= as.Date("2015-02-04")))
equities %>% ggplot(aes(x=Date, y=Close)) + facet_wrap(~asset, ncol=3, scale="free_y") +
  geom_line() + ggtitle("Equity Indexes")
equities <- bind_rows(equities %>% select(-Volume, -Adjusted) %>%
                        filter(!(asset %in% c("CZK","NOK","CHF"))), 
                      equities_goog %>% filter(asset =="CHF") %>% select(-Volume),
                      env_eqy$CZK %>% mutate(asset="CZK"),
                      env_eqy$NOK %>% mutate(asset="NOK") %>%
                        filter(Date>=as.Date("2007-01-01")))
equities %>% ggplot(aes(x=Date,y=Close)) + 
  facet_wrap(~asset, ncol=3, scales = "free_y") +
  geom_line() + ggtitle("Equity Indexes")

Now we are left with a small discontinuity in NZD. Closer inspection of the data reveals these to be a period with only weekly data, instead of daily. We need equities so we can get the rolling 40-day change. Given that we will be regressing on weekly or monthly periodicity, it’s possible this is going to be good enough. I’m a strong believer in garbage in, garbage out, but it’s unlikely the final portfolio will be permitted to take big positions in NZD in the first place. We can revisit if the factors look wonky around then (possibly filling in with AUD data), or if the final forecast has clearly been affected.

Cleanup

Let’s clear out the intermediate variables, then save the data and move on to a clean sheet.

rm(equities_goog, env_eqy, env_spot, eqy_ticks, EQUITIES, EQUITIES_GOOG, rate_pages,
   RATE_PATH, spot_ticks, process_eqy, process_goog, process_spot)
rm(rates, spot) ; message("I can't keep unaltered rates or spot data freely accessible.")
save.image("data/gathering_data.rData")

In Summary

Even this small set of data took quite a lot of work to get into manageable shape. We still anticipate issues in calculating the carry return, which is our endogenous variable! It is crucial to get this step right, however. It’s ok to take some shortcuts, and backfill some data, where necessary, but we must be aware that we’re doing it, and have justifications for our actions. That’s what makes the notebook workflow, whether RStudio or Jupyter, so crucial. You can come back in a year’s time and see exactly what your logic was.

LS0tCnRpdGxlOiAiR2F0aGVyaW5nIERhdGEiCm91dHB1dDoKICBodG1sX2RvY3VtZW50OiAKICAgIGZpZ193aWR0aDogOC4wNQogICAgdG9jOiB5ZXMKICBodG1sX25vdGVib29rOiBkZWZhdWx0Ci0tLQoKV2UgYXJlIGdvaW5nIHRvIHJlZ3Jlc3MgdGhlIHJldHVybiBvZiBob2xkaW5nIDFNIEZYIGZvcndhcmRzIGFnYWluc3QgYSBmYWlybHkgc3RhbmRhcmQgc2V0IG9mIG1hY3JvZWNvbm9taWMgYW5kIHRlY2huaWNhbCBpbmRpY2F0b3JzLiBJbiB0aGUgcGFzdCwgSSd2ZSBkb25lIGFsbCB0aGlzIHVzaW5nIEJsb29tYmVyZyBkYXRhLCBidXQgdGhhdCBjYXJyaWVzIGxpY2Vuc2UgcmVzdHJpY3Rpb25zLiBJdCdzIG15IGhvcGUgSSBjYW4gdXNlIGZyZWVseSBhdmFpbGFibGUgZGF0YSB2aWEgUXVhbmRsJ3MgaW50ZXJmYWNlLgoKVGhlIGZhY3RvcnMgYXJlIGFzIGZvbGxvd3M6Cgp8IEZhY3RvciAgICAgICAgICAgfCBEZXNjcmlwdGlvbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHwKfC0tLS0tLS0tLS0tLS0tLS0tLXwtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS18CnwgRXF1aXR5ICAgICAgICAgICB8IFRoZSA0MC1kYXkgY2hhbmdlIGluIHRoZSBsb2NhbCBlcXVpdHkgaW5kZXggfAp8IFNwb3RfNDBEICAgICAgICAgfCBUaGUgNDAtZGF5IGNoYW5nZSBpbiBzcG90IHJhdGVzICAgICAgICAgICAgIHwKfCBTd2FwUmF0ZV8yWSAgICAgIHwgVGhlIDJZIFN3YXAgUmF0ZSAgICAgICAgICAgICAgICAgICAgICAgICAgICB8CnwgVHdvWWVhcl80MEQgICAgICB8IFRoZSA0MC1kYXkgY2hhbmdlIGluIDJZIFN3YXAgcmF0ZSAgICAgICAgICAgfAp8IFlpZWxkQ3VydmUgICAgICAgfCBUaGUgc3ByZWFkIGJldHdlZW4gMTBZIGFuZCAyWSBTd2FwcyAgICAgICAgIHwKfCBGWF9SZXR1cm4gKGVuZG8pIHwgVGhlIHNwb3QgcmF0ZSBjaGFuZ2UgcGx1cyB0aGUgY2FycnkgcmV0dXJuICB8CgpBbGwgb2YgdGhlc2UgZmFjdG9ycyBzaG91bGQgYmUgYXZhaWxhYmxlIG9uIGEgZGFpbHkgYmFzaXMsIGJ1dCBJIHdvdWxkbid0IGV4cGVjdCB0aGVpciBpbXBhY3QgdG8gYmUgZmVsdCBxdWl0ZSBzbyBxdWlja2x5LiBJbiB0aGUgcGFzdCwgSSd2ZSBmaXQgdGhpcyBtb2RlbCBvbiBtb250aGx5IGRhdGEgd2l0aCBhdCBsZWFzdCAxNSB5ZWFycycgaGlzdG9yeS4gVGhpcyB0aW1lLCBJJ20gYWRkaW5nIENaSyBhbmQgVFJZIHRvIG15IHVzdWFsIHNldCBvZiBwYWlycywgYW5kIEkgd291bGQgZXhwZWN0IHRoZXkgbGFjayBzb21lIG9mIHRoZSBkYXRhIEknZCBuZWVkLCBzbyBJIG1heSB0cnkgd2Vla2x5IHBlcmlvZGljaXR5IG9uIGEgc2hvcnRlciB0aW1lIHBlcmlvZC4gV2UnbGwgc2VlIG9uY2Ugd2UgZ2V0IGFsbCB0aGUgZGF0YS4KCkFsc28sIGNsZWFybHksIHdlIHNob3VsZCBleHBlY3QgYSBoaWdoIGludGVyY29ycmVsYXRpb24gKGkuZS4gbXVsdGljb2xsaW5lYXJpdHkpIGJldHdlZW4gc2V2ZXJhbCBvZiB0aGVzZSBmYWN0b3JzLgoKTGV0J3Mgc3RhcnQgd2l0aCB0aGUgbWFqb3IgdHJhZGVkIGN1cnJlbmNpZXMsIHBsdXMgYSBmZXcgcG9wdWxhciB0YXJnZXRzIGZvciB0aGUgY2FycnkgdHJhZGUuIFdlIHdpbGwgdXNlOgpBVUQsIENBRCwgQ0hGLCBDWkssIEVVUiwgR0JQLCBKUFksIE5PSywgTlpELCBTRUssIFRSWSwgVVNECgpUaGlzIHdpbGwgcHJvdmlkZSBhIGZldyBleG9nZW5vdXMgc2hvY2tzLCBpbmNsdWRpbmcgdGhlIFN3aXNzIEZyYW5jIHBlZywgdGhlIEJyZXhpdCBwYW5pYywgdGhlIFR1cmtpc2ggY291cCwgdGhlIHRhcGVyIHRhbnRydW0sIHZhcmlvdXMgaXRlcmF0aW9ucyBvZiB0aGUgRXVybyBjcmVkaXQgY3Jpc2lzLCBhbmQsIGlmIEkgY2FuIGdldCBkYXRhIGdvaW5nIGZhciBlbm91Z2ggYmFjaywgdGhlIDIwMDggY3Jhc2guIFRoaXMgbW9kZWwgaXMgb2J2aW91c2x5IG5vdCBnb2luZyB0byBmb3Jlc2VlIGFueSBvZiB0aGVzZSwgYWx0aG91Z2ggaXQgd2lsbCBwcm9kdWNlIGl0cyBvd24gY292YXJpYW5jZSBlc3RpbWF0ZXMgZm9yIHRoZSBjdXJyZW5jaWVzLCB3aGljaCBjYW4gYmUgdXNlZCBhdCB0aGUgcG9ydGZvbGlvIG9wdGltaXphdGlvbiBzdGFnZSBpZiBvbmUgd2VyZSB0byB0cmFkZSBvbiB0aGVzZSBzaWduYWxzLgoKU3RlcCBvbmUgaXMgdG8gZXhwbG9yZSB3aGF0IGRhdGEgaXMgYXZhaWxhYmxlLCBhbmQgZWl0aGVyIG1ha2UgY2hhbmdlcyB0byB0aGUgc2NvcGUgb2Ygb3VyIGFzc2V0cyBhbmQgb3VyIGZhY3RvcnMsIG9yIHRvIHNlZSB3aGF0IGltcHV0YXRpb24gd2UgY2FuIG1ha2UgdG8gaGFuZGxlIG1pc3NpbmcgZGF0YS4gSXQncyBlbmNvdXJhZ2VkIHRvIGhhbmRsZSBtaXNzaW5nIGRhdGEgZGlyZWN0bHkgaW4gdGhlIGdlbmVyYXRpdmUgbW9kZWwsIGJ1dCBJIHRoaW5rIHdlJ2xsIGhhdmUgZW5vdWdoIHBhcmFtZXRlcnMganVzdCBvbiB0aGUgR2F1c3NpYW4gcHJvY2Vzcy4KCiMgTG9hZCBMaWJyYXJpZXMKYGBge3IgbGlicywgbWVzc2FnZT1GQUxTRSwgd2FybmluZz1GQUxTRX0Ka25pdHI6Om9wdHNfa25pdCRzZXQocm9vdC5kaXIgPSBub3JtYWxpemVQYXRoKCIuLiIpKQpsaWJyYXJ5KHRpZHl2ZXJzZSkKbGlicmFyeShRdWFuZGwpCmxpYnJhcnkocXVhbnRtb2QpCmxpYnJhcnkobHVicmlkYXRlKQpsaWJyYXJ5KGdndGhlbWVzKQpsaWJyYXJ5KEdHYWxseSkgI2ZvciBzY2F0dGVyIHBsb3QgbWF0cml4ZXMKYGBgCgojIFJhdyBEYXRhCgpGb3IgYWxsIGN1cnJlbmNpZXMsIHdlIG5lZWQgMU0gZnVuZGluZyByYXRlcywgMlkgYW5kIDEwWSBzd2FwcywgZXF1aXR5IGluZGV4ZXMsIGFuZCBzcG90IHJhdGVzLCBhbGwgb24gYSBkYWlseSBiYXNpcy4KCkxldCdzIHN0YXJ0IHdpdGggdGhlIGhhcmRlc3Qgc3R1ZmYgYW5kIG1vdmUgdXAuIFRoZXJlJ3Mgbm8gcG9pbnQgZ2F0aGVyaW5nIGEgYnVuY2ggb2YgaW5mb3JtYXRpb24gZm9yIFR1cmtleSwgZm9yIGV4YW1wbGUsIGlmIGl0IHR1cm5zIG91dCBJIGNhbid0IGZpbmQgYSByZWxpYWJsZSAxMFkgc3dhcCByYXRlLgoKIyMgU3dhcCBSYXRlcwoKSXQncyBxdWlja2x5IGJlY29tZSBjbGVhciB0aGF0IEkgY2FuJ3QgZ2V0IHN3YXAgZGF0YSBmb3IgZnJlZS4gU28sIHVuZm9ydHVuYXRlbHksIHRoaXMgZGVtbyBqdXN0IGJlY2FtZSBkaWZmaWN1bHQgZm9yIHRoZSByZWFkZXIgdG8gZHVwbGljYXRlLCBiZWNhdXNlIEkgZG9uJ3QgaGF2ZSB0aGUgcmlnaHQgdG8gZGlzdHJpYnV0ZSB0aGUgcmF0ZSBkYXRhIEknbSBnb2luZyB0byB1c2UuIEkgd2lsbCBrZWVwIGxvb2tpbmcgZm9yIHN1YnN0aXR1dGVzLCBidXQgSSBkb24ndCB3YW50IHRvIGdldCBib2dnZWQgZG93biBpbiBkYXRhIGFzIG15IHByaW1hcnkgcHVycG9zZSBpcyB0byBkZW1vbnN0cmF0ZSB0aGUgbW9kZWwuIApgYGB7ciBnZXRfc3dhcHMsIGZpZy5oZWlnaHQ9MTAsIGZpZy53aWR0aD0xNi4xLCBtZXNzYWdlPUZBTFNFLCB3YXJuaW5nPUZBTFNFfQpsaWJyYXJ5KHJlYWR4bCkKcmF0ZV9wYWdlcyA8LSBjKCIxMFkgU3dhcHMiLCAiMlkgU3dhcHMiLCAiRm9yd2FyZCBQb2ludHMiLCAiMU0gU3dhcHMiLCAiSW1wbGllZCAxTSBGd2QiKQpSQVRFX1BBVEggPC0gImRhdGEvcHJvcHJpZXRhcnkvcmF0ZXMueGxzeCIKCnJhdGVzIDwtIG1hcF9kZnIocmF0ZV9wYWdlcywgcmVhZF94bHN4LCBwYXRoPVJBVEVfUEFUSCwgbmE9IiNOL0EiLAogICAgICAgICAgICAgICAgIGNvbF90eXBlcz1jKCJkYXRlIixyZXAoIm51bWVyaWMiLDEyKSksIC5pZD0idHlwZSIpICAlPiUgI3JlYWQgYWxsIHdvcmtzaGVldHMgb24gdGhlIHhsc3ggZmlsZQogICAgICAgICBtdXRhdGUodHlwZT1mYWN0b3IocmF0ZV9wYWdlc1thcy5udW1lcmljKHR5cGUpXSkpICU+JSAjcmVwbGFjZSBudW1lcmljIGlkIHdpdGggdGhlIHJhdGUgcGFnZSBuYW1lcwogICAgICAgICBnYXRoZXIoYXNzZXQsIHZhbHVlLCAtdHlwZSwgLURhdGUsIGZhY3Rvcl9rZXk9VCkgJT4lICNmbGF0dGVuIHRoZSBkYXRhCiAgICAgICAgIG5hLm9taXQoKQpyYXRlcyAlPiUgZ2dwbG90KGFlcyh4PURhdGUseT12YWx1ZSkpICsgZmFjZXRfZ3JpZCh0eXBlfmFzc2V0LCBzY2FsZXM9ImZyZWVfeSIpICsgCiAgZ2VvbV9saW5lKCkgKyBnZ3RpdGxlKCJSYXRlIERhdGEiKQpgYGAKClR1cmtleSBoYWQgYSBib3V0IG9mIGh5cGVyaW5mbGF0aW9uIGluIHRoZSBlYXJseSAyMDAwcy4gSSdtIG5vdCBzdXJlIHdoYXQncyBnb2luZyBvbiB3aXRoIHRob3NlIDFNIE5vcndheSByYXRlcywgYnV0IGl0J3Mgbm90IHJpZ2h0LiBJZiB3ZSBzdGFydCBvdXIgZGF0YSBzZXQgaW4gMjAwNywgd2UnbGwgZWxpbWluYXRlIHRoZXNlIGlzc3VlcyBhbmQgc3RpbGwgZ2V0IHRvIGtlZXAgdGhlIGNyZWRpdCBjcmlzaXMuCgpgYGB7ciwgZmlnLmhlaWdodD0xMCwgZmlnLndpZHRoPTE2LjF9CnJhdGVzICU+JSBmaWx0ZXIoRGF0ZSA+PSBhcy5EYXRlKCIyMDA3LTAxLTAxIikpICU+JQogIGdncGxvdChhZXMoeD1EYXRlLCB5PXZhbHVlKSkgKyBmYWNldF9ncmlkKHR5cGV+YXNzZXQsIHNjYWxlcz0iZnJlZV95IikgKyBnZW9tX2xpbmUoKSArIGdndGl0bGUoIlJhdGUgZGF0YSIpCmBgYAoKRVVSIDFNIFN3YXAgcmF0ZSBpcyBvYnZpb3VzbHkgd3JvbmcsIHRvbzsgaXQncyBiZWVuIHRoZSBzYW1lIHZhbHVlIGZvciBuZWFybHkgMTAgeWVhcnMuIFRoZSBpbXBsaWVkIHJhdGUsIHdoaWNoIGlzIGJhY2tlZCBvdXQgZnJvbSB0aGUgZm9yd2FyZCBwb2ludHMsIGxvb2tzIG1vcmUgcmVhbGlzdGljLCBidXQgaXQgY2FuIGJlIG1lc3N5LgoKV2UgY2FuIGJhY2tmaWxsIEF1c3RyYWxpYSBhbmQgTm9yd2F5IHdpdGggdGhlIDFNIHN3YXAgZGF0YS4gTW9yZSB3b3JyaXNvbWUgaXMgdGhlIGNob3BwaW5lc3MgaW4gdGhlIGZvcndhcmQgcG9pbnRzIChhbmQgaGVuY2UgdGhlIGltcGxpZWQgcmF0ZSkgZm9yIENIRiwgQ1pLLCBhbmQgU0VLLiBJJ3ZlIG5ldmVyIHRyYWRlZCBDWksgcHJvZmVzc2lvbmFsbHksIGJ1dCBJIGRvbid0IHJlY2FsbCBoYXZpbmcgaXNzdWVzIHdpdGggQ0hGIG9yIFNFSyBpbiB0aG9zZSB0aW1lIHBlcmlvZHMuIENIRiBoYWQgYSBwZWcgZm9yIGEgd2hpbGUuIFNtb290aGluZyBtaXNzZXMgdHVybmluZyBwb2ludHMsIGFuZCBwcm9iYWJseSBkb2Vzbid0IHJlZmxlY3Qgd2hhdCB3ZSB3b3VsZCBkbyBpbiBwcm9kdWN0aW9uLCBvbiBhIGRheSB3aGVyZSB0aGUgcmF0ZXMgcXVvdGVkIHdlcmUgb3V0IG9mIHdoYWNrLiBJZiB3ZSBjb3VsZCBoZWxwIGl0LCB3ZSBwcm9iYWJseSBqdXN0IHdvdWxkbid0IHRyYWRlIENaSyB0aGF0IGRheS4KCldlJ2xsIHNlZSB3aGF0IHRoZSBmaW5hbCBjYXJyeSByZXR1cm4gdmFsdWVzIGxvb2sgbGlrZSBpbiB0aGUgbmV4dCBub3RlYm9vaywgd2hpY2ggY2FsY3VsYXRlcyBmYWN0b3JzLiBJZiBuZWNlc3NhcnksIHdlIGNhbiBiZW5jaG1hcmsgYWdhaW5zdCB0aGUgQmxvb21iZXJnIGdlbmVyaWMgY2FycnkgcmV0dXJuIGluZGV4ZXMgKHdoaWNoIGxvb2sgbGlrZSwgZS5nLiwgYEFVRFVTRENSIEN1cm5jeWApLCBidXQgSSdtIHN0aWxsIHRyeWluZyB0byBtaW5pbWl6ZSByZWxpYW5jZSBvbiBCbG9vbWJlcmcuCgojIyBTcG90IFJhdGVzCgpTcG90IHJhdGVzLCBhdCBsZWFzdCwgc2hvdWxkIGJlIGZyZWVseSBhdmFpbGFibGUuIFF1YW50TW9kIHdlaXJkbHkgaW5zaXN0cyBvbiBhc3NpZ25pbmcgb3V0cHV0IHRvIHZhcmlhYmxlcyBkaXJlY3RseSBpbiB0aGUgZW52aXJvbm1lbnQgaWYgeW91IGNhbGwgZ2V0U3ltYm9scyB3aXRoIG1vcmUgdGhhbiBvbmUgc3ltYm9sLiBXZSdsbCBrZWVwIHRoaW5ncyBjbGVhbiBieSBtYWtpbmcgYSBuZXcgZW52aXJvbm1lbnQuCgpgYGB7ciByYXdfZGF0YV9zcG90LCBmaWcuaGVpZ2h0PTEwLCBmaWcud2lkdGg9MTAsIG1lc3NhZ2U9RkFMU0UsIHdhcm5pbmc9RkFMU0V9CmVudl9zcG90ID0gbmV3LmVudigpCnNwb3RfdGlja3MgPC0gcXVhbnRtb2Q6OmdldFN5bWJvbHMoU3ltYm9scz1wYXN0ZTAobGV2ZWxzKHJhdGVzJGFzc2V0KSwiPVgiKSwgc3JjPSJ5YWhvbyIsIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgIGZyb209YXMuRGF0ZSgiMjAwNy0wMS0wMSIpLCBlbnY9ZW52X3Nwb3QpCiNJJ20gbm90IGEgZmFuIG9mIHh0cy4gSSdtIHN1cmUgaXQncyBmYXN0LCBidXQgdGhhdCdzIGlycmVsZXZhbnQgZm9yIHdoYXQgd2UncmUgZG9pbmcuIFRoaXMgZnVuY3Rpb24gaXMgZ29pbmcgdG8gY29udmVydCBnZXRTeW1ib2xzIG91dHB1dCBpbnRvIGJhc2ljIGRhdGEgZnJhbWVzLgpwcm9jZXNzX3Nwb3QgPC0gZnVuY3Rpb24odGlja2VyKSB7IAogIHggPC0gZ2V0KHRpY2tlciwgZW52aXI9ZW52X3Nwb3QpCiAgY29sbmFtZXMoeCkgPC0gZ3N1YigiW0EtWl17M309WC4iLCIiLGNvbG5hbWVzKHgpKQogIHJldHVybihkYXRhLmZyYW1lKERhdGU9aW5kZXgoeCksY29yZWRhdGEoeCkpKQp9CnNwb3QgPC0gbWFwX2RmcihzcG90X3RpY2tzLCBwcm9jZXNzX3Nwb3QsIC5pZD0iYXNzZXQiKSAlPiUKICAgICAgICAgIG11dGF0ZShhc3NldD1mYWN0b3Ioc3Vic3RyKHNwb3RfdGlja3MsMSwzKVthcy5udW1lcmljKGFzc2V0KV0pKQpzcG90ICU+JSBnZ3Bsb3QoYWVzKHg9RGF0ZSwgeT1DbG9zZSkpICsgZmFjZXRfd3JhcCh+YXNzZXQsIG5jb2w9Mywgc2NhbGU9ImZyZWVfeSIpICsKICBnZW9tX2xpbmUoKSArIGdndGl0bGUoIlNwb3QgUmF0ZXMiKQpgYGAKV2UgaGF2ZSBzb21lIGJhZCB2YWx1ZXMgaW4gdGhlIFNjYW5kaWVzLCBwbHVzIHRoYXQgb2J2aW91cyBtaXNxdW90ZSBpbiBBVUQuIExldCdzIGhhdmUgYSBsb29rIGF0IHRoZSBmdWxsIE9ITEMgZm9yIFNFSyBhbmQgTk9LIGluIHRoZSByZWxldmFudCBwZXJpb2QuCmBgYHtyIFNFS2FuZE5PS30Kc3BvdCAlPiUgZmlsdGVyKGFzc2V0ICVpbiUgYygiU0VLIiwiTk9LIikpICU+JQogICAgICAgICBmaWx0ZXIoRGF0ZSA+IGFzLkRhdGUoIjIwMDctMDEtMDEiKSAmIERhdGUgPD0gYXMuRGF0ZSgiMjAwOC0xMi0zMSIpKSAlPiUKICAgICAgICAgc2VsZWN0KC1Wb2x1bWUsIC1BZGp1c3RlZCkgJT4lCiAgICAgICAgIGdhdGhlcihwcmljZSx2YWx1ZSwtYXNzZXQsLURhdGUpICU+JQogIGdncGxvdChhZXMoeD1EYXRlLCB5PXZhbHVlLCBjb2w9cHJpY2UpKSArIGZhY2V0X3dyYXAofmFzc2V0LCBuY29sPTEpICsKICAgICAgZ2VvbV9saW5lKGFscGhhPTAuNzUpCmBgYApMb29rcyBsaWtlIHdlJ2xsIGhhdmUgdG8gZ28gZWxzZXdoZXJlIGZvciB0aGUgU2NhbmR5IGRhdGEsIHN0YXJ0IGluIDIwMDksIG9yIGp1c3Qgc2tpcCB0aGVtIGZvciBub3cuIEknbSBpbmNsaW5lZCB0byBza2lwOyBpdCdsbCBtYWtlIHRoZSBHYXVzc2lhbiBQcm9jZXNzIHJ1biBmYXN0ZXIuCgpCeSBjb252ZW50aW9uLCBzb21lIGN1cnJlbmNpZXMgYXJlIHF1b3RlZCB3aXRoIHRoZSBVU0QgYXMgdGhlIG51bWVyYWlyZSwgb3RoZXJzIHdpdGggdGhlIGxvY2FsIGN1cnJlbmN5IGFzIG51bWVyYWlyZSAoQUtBIGFuIGluZGlyZWN0IHF1b3RlKS4gV2UgY291bGQgaGF2ZSBzcGVjaWZpZWQgdGhlIHBhaXJzIGRpcmVjdGx5IGJ5IHB1dHRpbmcgJ1VTRCcgYXQgdGhlIGVuZCBvZiBlYWNoIHRpY2tlciBhYm92ZS4gSG93ZXZlciwgdGhlIGZvcndhcmQgcG9pbnRzIGFyZSBnaXZlbiByZWxhdGl2ZSB0byB0aGUgY29udmVudGlvbmFsIHF1b3RlLiBTdG9yZSBhIHZlY3RvciBvZiAtMXMgYW5kIDFzLCB0aGVuIHlvdSBjYW4gZWl0aGVyIG11bHRpcGx5IHRoZSByZXR1cm5zIGJ5IHRoYXQgdmVjdG9yLCBvciByYWlzZSB0aGUgc3BvdCByYXRlcyB0byB0aGUgcG93ZXIgb2YgdGhhdCB2ZWN0b3IgdG8gbWFrZSBldmVyeXRoaW5nIHF1b3RlZCBpbiB0aGUgc2FtZSBkaXJlY3Rpb24uIFRvbyBiYWQgUiBkb2Vzbid0IGhhdmUgYSBwcm9wZXIgZGljdGlvbmFyeSBjbGFzcy4KCllhaG9vIGhhcyBldmVyeXRoaW5nIHF1b3RlZCBkaXJlY3RseS4gV2Ugd2lsbCB3YW50IHRoZSBvcHBvc2l0ZSB3aGVuIGNhbGN1bGF0aW5nIHJldHVybnMgaW4gVVNELCBpLmUuIEpQWSBnb2luZyBmcm9tIDEyMCB0byAxMDAgaXMgYSBwb3NpdGl2ZSByZXR1cm4gZm9yIHRoZSBVU0QtZGVub21pbmF0ZWQgaW52ZXN0b3IuIFdlIG5lZWQgdGhlIGNvbnZlbnRpb25zIHdoZW4gYWRkaW5nIGluIHRoZSBmb3J3YXJkIHBvaW50cy4KYGBge3Igc3BvdF9jb252ZW50aW9ufQpTUE9UX0NPTlZFTlRJT04gPC0gYyhBVUQ9LTEsIENBRD0xLCBDSEY9MSwgQ1pLPTEsIEVVUj0tMSwgR0JQPS0xLAogICAgICAgICAgICAgICAgICAgICBKUFk9MSwgTk9LPTEsIE5aRD0tMSwgU0VLPTEsIFRSWT0xKQpgYGAKCkxhc3RseSwgdG8gYmUgc3VyZSwgYXJlIG15IGFudGlwb2RhbCBzcG90cyBvbiBhIE1vbi1Gcmkgc2NoZWR1bGU/CmBgYHtyfQojc3BvdCAlPiUgZ3JvdXBfYnkoYXNzZXQsIERvVz1mb3JtYXQoRGF0ZSwiJWEiKSkgJT4lIHRhbGx5KCkgCnNwb3QgJT4lIGZpbHRlcihEYXRlPj15bWQoMjAwNzAxMDEpKSAlPiUgCiAgZ2dwbG90KGFlcyh4PWFzc2V0LGZpbGw9Zm9ybWF0KERhdGUsIiVhIiksdmFsdWU9Q2xvc2UpKSArIAogIGdlb21fYmFyKHBvc2l0aW9uPSJkb2RnZSIpICsgZ3VpZGVzKGZpbGw9Z3VpZGVfbGVnZW5kKHRpdGxlPSJEYXkgb2YgV2VlayIpKSArCiAgZ2d0aXRsZSgiU3BvdCBSYXRlIEhpc3RvZ3JhbXMiKQpgYGAKLi4uc29tZXRpbWVzLCBmb3IgYWxsIG9mIHRoZW0uIFdoYXQgaXMgZ29pbmcgb24sIHlhaG9vPyBCbG9vbWJlcmcgbmV2ZXIgZ2l2ZXMgbWUgdGhpcyBtdWNoIGdyaWVmLiBUaGUgRlggbWFya2V0cyBhcmUgb3BlbiwgYnJpZWZseSBvbiBTdW5kYXkgRVNULCBidXQgaWYgeW91J3JlIGdvaW5nIHRvIGdpdmUgbWUgdGhvc2UsIHRoZXJlIHNob3VsZCBiZSBhcyBtYW55IFN1bmRheXMgYXMgYW55IG90aGVyIGRheS4gSXQgY2VydGFpbmx5IGRvZXNuJ3QgZXhwbGFpbiB3aHkgd2UgaGF2ZSBmZXdlciB2YWx1ZXMgb24gRnJpZGF5cy4gQWxsIEkgY2FuIHRoaW5rIG9mIGlzIHRoYXQgaXQncyB2YXJ5aW5nIHRocm91Z2hvdXQgdGhlIHllYXIgYmFzZWQgb24gZGF5bGlnaHQgc2F2aW5ncyB0aW1lLCB3aGljaCBpc24ndCBvYnNlcnZlZCBpbiBKYXBhbi4KYGBge3J9CnNwb3QgJT4lIGZpbHRlcihhc3NldD09IkFVRCIpICU+JSBncm91cF9ieShtb250aChEYXRlKSkgJT4lIHN1bW1hcml6ZShGcmlkYXlzPXN1bShpZmVsc2Uod2Vla2RheXMoRGF0ZSk9PSJGcmlkYXkiLDEsMCkpLAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgU3VuZGF5cz1zdW0oaWZlbHNlKHdlZWtkYXlzKERhdGUpPT0iU3VuZGF5IiwxLDApKSkKYGBgClRoYXQgaXMgdHJ1bHkgbWFsaWNpb3VzLiBJdCBkb2Vzbid0IGV2ZW4gbWFrZSBzZW5zZSwgYXMgSSBkb24ndCB0aGluayB0aGF0IG9uZSBob3VyIGtpY2tzIEZYIGludG8gYSBuZXcgZGF5LiBPaywgd2hvICplbHNlKiBoYXMgc3BvdCByYXRlcyBnb2luZyBiYWNrIHRoYXQgZmFyPyBPYW5kYSB3aWxsIG9ubHkgZ2l2ZSB5b3UgdGhlIGxhc3QgMTgwIGRheXMuIElkZWFsbHksIHdlIHdhbnQgdGhlIFdNUiBMb25kb24gRml4LCBidXQgd2UnbGwgYWN0dWFsbHkgd2luZCB1cCB3aXRoIHdlZWtseSBjYXJyeSByZXR1cm4sIGFuZCBpdCBzZWVtcyB3ZSBjYW4ndCBhZmZvcmQgdG8gYmUgcGlja3kuIFtOWiBGb3JleF0od3d3Lm56Zm9yZXguY28ubnopIGhhcyBoaXN0b3JpY2FsIHJhdGVzLCBidXQgdGhleSdyZSBub3QgdGhlIFdNUiBmaXgsIGFuZCBwcm9iYWJseSByZWZsZWN0IHNvbWUgbG9jYWwgdGltZSBtYXJrLgoKSG93IGFib3V0IFtPcGVuIEV4Y2hhbmdlIFJhdGVzXSh3d3cub3BlbmV4Y2hhbmdlcmF0ZXMub3JnKT8gVGhpcyBpcyBnZXR0aW5nIGludG8gdGVycml0b3J5IHdoZXJlIFB5dGhvbiBhbmQgcGFuZGFzIGRvIGEgYmV0dGVyIGpvYiwgYnV0IGxldCdzIHRyeSB0byBrZWVwIHRoaW5ncyBpbiBSLiBJZiB5b3UgZG9uJ3Qgd2FudCB0byBwYXksIHlvdSBoYXZlIHRvIG1ha2Ugb25lIEFQSSBjYWxsIHBlciBkYXRlIHRvIGdldCB0aGlzIGRhdGEuCmBgYHtyIG9lciwgZXZhbD1GQUxTRSwgaW5jbHVkZT1UUlVFfQpyZXF1aXJlKGpzb25saXRlKQpkdHMgPSByYXRlcyAlPiUgZmlsdGVyKERhdGUgPiBhcy5EYXRlKCIyMDA2LTEyLTMxIikpICU+JQogIHNlbGVjdChEYXRlKSAlPiUgcHVsbCgpICU+JSB1bmlxdWUoKSAlPiUgYXMuRGF0ZSgpCgpnZXRfc3BvdCA8LSBmdW5jdGlvbihkdCxhcHBfaWQsYXNzZXRzKSB7CiAgcXVlcnlfc3RyIDwtIHBhc3RlMCgiaHR0cHM6Ly9vcGVuZXhjaGFuZ2VyYXRlcy5vcmcvYXBpL2hpc3RvcmljYWwvIiwKICAgICAgZm9ybWF0KGR0LCAiJVktJW0tJWQiKSwgIi5qc29uIiwKICAgICAgIj9hcHBfaWQ9IixhcHBfaWQsCiAgICAgICImYmFzZT1VU0QiLAogICAgICAiJnN5bWJvbHM9IixwYXN0ZTAoYXNzZXRzLCBjb2xsYXBzZT0iLCIpKQogIGRhdGEgPC0gZnJvbUpTT04ocXVlcnlfc3RyKQogIGlmKCJlcnJvciIgJWluJSBuYW1lcyhkYXRhKSkgewogICAgcm93IDwtIHNldE5hbWVzKGMoYXMubnVtZXJpYyhkdCkscmVwKE5BLGxlbmd0aChhc3NldHMpKSksYygiRGF0ZSIsYXNzZXRzKSkKICB9CiAgZWxzZSB7CiAgICByb3cgPC0gd2l0aChkYXRhLCBjKERhdGU9dGltZXN0YW1wLCByYXRlcykpCiAgfQogIHJldHVybihyb3cpCn0KCm5ld19zcG90cyA8LSBtYXBfZGZyKGR0cywgZ2V0X3Nwb3QsIAogICAgICAgICAgICAgICAgICAgICBhcHBfaWQ9c2Nhbigifi8ub3BlbmV4Y2hhbmdlX2tleSIsIGNoYXJhY3RlcigpKSwKICAgICAgICAgICAgICAgICAgICAgYXNzZXRzPWxldmVscyhzcG90JGFzc2V0KSkKYGBgCi4uLmJ1dCB5b3UncmUgb25seSBhbGxvd2VkIDEwMDAgcmVxdWVzdHMgcGVyIG1vbnRoIGZvciBmcmVlLiBJJ20gYWZyYWlkIEknbSBnb2luZyB0byBoYXZlIHRvIHRha2UgQmxvb21iZXJnIGRhdGEgZm9yIHNwb3QgcmF0ZXMsIGFzIHdlbGwuIEkgY2FuIGF0IGxlYXN0IHN0b3JlIHRoZSB0cmFuc2Zvcm1lZCBmYWN0b3JzIHB1YmxpY2x5LCBzaW5jZSB0aGF0IGlzIG1hdGVyaWFsbHkgYWx0ZXJlZC4KCiMjIEVxdWl0eSBJbmRleGVzCgpMYXN0bHksIGVxdWl0eSBpbmRleGVzLCBhdCBsZWFzdCwgc2hvdWxkIGJlIGVhc3kgdG8gY29tZSBieS4gCk1heWJlIEkgY2FuIGZpbmFsbHkgdXNlIFF1YW5kbCBmb3Igc29tZXRoaW5nLgouLi5ub3BlLiBRdWFuZGwncyBlcXVpdHkgaW5kZXggZGF0YSBpcyBvdXQgb2YgZGF0ZS4gVGhlcmUgc2VlbXMgdG8gYmUgbm90aGluZyB3b3J0aHdoaWxlIGZvciBmcmVlIG9uIFF1YW5kbC4KYGBge3IgZXF1aXRpZXMsIGZpZy5oZWlnaHQ9MTAsIGZpZy53aWR0aD0xMCwgbWVzc2FnZT1GQUxTRSwgd2FybmluZz1GQUxTRSwgY2FjaGU9VFJVRX0Kc3RvcGlmbm90KHJlcXVpcmUoeHRzKSkKRVFVSVRJRVMgPC0gYyhBVUQ9Il5BWEpPIiwgQ0FEPSJeR1NQVFNFIiwgQ0hGPSJTTElDLlNXIiwgQ1pLPSJGUFhBQS5QUiIsIEVVUj0iXlNUT1hYNTBFIiwKICAgICAgICAgICAgICBHQlA9Il5GVFNFIiwgSlBZPSJeTjIyNSIsIE5PSz0iT0JYLk9MIiwgTlpEPSJeTlo1MCIsIFNFSz0iXk9NWCIsCiAgICAgICAgICAgICAgVFJZPSJYVTEwMC5JUyIsIFVTRD0iXkdTUEMiKQplbnZfZXF5IDwtIG5ldy5lbnYoKQplcXlfdGlja3MgPC0gcXVhbnRtb2Q6OmdldFN5bWJvbHMoU3ltYm9scz1FUVVJVElFUywgc3JjPSJ5YWhvbyIsIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgIGZyb209YXMuRGF0ZSgiMjAwNy0wMS0wMSIpLCBlbnY9ZW52X2VxeSkKCnByb2Nlc3NfZXF5IDwtIGZ1bmN0aW9uKHRpY2tlcikgeyAKICB0aWNrIDwtIGdzdWIoIl5cXF4iLCIiLHRpY2tlcikKICB4IDwtIGdldCh0aWNrLCBlbnZpcj1lbnZfZXF5KSAjcXVhbnRtb2QgZG9lc24ndCBrZWVwIGluaXRpYWwgJ14ncyB3aGVuIGFzc2lnbmluZyBuYW1lcwogIGNvbG5hbWVzKHgpIDwtIGdzdWIocGFzdGUwKHRpY2ssIlxcLiIpLCIiLGNvbG5hbWVzKHgpKQogIHJldHVybihkYXRhLmZyYW1lKERhdGU9aW5kZXgoeCksY29yZWRhdGEoeCkpKQp9CgplcXVpdGllcyA8LSBtYXBfZGZyKGVxeV90aWNrcywgcHJvY2Vzc19lcXksIC5pZD0iYXNzZXQiKSAlPiUKICAgICAgICAgIG11dGF0ZShhc3NldD1mYWN0b3IobmFtZXMoRVFVSVRJRVMpW2FzLm51bWVyaWMoYXNzZXQpXSkpCmVxdWl0aWVzICU+JSBnZ3Bsb3QoYWVzKHg9RGF0ZSwgeT1DbG9zZSkpICsgZmFjZXRfd3JhcCh+YXNzZXQsIG5jb2w9Mywgc2NhbGU9ImZyZWVfeSIpICsKICBnZW9tX2xpbmUoKSArIGdndGl0bGUoIkVxdWl0eSBJbmRleGVzIikKYGBgCgpNaXNzaW5nIHNvbWUgZm9yIENIRiwgTlpELCBhbmQgVFJZLCBhbmQgZXZlcnl0aGluZyBmb3IgQ1pLLCBhbmQgTk9LLiBJJ20gZ29pbmcgdG8gc2VlIHdoYXQgSSBjYW4gZ2V0IGRpcmVjdGx5IG9mZiB0aGUgQm91cnNlIHdlYnNpdGVzLiBUeXBpY2FsbHksIHRoZXkgd2FudCB0aGlzIGRhdGEgcHJvcGFnYXRlZC4KCmBgYHtyIGV4dHJhX2VxeSwgbWVzc2FnZT1GQUxTRSwgd2FybmluZz1GQUxTRSwgY2FjaGU9VFJVRX0KZW52X2VxeSRDWksgPC0gcmVhZF9jc3YyKCJkYXRhL2hpc3RvcmljYWxEYXRhX1BYLmNzdiIpICU+JQogIG11dGF0ZShEYXRlPWFzLkRhdGUoRGF0ZSwgZm9ybWF0PSIlbS8lZC8lWSIpKSAlPiUKICByZW5hbWUoQ2xvc2UgPSBgTGFzdCBDbG9zZWApICU+JQogIHNlbGVjdCgtYENoZy4lYCwgLVg3KQplbnZfZXF5JE5PSyA8LSByZWFkX2V4Y2VsKCJkYXRhL09TRUJYLnhsc3giKSAlPiUKICBtdXRhdGUoRGF0ZT1hcy5EYXRlKE9TRUJYKSwgT3Blbj1OQSkgJT4lCiAgcmVuYW1lKENsb3NlPUxhc3QpICU+JQogIHNlbGVjdChEYXRlLCBPcGVuLCBIaWdoLCBMb3csIENsb3NlKQoKRVFVSVRJRVNfR09PRyA8LSBjKENIRj0iSU5ERVhTV1g6U01JIiwgVFJZPSJJTkRFWElTVDpYU0lTVCIpCnF1YW50bW9kOjpnZXRTeW1ib2xzKEVRVUlUSUVTX0dPT0csIHNyYz0iZ29vZ2xlIiwgZW52PWVudl9lcXkpCnByb2Nlc3NfZ29vZyA8LSBmdW5jdGlvbih0aWNrZXIpIHsgCiAgeCA8LSBnZXQodGlja2VyLCBlbnZpcj1lbnZfZXF5KQogIGNvbG5hbWVzKHgpIDwtIGdzdWIocGFzdGUwKHRpY2tlciwiLiIpLCIiLGNvbG5hbWVzKHgpKQogIHJldHVybihkYXRhLmZyYW1lKERhdGU9aW5kZXgoeCksY29yZWRhdGEoeCkpKQp9CgplcXVpdGllc19nb29nIDwtIG1hcF9kZnIoRVFVSVRJRVNfR09PRywgcHJvY2Vzc19nb29nLCAuaWQ9ImFzc2V0IikgJT4lCiAgbXV0YXRlKGFzc2V0PWZhY3Rvcihhc3NldCkpCgpiaW5kX3Jvd3MoZ29vZ2xlPWVxdWl0aWVzX2dvb2cgJT4lIGZpbHRlcihhc3NldD09IlRSWSIpLAogICAgICAgICAgeWFob289ZXF1aXRpZXMgJT4lIGZpbHRlcihhc3NldD09IlRSWSIpLCAuaWQ9InNvdXJjZSIpICU+JQogIGdncGxvdChhZXMoeD1EYXRlLHk9Q2xvc2UsIGNvbD1zb3VyY2UpKSArIGdlb21fbGluZSgpICsgZ2d0aXRsZSgiQklTVCAxMDAiKQoKCmBgYApOb3QgZXhhY3RseSBhIGRyb3AtaW4gcmVwbGFjZW1lbnQsIGJ1dCBpdCBzZWVtcyByZWFzb25hYmxlIHRvIHJlcGxhY2UgdGhlIGJsYW5rIHNwb3QgaW4geWFob28gZGF0YS4KYGBge3IsIGV2YWw9RkFMU0UsIGluY2x1ZGU9VFJVRX0KZXF1aXRpZXMgJT4lIGZpbHRlcihhc3NldCA9PSAiVFJZIiAmIGlzLm5hKENsb3NlKSkgJT4lCiAgZmlsdGVyKERhdGUgPj0gYXMuRGF0ZSgiMjAxNC0wNC0wMSIpICYgRGF0ZSA8PSAiMjAxNS0wMy0zMSIpICU+JQogIHNlbGVjdChEYXRlKQpgYGAKKG5vdCBzaG93aW5nIGxvbmcgbGlzdCBvZiBkYXRlcykKMjAxNC0wNS0xOSB0byAyMDE1LTAyLTA0CgpgYGB7ciBmaWxsX2luX0JJU1QsIGZpZy5oZWlnaHQ9MTAsIGZpZy53aWR0aD0xMCwgbWVzc2FnZT1GQUxTRSwgd2FybmluZz1GQUxTRX0KZXF1aXRpZXMgPC0gYmluZF9yb3dzKGVxdWl0aWVzICU+JSBmaWx0ZXIoIShhc3NldCA9PSAiVFJZIiAmIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgRGF0ZSA+PSBhcy5EYXRlKCIyMDE0LTA1LTE5IikgJgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgRGF0ZSA8PSBhcy5EYXRlKCIyMDE1LTAyLTA0IikpKSwKICAgICAgICAgICAgICAgICAgICAgIGVxdWl0aWVzX2dvb2cgJT4lIGZpbHRlcihhc3NldCA9PSAiVFJZIiAmIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgRGF0ZSA+PSBhcy5EYXRlKCIyMDE0LTA1LTE5IikgJgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgRGF0ZSA8PSBhcy5EYXRlKCIyMDE1LTAyLTA0IikpKQplcXVpdGllcyAlPiUgZ2dwbG90KGFlcyh4PURhdGUsIHk9Q2xvc2UpKSArIGZhY2V0X3dyYXAofmFzc2V0LCBuY29sPTMsIHNjYWxlPSJmcmVlX3kiKSArCiAgZ2VvbV9saW5lKCkgKyBnZ3RpdGxlKCJFcXVpdHkgSW5kZXhlcyIpCmBgYAoKCgpgYGB7ciwgZmlnLmhlaWdodD0xMCwgZmlnLndpZHRoPTEwLCBtZXNzYWdlPUZBTFNFLCB3YXJuaW5nPUZBTFNFfQplcXVpdGllcyA8LSBiaW5kX3Jvd3MoZXF1aXRpZXMgJT4lIHNlbGVjdCgtVm9sdW1lLCAtQWRqdXN0ZWQpICU+JQogICAgICAgICAgICAgICAgICAgICAgICBmaWx0ZXIoIShhc3NldCAlaW4lIGMoIkNaSyIsIk5PSyIsIkNIRiIpKSksIAogICAgICAgICAgICAgICAgICAgICAgZXF1aXRpZXNfZ29vZyAlPiUgZmlsdGVyKGFzc2V0ID09IkNIRiIpICU+JSBzZWxlY3QoLVZvbHVtZSksCiAgICAgICAgICAgICAgICAgICAgICBlbnZfZXF5JENaSyAlPiUgbXV0YXRlKGFzc2V0PSJDWksiKSwKICAgICAgICAgICAgICAgICAgICAgIGVudl9lcXkkTk9LICU+JSBtdXRhdGUoYXNzZXQ9Ik5PSyIpICU+JQogICAgICAgICAgICAgICAgICAgICAgICBmaWx0ZXIoRGF0ZT49YXMuRGF0ZSgiMjAwNy0wMS0wMSIpKSkKZXF1aXRpZXMgJT4lIGdncGxvdChhZXMoeD1EYXRlLHk9Q2xvc2UpKSArIAogIGZhY2V0X3dyYXAofmFzc2V0LCBuY29sPTMsIHNjYWxlcyA9ICJmcmVlX3kiKSArCiAgZ2VvbV9saW5lKCkgKyBnZ3RpdGxlKCJFcXVpdHkgSW5kZXhlcyIpCmBgYAoKTm93IHdlIGFyZSBsZWZ0IHdpdGggYSBzbWFsbCBkaXNjb250aW51aXR5IGluIE5aRC4gQ2xvc2VyIGluc3BlY3Rpb24gb2YgdGhlIGRhdGEgcmV2ZWFscyB0aGVzZSB0byBiZSBhIHBlcmlvZCB3aXRoIG9ubHkgd2Vla2x5IGRhdGEsIGluc3RlYWQgb2YgZGFpbHkuIFdlIG5lZWQgZXF1aXRpZXMgc28gd2UgY2FuIGdldCB0aGUgcm9sbGluZyA0MC1kYXkgY2hhbmdlLiBHaXZlbiB0aGF0IHdlIHdpbGwgYmUgcmVncmVzc2luZyBvbiB3ZWVrbHkgb3IgbW9udGhseSBwZXJpb2RpY2l0eSwgaXQncyBwb3NzaWJsZSB0aGlzIGlzIGdvaW5nIHRvIGJlIGdvb2QgZW5vdWdoLiBJJ20gYSBzdHJvbmcgYmVsaWV2ZXIgaW4gZ2FyYmFnZSBpbiwgZ2FyYmFnZSBvdXQsIGJ1dCBpdCdzIHVubGlrZWx5IHRoZSBmaW5hbCBwb3J0Zm9saW8gd2lsbCBiZSBwZXJtaXR0ZWQgdG8gdGFrZSBiaWcgcG9zaXRpb25zIGluIE5aRCBpbiB0aGUgZmlyc3QgcGxhY2UuIFdlIGNhbiByZXZpc2l0IGlmIHRoZSBmYWN0b3JzIGxvb2sgd29ua3kgYXJvdW5kIHRoZW4gKHBvc3NpYmx5IGZpbGxpbmcgaW4gd2l0aCBBVUQgZGF0YSksIG9yIGlmIHRoZSBmaW5hbCBmb3JlY2FzdCBoYXMgY2xlYXJseSBiZWVuIGFmZmVjdGVkLgoKIyMgQ2xlYW51cAoKTGV0J3MgY2xlYXIgb3V0IHRoZSBpbnRlcm1lZGlhdGUgdmFyaWFibGVzLCB0aGVuIHNhdmUgdGhlIGRhdGEgYW5kIG1vdmUgb24gdG8gYSBjbGVhbiBzaGVldC4KYGBge3IgY2xlYW51cCwgZXZhbD1GQUxTRSwgaW5jbHVkZT1UUlVFfQpybShlcXVpdGllc19nb29nLCBlbnZfZXF5LCBlbnZfc3BvdCwgZXF5X3RpY2tzLCBFUVVJVElFUywgRVFVSVRJRVNfR09PRywgcmF0ZV9wYWdlcywKICAgUkFURV9QQVRILCBzcG90X3RpY2tzLCBwcm9jZXNzX2VxeSwgcHJvY2Vzc19nb29nLCBwcm9jZXNzX3Nwb3QpCnJtKHJhdGVzLCBzcG90KSA7IG1lc3NhZ2UoIkkgY2FuJ3Qga2VlcCB1bmFsdGVyZWQgcmF0ZXMgb3Igc3BvdCBkYXRhIGZyZWVseSBhY2Nlc3NpYmxlLiIpCnNhdmUuaW1hZ2UoImRhdGEvZ2F0aGVyaW5nX2RhdGEuckRhdGEiKQpgYGAKCiMgSW4gU3VtbWFyeQoKRXZlbiB0aGlzIHNtYWxsIHNldCBvZiBkYXRhIHRvb2sgcXVpdGUgYSBsb3Qgb2Ygd29yayB0byBnZXQgaW50byBtYW5hZ2VhYmxlIHNoYXBlLiBXZSBzdGlsbCBhbnRpY2lwYXRlIGlzc3VlcyBpbiBjYWxjdWxhdGluZyB0aGUgY2FycnkgcmV0dXJuLCB3aGljaCBpcyBvdXIgZW5kb2dlbm91cyB2YXJpYWJsZSEgSXQgaXMgY3J1Y2lhbCB0byBnZXQgdGhpcyBzdGVwIHJpZ2h0LCBob3dldmVyLiBJdCdzIG9rIHRvIHRha2Ugc29tZSBzaG9ydGN1dHMsIGFuZCBiYWNrZmlsbCBzb21lIGRhdGEsIHdoZXJlIG5lY2Vzc2FyeSwgYnV0IHdlIG11c3QgYmUgYXdhcmUgdGhhdCB3ZSdyZSBkb2luZyBpdCwgYW5kIGhhdmUganVzdGlmaWNhdGlvbnMgZm9yIG91ciBhY3Rpb25zLiBUaGF0J3Mgd2hhdCBtYWtlcyB0aGUgbm90ZWJvb2sgd29ya2Zsb3csIHdoZXRoZXIgUlN0dWRpbyBvciBKdXB5dGVyLCBzbyBjcnVjaWFsLiBZb3UgY2FuIGNvbWUgYmFjayBpbiBhIHllYXIncyB0aW1lIGFuZCBzZWUgZXhhY3RseSB3aGF0IHlvdXIgbG9naWMgd2FzLg==